application_charge_test.rb 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. require 'test_helper'
  2. class ApplicationChargeTest < Test::Unit::TestCase
  3. def test_application_charge_create
  4. fake("application_charges", method: :post, status: 201, body: load_fixture('application_charge'))
  5. charge = ShopifyAPI::ApplicationCharge.create(
  6. name: "iPod Cleaning",
  7. price: 5.00,
  8. return_url: "http://google.com"
  9. )
  10. assert_equal(
  11. 'https://this-is-my-test-shop.myshopify.com/admin/charges/803742/confirm_application_charge?' \
  12. 'signature=BAhpA55DDA%3D%3D--55b44e274e438c619be4631c804abcbcb6ee915a',
  13. charge.confirmation_url
  14. )
  15. end
  16. def test_get_application_charge
  17. fake("application_charges/803742", method: :get, status: 201, body: load_fixture('application_charge'))
  18. charge = ShopifyAPI::ApplicationCharge.find(803742)
  19. assert_equal("iPod Cleaning", charge.name)
  20. end
  21. def test_list_application_charges
  22. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  23. charges = ShopifyAPI::ApplicationCharge.find(:all)
  24. assert_equal(4, charges.size)
  25. assert_equal("iPhone Case", charges.last.name)
  26. end
  27. def test_list_pending_application_charges
  28. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  29. pending_charges = ShopifyAPI::ApplicationCharge.pending
  30. assert_equal(1, pending_charges.size)
  31. assert_equal("Screen Replacement", pending_charges.first.name)
  32. end
  33. def test_list_expired_application_charges
  34. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  35. expired_charges = ShopifyAPI::ApplicationCharge.expired
  36. assert_equal(1, expired_charges.size)
  37. assert_equal("iPod Cleaning", expired_charges.first.name)
  38. end
  39. def test_list_accepted_application_charges
  40. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  41. accepted_charges = ShopifyAPI::ApplicationCharge.accepted
  42. assert_equal(1, accepted_charges.size)
  43. assert_equal("iPhone Case", accepted_charges.first.name)
  44. end
  45. def test_list_declined_application_charges
  46. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  47. declined_charges = ShopifyAPI::ApplicationCharge.declined
  48. assert_equal(1, declined_charges.size)
  49. assert_equal("Magic Mouse", declined_charges.first.name)
  50. end
  51. def test_activate_application_charge
  52. fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
  53. fake("application_charges/803740/activate", method: :post, status: 200, body: "{}")
  54. charge = ShopifyAPI::ApplicationCharge.accepted
  55. assert(charge.last.activate)
  56. end
  57. end