Sha256: 2d8f13bc57de90cd0e38153ec9a864f931b17d8bada5006a297eb0737ebe1f45
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
require 'simplecov' SimpleCov.start require 'base64' require 'mtgox' require 'rspec' require 'webmock/rspec' def a_get(path) a_request(:get, 'https://mtgox.com' + path) end def stub_get(path) stub_request(:get, 'https://mtgox.com' + path) end def a_post(path) a_request(:post, 'https://mtgox.com' + path) end def stub_post(path) stub_request(:post, 'https://mtgox.com' + path) end def fixture_path File.expand_path('../fixtures', __FILE__) end def fixture(file) File.new(fixture_path + '/' + file) end module MtGox module Request private def add_nonce(options) options.merge!({:nonce => 1321745961249676}) end end end def test_headers(body=test_body) signed_headers(body).merge!( { 'Accept' => 'application/json', 'Content-Type' => 'application/x-www-form-urlencoded', 'User-Agent' => "mtgox gem #{MtGox::Version}", } ) end def signed_headers(body) signature = Base64.strict_encode64( OpenSSL::HMAC.digest 'sha512', Base64.decode64(MtGox.secret), body ) {'Rest-Key' => MtGox.key, 'Rest-Sign' => signature} end def test_body(options={}) options.merge!({:nonce => 1321745961249676}).collect{|k, v| "#{k}=#{v}"} * '&' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mtgox-0.7.4 | spec/helper.rb |
mtgox-0.7.3 | spec/helper.rb |