stripe 3.3.1 → 5.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +962 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +24 -22
- data/History.txt +1 -689
- data/README.md +202 -55
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +4 -2
- data/lib/stripe/api_operations/delete.rb +31 -3
- data/lib/stripe/api_operations/list.rb +4 -13
- data/lib/stripe/api_operations/nested_resource.rb +73 -0
- data/lib/stripe/api_operations/request.rb +84 -17
- data/lib/stripe/api_operations/save.rb +25 -13
- data/lib/stripe/api_resource.rb +70 -11
- data/lib/stripe/connection_manager.rb +179 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +29 -20
- data/lib/stripe/object_types.rb +107 -0
- data/lib/stripe/{account.rb → resources/account.rb} +70 -36
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +5 -2
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +7 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/resources/card.rb +38 -0
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -0
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -0
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/resources/login_link.rb +15 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/resources/order_return.rb +10 -0
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/resources/recipient.rb +14 -0
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- data/lib/stripe/resources/reversal.rb +30 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +26 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- data/lib/stripe/resources/token.rb +10 -0
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -7
- data/lib/stripe/resources.rb +90 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +798 -346
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +271 -126
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +134 -194
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +57 -18
- data/lib/stripe.rb +74 -186
- data/stripe.gemspec +35 -16
- metadata +110 -165
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -5
- data/.travis.yml +0 -38
- data/lib/stripe/alipay_account.rb +0 -22
- data/lib/stripe/application_fee.rb +0 -22
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -11
- data/lib/stripe/card.rb +0 -27
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/country_spec.rb +0 -11
- data/lib/stripe/customer.rb +0 -79
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/event.rb +0 -7
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/order_return.rb +0 -11
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -6
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -23
- data/lib/stripe/subscription.rb +0 -33
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_test.rb +0 -202
- data/test/stripe/alipay_account_test.rb +0 -17
- data/test/stripe/api_operations_test.rb +0 -31
- data/test/stripe/api_resource_test.rb +0 -558
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -46
- data/test/stripe/customer_test.rb +0 -114
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -110
- data/test/stripe/list_object_test.rb +0 -170
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -85
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_card_test.rb +0 -44
- data/test/stripe/recipient_test.rb +0 -48
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -68
- data/test/stripe/stripe_client_test.rb +0 -750
- data/test/stripe/stripe_object_test.rb +0 -398
- data/test/stripe/stripe_response_test.rb +0 -46
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -58
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -414
- data/test/stripe/webhook_test.rb +0 -92
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -56
data/test/stripe/invoice_test.rb
DELETED
@@ -1,110 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class InvoiceTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
invoices = Stripe::Invoice.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoices"
|
8
|
-
assert invoices.data.kind_of?(Array)
|
9
|
-
assert invoices.first.kind_of?(Stripe::Invoice)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
invoice = Stripe::Invoice.retrieve("in_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoices/in_123"
|
15
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
invoice = Stripe::Invoice.create(
|
20
|
-
:customer => "cus_123"
|
21
|
-
)
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/invoices"
|
23
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be saveable" do
|
27
|
-
invoice = Stripe::Invoice.retrieve("in_123")
|
28
|
-
invoice.metadata['key'] = 'value'
|
29
|
-
invoice.save
|
30
|
-
assert_requested :post, "#{Stripe.api_base}/v1/invoices/#{invoice.id}"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be updateable" do
|
34
|
-
invoice = Stripe::Invoice.update("in_123", metadata: { key: 'value' })
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123"
|
36
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
37
|
-
end
|
38
|
-
|
39
|
-
context "#pay" do
|
40
|
-
should "pay invoice" do
|
41
|
-
invoice = Stripe::Invoice.retrieve("in_123")
|
42
|
-
invoice = invoice.pay
|
43
|
-
assert_requested :post,
|
44
|
-
"#{Stripe.api_base}/v1/invoices/#{invoice.id}/pay"
|
45
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
46
|
-
end
|
47
|
-
|
48
|
-
should "pay invoice with a specific source" do
|
49
|
-
invoice = Stripe::Invoice.retrieve("in_123")
|
50
|
-
invoice = invoice.pay(
|
51
|
-
source: 'src_123',
|
52
|
-
)
|
53
|
-
assert_requested :post,
|
54
|
-
"#{Stripe.api_base}/v1/invoices/#{invoice.id}/pay",
|
55
|
-
body: {
|
56
|
-
source: 'src_123',
|
57
|
-
}
|
58
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
context "#upcoming" do
|
63
|
-
should "retrieve upcoming invoices" do
|
64
|
-
invoice = Stripe::Invoice.upcoming(
|
65
|
-
customer: "cus_123",
|
66
|
-
subscription: "sub_123"
|
67
|
-
)
|
68
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
|
69
|
-
query: {
|
70
|
-
customer: "cus_123",
|
71
|
-
subscription: "sub_123"
|
72
|
-
}
|
73
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
74
|
-
end
|
75
|
-
|
76
|
-
should "retrieve upcoming invoices with items" do
|
77
|
-
items = [{
|
78
|
-
plan: 'gold',
|
79
|
-
quantity: 2
|
80
|
-
}]
|
81
|
-
|
82
|
-
invoice = Stripe::Invoice.upcoming(
|
83
|
-
customer: "cus_123",
|
84
|
-
subscription_items: items
|
85
|
-
)
|
86
|
-
|
87
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
|
88
|
-
query: {
|
89
|
-
customer: "cus_123",
|
90
|
-
:'subscription_items[][plan]' => 'gold',
|
91
|
-
:'subscription_items[][quantity]' => 2
|
92
|
-
}
|
93
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
94
|
-
end
|
95
|
-
|
96
|
-
should "be callable with an empty string" do
|
97
|
-
invoice = Stripe::Invoice.upcoming(
|
98
|
-
coupon: '',
|
99
|
-
customer: "cus_123"
|
100
|
-
)
|
101
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
|
102
|
-
query: {
|
103
|
-
coupon: '',
|
104
|
-
customer: "cus_123"
|
105
|
-
}
|
106
|
-
assert invoice.kind_of?(Stripe::Invoice)
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
@@ -1,170 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class ListObjectTest < Test::Unit::TestCase
|
5
|
-
should "provide .empty_list" do
|
6
|
-
list = Stripe::ListObject.empty_list
|
7
|
-
assert list.empty?
|
8
|
-
end
|
9
|
-
|
10
|
-
should "provide #count via enumerable" do
|
11
|
-
list = Stripe::ListObject.construct_from({
|
12
|
-
data: [{ object: "charge" }]
|
13
|
-
})
|
14
|
-
assert_equal 1, list.count
|
15
|
-
end
|
16
|
-
|
17
|
-
should "provide #each" do
|
18
|
-
arr = [
|
19
|
-
{ :id => 1 },
|
20
|
-
{ :id => 2 },
|
21
|
-
{ :id => 3 },
|
22
|
-
]
|
23
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
24
|
-
list = Stripe::ListObject.construct_from({ :data => arr })
|
25
|
-
assert_equal expected, list.each.to_a
|
26
|
-
end
|
27
|
-
|
28
|
-
should "provide #auto_paging_each" do
|
29
|
-
arr = [
|
30
|
-
{ :id => 1 },
|
31
|
-
{ :id => 2 },
|
32
|
-
{ :id => 3 },
|
33
|
-
]
|
34
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
35
|
-
|
36
|
-
list = TestListObject.construct_from({
|
37
|
-
:data => [{ :id => 1 }],
|
38
|
-
:has_more => true,
|
39
|
-
:url => "/things",
|
40
|
-
})
|
41
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
42
|
-
with(query: { starting_after: "1" }).
|
43
|
-
to_return(body: JSON.generate({ :data => [{ :id => 2 }, { :id => 3}], :has_more => false }))
|
44
|
-
|
45
|
-
assert_equal expected, list.auto_paging_each.to_a
|
46
|
-
end
|
47
|
-
|
48
|
-
should "provide #auto_paging_each that responds to a block" do
|
49
|
-
arr = [
|
50
|
-
{ :id => 1 },
|
51
|
-
{ :id => 2 },
|
52
|
-
{ :id => 3 },
|
53
|
-
]
|
54
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
55
|
-
|
56
|
-
list = TestListObject.construct_from({
|
57
|
-
:data => [{ :id => 1 }],
|
58
|
-
:has_more => true,
|
59
|
-
:url => "/things",
|
60
|
-
})
|
61
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
62
|
-
with(query: { starting_after: "1" }).
|
63
|
-
to_return(body: JSON.generate({ :data => [{ :id => 2 }, { :id => 3}], :has_more => false }))
|
64
|
-
|
65
|
-
actual = []
|
66
|
-
list.auto_paging_each do |obj|
|
67
|
-
actual << obj
|
68
|
-
end
|
69
|
-
|
70
|
-
assert_equal expected, actual
|
71
|
-
end
|
72
|
-
|
73
|
-
should "provide #empty?" do
|
74
|
-
list = Stripe::ListObject.construct_from({ :data => [] })
|
75
|
-
assert list.empty?
|
76
|
-
list = Stripe::ListObject.construct_from({ :data => [{}] })
|
77
|
-
refute list.empty?
|
78
|
-
end
|
79
|
-
|
80
|
-
#
|
81
|
-
# next_page
|
82
|
-
#
|
83
|
-
|
84
|
-
should "fetch a next page through #next_page" do
|
85
|
-
list = TestListObject.construct_from({
|
86
|
-
:data => [{ :id => 1 }],
|
87
|
-
:has_more => true,
|
88
|
-
:url => "/things",
|
89
|
-
})
|
90
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
91
|
-
with(query: { starting_after: "1" }).
|
92
|
-
to_return(body: JSON.generate({ :data => [{ :id => 2 }], :has_more => false }))
|
93
|
-
next_list = list.next_page
|
94
|
-
refute next_list.empty?
|
95
|
-
end
|
96
|
-
|
97
|
-
should "fetch a next page through #next_page and respect limit" do
|
98
|
-
list = TestListObject.construct_from({
|
99
|
-
:data => [{ :id => 1 }],
|
100
|
-
:has_more => true,
|
101
|
-
:url => "/things",
|
102
|
-
})
|
103
|
-
list.filters = { :expand => ['data.source'], :limit => 3 }
|
104
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
105
|
-
with(query: { "expand[]" => "data.source", "limit" => "3", "starting_after" => "1" }).
|
106
|
-
to_return(body: JSON.generate({ :data => [{ :id => 2 }], :has_more => false }))
|
107
|
-
next_list = list.next_page
|
108
|
-
assert_equal({ :expand => ['data.source'], :limit => 3 }, next_list.filters)
|
109
|
-
end
|
110
|
-
|
111
|
-
should "fetch an empty page through #next_page" do
|
112
|
-
list = TestListObject.construct_from({
|
113
|
-
:data => [{ :id => 1 }],
|
114
|
-
:has_more => false,
|
115
|
-
:url => "/things",
|
116
|
-
})
|
117
|
-
next_list = list.next_page
|
118
|
-
assert_equal Stripe::ListObject.empty_list, next_list
|
119
|
-
end
|
120
|
-
|
121
|
-
#
|
122
|
-
# previous_page
|
123
|
-
#
|
124
|
-
|
125
|
-
should "fetch a next page through #previous_page" do
|
126
|
-
list = TestListObject.construct_from({
|
127
|
-
:data => [{ :id => 2 }],
|
128
|
-
:url => "/things",
|
129
|
-
})
|
130
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
131
|
-
with(query: { ending_before: "2" }).
|
132
|
-
to_return(body: JSON.generate({ :data => [{ :id => 1 }] }))
|
133
|
-
next_list = list.previous_page
|
134
|
-
refute next_list.empty?
|
135
|
-
end
|
136
|
-
|
137
|
-
should "fetch a next page through #previous_page and respect limit" do
|
138
|
-
list = TestListObject.construct_from({
|
139
|
-
:data => [{ :id => 2 }],
|
140
|
-
:url => "/things",
|
141
|
-
})
|
142
|
-
list.filters = { :expand => ['data.source'], :limit => 3 }
|
143
|
-
stub_request(:get, "#{Stripe.api_base}/things").
|
144
|
-
with(query: { "expand[]" => "data.source", "limit" => "3", "ending_before" => "2" }).
|
145
|
-
to_return(body: JSON.generate({ :data => [{ :id => 1 }] }))
|
146
|
-
next_list = list.previous_page
|
147
|
-
assert_equal({ :expand => ['data.source'], :limit => 3 }, next_list.filters)
|
148
|
-
end
|
149
|
-
|
150
|
-
#
|
151
|
-
# backward compatibility
|
152
|
-
#
|
153
|
-
|
154
|
-
# note that the name #all is deprecated, as is using it fetch the next page
|
155
|
-
# in a list
|
156
|
-
should "be able to retrieve full lists given a listobject" do
|
157
|
-
c = Stripe::Charge.all
|
158
|
-
assert c.kind_of?(Stripe::ListObject)
|
159
|
-
assert_equal('/v1/charges', c.resource_url)
|
160
|
-
all = c.all
|
161
|
-
assert all.kind_of?(Stripe::ListObject)
|
162
|
-
assert_equal('/v1/charges', all.resource_url)
|
163
|
-
assert all.data.kind_of?(Array)
|
164
|
-
end
|
165
|
-
end
|
166
|
-
end
|
167
|
-
|
168
|
-
# A helper class with a URL that allows us to try out pagination.
|
169
|
-
class TestListObject < Stripe::ListObject
|
170
|
-
end
|
@@ -1,35 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class LoginLinkTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
account_fixture = {
|
7
|
-
'id' => 'acct_123',
|
8
|
-
'object' => 'account',
|
9
|
-
'login_links' => {
|
10
|
-
'data' => [],
|
11
|
-
'has_more' => false,
|
12
|
-
'object' => 'list',
|
13
|
-
'url' => "/v1/accounts/acct_123/login_links"
|
14
|
-
}
|
15
|
-
}
|
16
|
-
@account = Stripe::Account.construct_from(account_fixture)
|
17
|
-
end
|
18
|
-
|
19
|
-
should "not be retrievable" do
|
20
|
-
assert_raises NotImplementedError do
|
21
|
-
Stripe::LoginLink.retrieve('foo')
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be creatable" do
|
26
|
-
stub_request(:post, "#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links").
|
27
|
-
to_return(body: JSON.generate({ object: 'login_link' }))
|
28
|
-
|
29
|
-
login_link = @account.login_links.create
|
30
|
-
assert_requested :post,
|
31
|
-
"#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links"
|
32
|
-
assert login_link.kind_of?(Stripe::LoginLink)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
data/test/stripe/oauth_test.rb
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class OAuthTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
Stripe.client_id = 'ca_test'
|
7
|
-
end
|
8
|
-
|
9
|
-
teardown do
|
10
|
-
Stripe.client_id = nil
|
11
|
-
end
|
12
|
-
|
13
|
-
context ".authorize_url" do
|
14
|
-
should "return the authorize URL" do
|
15
|
-
uri_str = OAuth.authorize_url({
|
16
|
-
scope: 'read_write',
|
17
|
-
state: 'csrf_token',
|
18
|
-
stripe_user: {
|
19
|
-
email: 'test@example.com',
|
20
|
-
url: 'https://example.com/profile/test',
|
21
|
-
country: 'US',
|
22
|
-
},
|
23
|
-
})
|
24
|
-
|
25
|
-
uri = URI::parse(uri_str)
|
26
|
-
params = CGI::parse(uri.query)
|
27
|
-
|
28
|
-
assert_equal('https', uri.scheme)
|
29
|
-
assert_equal('connect.stripe.com', uri.host)
|
30
|
-
assert_equal('/oauth/authorize', uri.path)
|
31
|
-
|
32
|
-
assert_equal(['ca_test'], params['client_id'])
|
33
|
-
assert_equal(['read_write'], params['scope'])
|
34
|
-
assert_equal(['test@example.com'], params['stripe_user[email]'])
|
35
|
-
assert_equal(['https://example.com/profile/test'], params['stripe_user[url]'])
|
36
|
-
assert_equal(['US'], params['stripe_user[country]'])
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
context ".token" do
|
41
|
-
should "exchange a code for an access token" do
|
42
|
-
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
43
|
-
# stub the request manually.
|
44
|
-
stub_request(:post, "#{Stripe.connect_base}/oauth/token").
|
45
|
-
with(body: {
|
46
|
-
'grant_type' => 'authorization_code',
|
47
|
-
'code' => 'this_is_an_authorization_code',
|
48
|
-
}).
|
49
|
-
to_return(body: JSON.generate({
|
50
|
-
access_token: 'sk_access_token',
|
51
|
-
scope: 'read_only',
|
52
|
-
livemode: false,
|
53
|
-
token_type: 'bearer',
|
54
|
-
refresh_token: 'sk_refresh_token',
|
55
|
-
stripe_user_id: 'acct_test',
|
56
|
-
stripe_publishable_key: 'pk_test',
|
57
|
-
}))
|
58
|
-
|
59
|
-
resp = OAuth.token({
|
60
|
-
grant_type: 'authorization_code',
|
61
|
-
code: 'this_is_an_authorization_code',
|
62
|
-
})
|
63
|
-
assert_equal('sk_access_token', resp.access_token)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
context ".deauthorize" do
|
68
|
-
should "deauthorize an account" do
|
69
|
-
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
70
|
-
# stub the request manually.
|
71
|
-
stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize").
|
72
|
-
with(body: {
|
73
|
-
'client_id' => 'ca_test',
|
74
|
-
'stripe_user_id' => 'acct_test_deauth',
|
75
|
-
}).
|
76
|
-
to_return(body: JSON.generate({
|
77
|
-
stripe_user_id: 'acct_test_deauth',
|
78
|
-
}))
|
79
|
-
|
80
|
-
resp = OAuth.deauthorize({stripe_user_id: 'acct_test_deauth'})
|
81
|
-
assert_equal('acct_test_deauth', resp.stripe_user_id)
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class OrderReturnTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
order_returns = Stripe::OrderReturn.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/order_returns"
|
8
|
-
assert order_returns.data.kind_of?(Array)
|
9
|
-
assert order_returns.data[0].kind_of?(Stripe::OrderReturn)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
order_return = Stripe::OrderReturn.retrieve("orret_123")
|
14
|
-
assert_requested :get,
|
15
|
-
"#{Stripe.api_base}/v1/order_returns/orret_123"
|
16
|
-
assert order_return.kind_of?(Stripe::OrderReturn)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
data/test/stripe/order_test.rb
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class OrderTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
orders = Stripe::Order.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/orders"
|
8
|
-
assert orders.data.kind_of?(Array)
|
9
|
-
assert orders.first.kind_of?(Stripe::Order)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
order = Stripe::Order.retrieve("or_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/orders/or_123"
|
15
|
-
assert order.kind_of?(Stripe::Order)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
order = Stripe::Order.create(
|
20
|
-
currency: "USD"
|
21
|
-
)
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders"
|
23
|
-
assert order.kind_of?(Stripe::Order)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be saveable" do
|
27
|
-
order = Stripe::Order.retrieve("or_123")
|
28
|
-
order.metadata['key'] = 'value'
|
29
|
-
order.save
|
30
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be updateable" do
|
34
|
-
order = Stripe::Order.update("or_123", metadata: { key: 'value' })
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123"
|
36
|
-
assert order.kind_of?(Stripe::Order)
|
37
|
-
end
|
38
|
-
|
39
|
-
context "#pay" do
|
40
|
-
should "pay an order" do
|
41
|
-
order = Stripe::Order.retrieve("or_123")
|
42
|
-
order = order.pay(token: "tok_123")
|
43
|
-
assert order.kind_of?(Stripe::Order)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context "#return_order" do
|
48
|
-
should "return an order" do
|
49
|
-
order = Stripe::Order.retrieve("or_123")
|
50
|
-
order = order.return_order(:orders => [
|
51
|
-
{ parent: "sku_123" }
|
52
|
-
])
|
53
|
-
assert order.kind_of?(Stripe::OrderReturn)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
data/test/stripe/payout_test.rb
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class PayoutTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
payouts = Stripe::Payout.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payouts"
|
8
|
-
assert payouts.data.kind_of?(Array)
|
9
|
-
assert payouts.data[0].kind_of?(Stripe::Payout)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payouts/tr_123"
|
15
|
-
assert payout.kind_of?(Stripe::Payout)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
payout = Stripe::Payout.create(
|
20
|
-
amount: 100,
|
21
|
-
currency: "USD"
|
22
|
-
)
|
23
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts"
|
24
|
-
assert payout.kind_of?(Stripe::Payout)
|
25
|
-
end
|
26
|
-
|
27
|
-
should "be saveable" do
|
28
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
29
|
-
payout.metadata['key'] = 'value'
|
30
|
-
payout.save
|
31
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{payout.id}"
|
32
|
-
end
|
33
|
-
|
34
|
-
should "be updateable" do
|
35
|
-
payout = Stripe::Payout.update("tr_123", metadata: {foo: 'bar'})
|
36
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts/tr_123"
|
37
|
-
assert payout.kind_of?(Stripe::Payout)
|
38
|
-
end
|
39
|
-
|
40
|
-
context "#cancel" do
|
41
|
-
should "cancel a payout" do
|
42
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
43
|
-
payout = payout.cancel
|
44
|
-
assert payout.kind_of?(Stripe::Payout)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
data/test/stripe/plan_test.rb
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class PlanTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
plans = Stripe::Plan.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/plans"
|
8
|
-
assert plans.data.kind_of?(Array)
|
9
|
-
assert plans.data[0].kind_of?(Stripe::Plan)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
plan = Stripe::Plan.retrieve("sapphire-elite")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/plans/sapphire-elite"
|
15
|
-
assert plan.kind_of?(Stripe::Plan)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
plan = Stripe::Plan.create(
|
20
|
-
amount: 5000,
|
21
|
-
interval: "month",
|
22
|
-
name: "Sapphire elite",
|
23
|
-
currency: "usd",
|
24
|
-
id: "sapphire-elite"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
27
|
-
assert plan.kind_of?(Stripe::Plan)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
plan = Stripe::Plan.retrieve("sapphire-elite")
|
32
|
-
plan.metadata['key'] = 'value'
|
33
|
-
plan.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be updateable" do
|
38
|
-
plan = Stripe::Plan.update("sapphire-elite", metadata: {foo: 'bar'})
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans/sapphire-elite"
|
40
|
-
assert plan.kind_of?(Stripe::Plan)
|
41
|
-
end
|
42
|
-
|
43
|
-
should "be deletable" do
|
44
|
-
plan = Stripe::Plan.retrieve("sapphire-elite")
|
45
|
-
plan = plan.delete
|
46
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
47
|
-
assert plan.kind_of?(Stripe::Plan)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
data/test/stripe/product_test.rb
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class ProductTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
products = Stripe::Product.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/products"
|
8
|
-
assert products.data.kind_of?(Array)
|
9
|
-
assert products.data[0].kind_of?(Stripe::Product)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
product = Stripe::Product.retrieve("prod_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/products/prod_123"
|
15
|
-
assert product.kind_of?(Stripe::Product)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
_ = Stripe::Product.create(
|
20
|
-
name: "My Product"
|
21
|
-
)
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products"
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be saveable" do
|
26
|
-
product = Stripe::Product.retrieve("prod_123")
|
27
|
-
product.metadata['key'] = 'value'
|
28
|
-
product.save
|
29
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products/#{product.id}"
|
30
|
-
end
|
31
|
-
|
32
|
-
should "be updateable" do
|
33
|
-
product = Stripe::Product.update("prod_123", metadata: {foo: 'bar'})
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products/prod_123"
|
35
|
-
assert product.kind_of?(Stripe::Product)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be deletable" do
|
39
|
-
product = Stripe::Product.retrieve("prod_123")
|
40
|
-
product = product.delete
|
41
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/products/#{product.id}"
|
42
|
-
assert product.kind_of?(Stripe::Product)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,44 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class RecipientCardTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
@recipient = Stripe::Recipient.retrieve("rp_123")
|
7
|
-
end
|
8
|
-
|
9
|
-
should "be listable" do
|
10
|
-
cards = @recipient.cards.list
|
11
|
-
assert cards.data.kind_of?(Array)
|
12
|
-
assert cards.data[0].kind_of?(Stripe::Card)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be creatable" do
|
16
|
-
card = @recipient.cards.create(
|
17
|
-
card: "tok_123"
|
18
|
-
)
|
19
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards"
|
20
|
-
assert card.kind_of?(Stripe::Card)
|
21
|
-
end
|
22
|
-
|
23
|
-
should "be deletable" do
|
24
|
-
card = Stripe::Card.construct_from({
|
25
|
-
id: "card_123",
|
26
|
-
recipient: @recipient.id
|
27
|
-
})
|
28
|
-
card = card.delete
|
29
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards/card_123"
|
30
|
-
assert card.kind_of?(Stripe::Card)
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be saveable" do
|
34
|
-
card = Stripe::Card.construct_from({
|
35
|
-
id: "card_123",
|
36
|
-
metadata: {},
|
37
|
-
recipient: @recipient.id
|
38
|
-
})
|
39
|
-
card.metadata['key'] = 'value'
|
40
|
-
card.save
|
41
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards/card_123"
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|