Sha256: f75b4095aff272b66357c8af2d20ae74e1fbadf60b739c6503f13ab9b402dfcf

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

require 'test_helper'
require 'unit/response_stubs/find_transaction_stubs'

class FindTransactionTest < Test::Unit::TestCase

  include FindTransactionStubs

  def setup
    @environment = Spreedly::Environment.new("key", "secret")
  end

  def test_successful_find_transaction
    t = find_using(successful_get_transaction_response)

    assert_kind_of(Spreedly::AddPaymentMethod, t)
    assert_equal("2IFzBBh99rwjXKkZ0hkPVLjCBXL", t.token)
    assert_equal Time.parse("2013-08-05 19:32:49 UTC"), t.created_at
    assert_equal Time.parse("2013-08-05 19:32:49 UTC"), t.updated_at

    assert t.succeeded?
    assert_equal "Succeeded!", t.message
    assert_equal "7sqmBrh8zS4Mgei6wOyYskFpghF", t.payment_method.token
  end

  def test_transaction_with_no_response
    t = find_using(responseless_transaction_response)

    assert_kind_of(Spreedly::Purchase, t)
    assert_equal("1f41avmBKchYCNam8rMgrRRTppD", t.token)

    assert !t.succeeded?
    assert_nil t.response
  end

  private
  def find_using(response)
    @environment.stubs(:raw_ssl_request).returns(response)
    @environment.find_transaction("IgnoredTokenSinceResponseIsStubbed")
  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
spreedly-2.0.16 test/unit/find_transaction_test.rb
spreedly-2.0.15 test/unit/find_transaction_test.rb
spreedly-2.0.14 test/unit/find_transaction_test.rb
spreedly-2.0.13 test/unit/find_transaction_test.rb
spreedly-2.0.11 test/unit/find_transaction_test.rb
spreedly-2.0.10 test/unit/find_transaction_test.rb
spreedly-2.0.9 test/unit/find_transaction_test.rb
spreedly-2.0.8 test/unit/find_transaction_test.rb
spreedly-2.0.7 test/unit/find_transaction_test.rb
spreedly-2.0.6 test/unit/find_transaction_test.rb
spreedly-2.0.5 test/unit/find_transaction_test.rb