137 lines
3.0 KiB
Ruby
137 lines
3.0 KiB
Ruby
|
|
#TODO register some fixtures
|
|
|
|
FakeWeb.register_uri(:post, 'https://api.stripe.com/v1/customers',
|
|
:body => '{
|
|
"id": "cus_AJqrL4OU1sffPl",
|
|
"object": "customer",
|
|
"account_balance": 0,
|
|
"created": 1489965018,
|
|
"currency": "aud",
|
|
"default_source": "card_19zDADEfVxQsvRbHVooMYHqg",
|
|
"delinquent": false,
|
|
"description": null,
|
|
"discount": null,
|
|
"email": "jo@example.com",
|
|
"livemode": false,
|
|
"metadata": {
|
|
},
|
|
"shipping": null,
|
|
"sources": {
|
|
"object": "list",
|
|
"data": [
|
|
{
|
|
"id": "card_19zDADEfVxQsvRbHVooMYHqg",
|
|
"object": "card",
|
|
"address_city": null,
|
|
"address_country": null,
|
|
"address_line1": null,
|
|
"address_line1_check": null,
|
|
"address_line2": null,
|
|
"address_state": null,
|
|
"address_zip": null,
|
|
"address_zip_check": null,
|
|
"brand": "MasterCard",
|
|
"country": "US",
|
|
"customer": "cus_AJqrL4OU1sffPl",
|
|
"cvc_check": "pass",
|
|
"dynamic_last4": null,
|
|
"exp_month": 11,
|
|
"exp_year": 2022,
|
|
"funding": "credit",
|
|
"last4": "4444",
|
|
"metadata": {
|
|
},
|
|
"name": null,
|
|
"tokenization_method": null
|
|
}
|
|
],
|
|
"has_more": false,
|
|
"total_count": 1,
|
|
"url": "/v1/customers/cus_AJqrL4OU1sffPl/sources"
|
|
}
|
|
}',
|
|
:status => ['200', 'OK']
|
|
)
|
|
|
|
FakeWeb.register_uri(:post, 'https://api.stripe.com/v1/charges',
|
|
:body => '{
|
|
"id": "ch_19zDAFEfVxQsvRbHtAwsCvV0",
|
|
"object": "charge",
|
|
"amount": 100,
|
|
"amount_refunded": 0,
|
|
"application": null,
|
|
"application_fee": null,
|
|
"balance_transaction": "txn_19wkkaEfVxQsvRbH8rnq3SAK",
|
|
"captured": true,
|
|
"created": 1489965019,
|
|
"currency": "aud",
|
|
"customer": "cus_AJqrL4OU1sffPl",
|
|
"description": "Donation",
|
|
"destination": null,
|
|
"dispute": null,
|
|
"failure_code": null,
|
|
"failure_message": null,
|
|
"fraud_details": {
|
|
},
|
|
"invoice": null,
|
|
"livemode": false,
|
|
"metadata": {
|
|
},
|
|
"on_behalf_of": null,
|
|
"order": null,
|
|
"outcome": {
|
|
"network_status": "approved_by_network",
|
|
"reason": null,
|
|
"risk_level": "normal",
|
|
"seller_message": "Payment complete.",
|
|
"type": "authorized"
|
|
},
|
|
"paid": true,
|
|
"receipt_email": null,
|
|
"receipt_number": null,
|
|
"refunded": false,
|
|
"refunds": {
|
|
"object": "list",
|
|
"data": [
|
|
|
|
],
|
|
"has_more": false,
|
|
"total_count": 0,
|
|
"url": "/v1/charges/ch_19zDAFEfVxQsvRbHtAwsCvV0/refunds"
|
|
},
|
|
"review": null,
|
|
"shipping": null,
|
|
"source": {
|
|
"id": "card_19zDADEfVxQsvRbHVooMYHqg",
|
|
"object": "card",
|
|
"address_city": null,
|
|
"address_country": null,
|
|
"address_line1": null,
|
|
"address_line1_check": null,
|
|
"address_line2": null,
|
|
"address_state": null,
|
|
"address_zip": null,
|
|
"address_zip_check": null,
|
|
"brand": "MasterCard",
|
|
"country": "US",
|
|
"customer": "cus_AJqrL4OU1sffPl",
|
|
"cvc_check": "pass",
|
|
"dynamic_last4": null,
|
|
"exp_month": 11,
|
|
"exp_year": 2022,
|
|
"funding": "credit",
|
|
"last4": "4444",
|
|
"metadata": {
|
|
},
|
|
"name": null,
|
|
"tokenization_method": null
|
|
},
|
|
"source_transfer": null,
|
|
"statement_descriptor": null,
|
|
"status": "succeeded",
|
|
"transfer_group": null
|
|
}',
|
|
:status => ['200', 'OK']
|
|
)
|