Sha256: 722d55486a2076e1b59e85bf4583d86868f1f89ed0894717a7039fdbe11fc92b
Contents?: true
Size: 1.91 KB
Versions: 3
Compression:
Stored size: 1.91 KB
Contents
require "rubygems" require "json" require "rspec" require 'webmock/rspec' Rspec.configure do |config| config.include WebMock::API end begin require "redgreen" unless ENV['TM_CURRENT_LINE']; rescue LoadError; end path = File.expand_path(File.dirname(__FILE__) + "/../lib/") $LOAD_PATH.unshift(path) unless $LOAD_PATH.include?(path) require path + '/flexmls_api' require 'flexmls_api' require File.expand_path('../json_helper', __FILE__) FileUtils.mkdir 'log' unless File.exists? 'log' # TODO, really we should change the library to support configuration without overriding module FlexmlsApi def self.logger if @logger.nil? @logger = Logger.new('log/test.log') @logger.level = Logger::DEBUG end @logger end end FlexmlsApi.logger.info("Setup gem for rspec testing") def mock_session() FlexmlsApi::Authentication::Session.new("AuthToken" => "1234", "Expires" => (Time.now + 3600).to_s, "Roles" => "['idx']") end class MockClient < FlexmlsApi::Client attr_accessor :connection, :session end def mock_client(stubs) c = MockClient.new c.session = mock_session() c.connection = test_connection(stubs) c end def mock_expired_session() FlexmlsApi::Authentication::Session.new("AuthToken" => "1234", "Expires" => (Time.now - 60).to_s, "Roles" => "['idx']") end def test_connection(stubs) Faraday::Connection.new(nil, {:headers => FlexmlsApi::Client.new.headers}) do |builder| builder.adapter :test, stubs builder.use Faraday::Response::ParseJson builder.use FlexmlsApi::FaradayExt::FlexmlsMiddleware end end def stub_auth_request() stub_request(:post, "https://api.flexmls.com/#{FlexmlsApi.version}/session"). with(:query => {:ApiKey => "", :ApiSig => "806737984ab19be2fd08ba36030549ac"}). to_return(:body => fixture("session.json")) end def fixture(file) File.new(File.expand_path("../fixtures", __FILE__) + '/' + file) end include FlexmlsApi::Models
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
flexmls_api-0.3.6 | spec/spec_helper.rb |
flexmls_api-0.3.3 | spec/spec_helper.rb |
flexmls_api-0.3.2 | spec/spec_helper.rb |