ruby_shopify_api 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE.md +36 -0
- data/.github/probots.yml +2 -0
- data/.github/workflows/build.yml +43 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +28 -0
- data/.rubocop_todo.yml +75 -0
- data/CHANGELOG-OLD.md +501 -0
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +8 -0
- data/CONTRIBUTORS +3 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +151 -0
- data/Gemfile_ar41 +5 -0
- data/Gemfile_ar50 +5 -0
- data/Gemfile_ar51 +5 -0
- data/Gemfile_ar60 +5 -0
- data/Gemfile_ar_main +5 -0
- data/LICENSE +20 -0
- data/README.md +649 -0
- data/RELEASING +17 -0
- data/Rakefile +55 -0
- data/SECURITY.md +59 -0
- data/dev.yml +11 -0
- data/docker-compose.yml +13 -0
- data/docs/_config.yml +1 -0
- data/docs/_includes/footer.html +28 -0
- data/docs/_includes/head.html +28 -0
- data/docs/_layouts/index.html +57 -0
- data/docs/graphql.md +241 -0
- data/docs/index.md +639 -0
- data/lib/active_resource/connection_ext.rb +11 -0
- data/lib/active_resource/detailed_log_subscriber.rb +55 -0
- data/lib/active_resource/json_errors.rb +37 -0
- data/lib/shopify_api/api_access.rb +57 -0
- data/lib/shopify_api/api_version.rb +206 -0
- data/lib/shopify_api/connection.rb +36 -0
- data/lib/shopify_api/countable.rb +15 -0
- data/lib/shopify_api/disable_prefix_check.rb +31 -0
- data/lib/shopify_api/events.rb +8 -0
- data/lib/shopify_api/graphql/http_client.rb +22 -0
- data/lib/shopify_api/graphql/railtie.rb +17 -0
- data/lib/shopify_api/graphql/task.rake +100 -0
- data/lib/shopify_api/graphql.rb +103 -0
- data/lib/shopify_api/hmac_params.rb +33 -0
- data/lib/shopify_api/limits.rb +77 -0
- data/lib/shopify_api/message_enricher.rb +25 -0
- data/lib/shopify_api/meta.rb +14 -0
- data/lib/shopify_api/metafields.rb +21 -0
- data/lib/shopify_api/paginated_collection.rb +69 -0
- data/lib/shopify_api/pagination_link_headers.rb +34 -0
- data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
- data/lib/shopify_api/resources/access_scope.rb +10 -0
- data/lib/shopify_api/resources/access_token.rb +9 -0
- data/lib/shopify_api/resources/address.rb +5 -0
- data/lib/shopify_api/resources/announcement.rb +5 -0
- data/lib/shopify_api/resources/api_permission.rb +9 -0
- data/lib/shopify_api/resources/application_charge.rb +16 -0
- data/lib/shopify_api/resources/application_credit.rb +5 -0
- data/lib/shopify_api/resources/array_base.rb +13 -0
- data/lib/shopify_api/resources/article.rb +22 -0
- data/lib/shopify_api/resources/asset.rb +101 -0
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
- data/lib/shopify_api/resources/base.rb +166 -0
- data/lib/shopify_api/resources/billing_address.rb +5 -0
- data/lib/shopify_api/resources/blog.rb +11 -0
- data/lib/shopify_api/resources/carrier_service.rb +5 -0
- data/lib/shopify_api/resources/cart.rb +5 -0
- data/lib/shopify_api/resources/checkout.rb +30 -0
- data/lib/shopify_api/resources/collect.rb +7 -0
- data/lib/shopify_api/resources/collection.rb +14 -0
- data/lib/shopify_api/resources/collection_listing.rb +19 -0
- data/lib/shopify_api/resources/collection_publication.rb +10 -0
- data/lib/shopify_api/resources/comment.rb +24 -0
- data/lib/shopify_api/resources/country.rb +5 -0
- data/lib/shopify_api/resources/currency.rb +6 -0
- data/lib/shopify_api/resources/custom_collection.rb +20 -0
- data/lib/shopify_api/resources/customer.rb +30 -0
- data/lib/shopify_api/resources/customer_group.rb +6 -0
- data/lib/shopify_api/resources/customer_invite.rb +5 -0
- data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
- data/lib/shopify_api/resources/discount_code.rb +10 -0
- data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
- data/lib/shopify_api/resources/draft_order.rb +15 -0
- data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
- data/lib/shopify_api/resources/event.rb +9 -0
- data/lib/shopify_api/resources/fulfillment.rb +56 -0
- data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
- data/lib/shopify_api/resources/gift_card.rb +8 -0
- data/lib/shopify_api/resources/image.rb +17 -0
- data/lib/shopify_api/resources/inventory_item.rb +6 -0
- data/lib/shopify_api/resources/inventory_level.rb +54 -0
- data/lib/shopify_api/resources/line_item.rb +15 -0
- data/lib/shopify_api/resources/location.rb +8 -0
- data/lib/shopify_api/resources/marketing_event.rb +11 -0
- data/lib/shopify_api/resources/metafield.rb +14 -0
- data/lib/shopify_api/resources/note_attribute.rb +5 -0
- data/lib/shopify_api/resources/option.rb +5 -0
- data/lib/shopify_api/resources/order.rb +44 -0
- data/lib/shopify_api/resources/order_risk.rb +9 -0
- data/lib/shopify_api/resources/page.rb +7 -0
- data/lib/shopify_api/resources/payment.rb +7 -0
- data/lib/shopify_api/resources/payment_details.rb +5 -0
- data/lib/shopify_api/resources/ping.rb +3 -0
- data/lib/shopify_api/resources/policy.rb +8 -0
- data/lib/shopify_api/resources/price_rule.rb +8 -0
- data/lib/shopify_api/resources/product.rb +59 -0
- data/lib/shopify_api/resources/product_listing.rb +17 -0
- data/lib/shopify_api/resources/product_publication.rb +10 -0
- data/lib/shopify_api/resources/province.rb +6 -0
- data/lib/shopify_api/resources/publication.rb +5 -0
- data/lib/shopify_api/resources/receipt.rb +5 -0
- data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
- data/lib/shopify_api/resources/redirect.rb +5 -0
- data/lib/shopify_api/resources/refund.rb +15 -0
- data/lib/shopify_api/resources/report.rb +5 -0
- data/lib/shopify_api/resources/resource_feedback.rb +19 -0
- data/lib/shopify_api/resources/rule.rb +5 -0
- data/lib/shopify_api/resources/script_tag.rb +5 -0
- data/lib/shopify_api/resources/shipping_address.rb +5 -0
- data/lib/shopify_api/resources/shipping_line.rb +5 -0
- data/lib/shopify_api/resources/shipping_rate.rb +7 -0
- data/lib/shopify_api/resources/shipping_zone.rb +5 -0
- data/lib/shopify_api/resources/shop.rb +26 -0
- data/lib/shopify_api/resources/smart_collection.rb +15 -0
- data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
- data/lib/shopify_api/resources/tax_line.rb +5 -0
- data/lib/shopify_api/resources/tax_service.rb +5 -0
- data/lib/shopify_api/resources/tender_transaction.rb +6 -0
- data/lib/shopify_api/resources/theme.rb +5 -0
- data/lib/shopify_api/resources/transaction.rb +6 -0
- data/lib/shopify_api/resources/usage_charge.rb +6 -0
- data/lib/shopify_api/resources/user.rb +5 -0
- data/lib/shopify_api/resources/variant.rb +43 -0
- data/lib/shopify_api/resources/webhook.rb +5 -0
- data/lib/shopify_api/resources.rb +4 -0
- data/lib/shopify_api/session.rb +203 -0
- data/lib/shopify_api/version.rb +4 -0
- data/lib/shopify_api.rb +45 -0
- data/lib/verify_docs.rb +8 -0
- data/service.yml +2 -0
- data/shipit.rubygems.yml +1 -0
- data/shopify_api.gemspec +47 -0
- data/test/abandoned_checkouts_test.rb +29 -0
- data/test/access_scope_test.rb +23 -0
- data/test/access_token_test.rb +20 -0
- data/test/active_resource/json_errors_test.rb +19 -0
- data/test/api_access_test.rb +153 -0
- data/test/api_permission_test.rb +9 -0
- data/test/api_version_test.rb +157 -0
- data/test/application_charge_test.rb +82 -0
- data/test/application_credit_test.rb +36 -0
- data/test/article_test.rb +72 -0
- data/test/asset_test.rb +26 -0
- data/test/assigned_fulfillment_order_test.rb +78 -0
- data/test/base_test.rb +213 -0
- data/test/blog_test.rb +9 -0
- data/test/carrier_service_test.rb +18 -0
- data/test/cart_test.rb +14 -0
- data/test/checkouts_test.rb +77 -0
- data/test/collect_test.rb +10 -0
- data/test/collection_listing_test.rb +84 -0
- data/test/collection_publication_test.rb +40 -0
- data/test/collection_test.rb +50 -0
- data/test/countable_test.rb +14 -0
- data/test/currency_test.rb +21 -0
- data/test/custom_collection_test.rb +10 -0
- data/test/customer_saved_search_test.rb +37 -0
- data/test/customer_test.rb +58 -0
- data/test/detailed_log_subscriber_test.rb +143 -0
- data/test/discount_code_batch_test.rb +41 -0
- data/test/discount_code_test.rb +59 -0
- data/test/draft_order_test.rb +167 -0
- data/test/fixtures/abandoned_checkout.json +184 -0
- data/test/fixtures/abandoned_checkouts.json +186 -0
- data/test/fixtures/access_scopes.json +10 -0
- data/test/fixtures/access_token_delegate.json +4 -0
- data/test/fixtures/api_versions.json +38 -0
- data/test/fixtures/apis.json +42 -0
- data/test/fixtures/application_charge.json +16 -0
- data/test/fixtures/application_charges.json +57 -0
- data/test/fixtures/application_credit.json +12 -0
- data/test/fixtures/application_credits.json +24 -0
- data/test/fixtures/article.json +15 -0
- data/test/fixtures/articles.json +39 -0
- data/test/fixtures/asset.json +9 -0
- data/test/fixtures/assets.json +136 -0
- data/test/fixtures/assigned_fulfillment_orders.json +80 -0
- data/test/fixtures/authors.json +1 -0
- data/test/fixtures/blog.json +13 -0
- data/test/fixtures/blogs.json +13 -0
- data/test/fixtures/carrier_service.json +9 -0
- data/test/fixtures/carts.json +43 -0
- data/test/fixtures/checkout.json +160 -0
- data/test/fixtures/checkouts.json +162 -0
- data/test/fixtures/collect.json +12 -0
- data/test/fixtures/collection.json +17 -0
- data/test/fixtures/collection_listing.json +11 -0
- data/test/fixtures/collection_listing_product_ids.json +1 -0
- data/test/fixtures/collection_listing_product_ids2.json +1 -0
- data/test/fixtures/collection_listings.json +13 -0
- data/test/fixtures/collection_products.json +47 -0
- data/test/fixtures/collection_publication.json +11 -0
- data/test/fixtures/collection_publications.json +13 -0
- data/test/fixtures/currencies.json +25 -0
- data/test/fixtures/custom_collection.json +17 -0
- data/test/fixtures/customer_invite.json +9 -0
- data/test/fixtures/customer_saved_search.json +9 -0
- data/test/fixtures/customer_saved_search_customers.json +60 -0
- data/test/fixtures/customers.json +59 -0
- data/test/fixtures/customers_account_activation_url.json +3 -0
- data/test/fixtures/customers_search.json +60 -0
- data/test/fixtures/discount_code.json +10 -0
- data/test/fixtures/discount_code_batch.json +14 -0
- data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
- data/test/fixtures/discount_codes.json +12 -0
- data/test/fixtures/draft_order.json +159 -0
- data/test/fixtures/draft_order_completed.json +159 -0
- data/test/fixtures/draft_order_invoice.json +9 -0
- data/test/fixtures/draft_orders.json +161 -0
- data/test/fixtures/engagement.json +15 -0
- data/test/fixtures/events.json +31 -0
- data/test/fixtures/fulfillment.json +49 -0
- data/test/fixtures/fulfillment_event.json +12 -0
- data/test/fixtures/fulfillment_order.json +39 -0
- data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
- data/test/fixtures/fulfillment_orders.json +80 -0
- data/test/fixtures/fulfillment_request.json +28 -0
- data/test/fixtures/fulfillment_service.json +10 -0
- data/test/fixtures/fulfillments.json +53 -0
- data/test/fixtures/gift_card.json +20 -0
- data/test/fixtures/gift_card_disabled.json +20 -0
- data/test/fixtures/graphql/2019-10.json +1083 -0
- data/test/fixtures/graphql/dummy_schema.rb +16 -0
- data/test/fixtures/graphql/unstable.json +1083 -0
- data/test/fixtures/image.json +10 -0
- data/test/fixtures/images.json +20 -0
- data/test/fixtures/inventory_level.json +7 -0
- data/test/fixtures/inventory_levels.json +24 -0
- data/test/fixtures/marketing_event.json +28 -0
- data/test/fixtures/marketing_events.json +54 -0
- data/test/fixtures/metafield.json +12 -0
- data/test/fixtures/metafields.json +34 -0
- data/test/fixtures/order.json +297 -0
- data/test/fixtures/order_risk.json +14 -0
- data/test/fixtures/order_risks.json +28 -0
- data/test/fixtures/order_with_properties.json +373 -0
- data/test/fixtures/orders.json +299 -0
- data/test/fixtures/payment.json +7 -0
- data/test/fixtures/payments.json +9 -0
- data/test/fixtures/ping/conversation.json +1 -0
- data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
- data/test/fixtures/ping/message.json +1 -0
- data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
- data/test/fixtures/policies.json +8 -0
- data/test/fixtures/price_rule.json +27 -0
- data/test/fixtures/price_rules.json +28 -0
- data/test/fixtures/product.json +116 -0
- data/test/fixtures/product_listing.json +86 -0
- data/test/fixtures/product_listing_product_ids.json +1 -0
- data/test/fixtures/product_listing_product_ids2.json +1 -0
- data/test/fixtures/product_listings.json +174 -0
- data/test/fixtures/product_publication.json +11 -0
- data/test/fixtures/product_publications.json +13 -0
- data/test/fixtures/publications.json +9 -0
- data/test/fixtures/recurring_application_charge.json +22 -0
- data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
- data/test/fixtures/recurring_application_charges.json +106 -0
- data/test/fixtures/redirect.json +7 -0
- data/test/fixtures/refund.json +112 -0
- data/test/fixtures/report.json +9 -0
- data/test/fixtures/reports.json +11 -0
- data/test/fixtures/script_tag.json +10 -0
- data/test/fixtures/script_tags.json +18 -0
- data/test/fixtures/shipping_rates.json +12 -0
- data/test/fixtures/shipping_zones.json +315 -0
- data/test/fixtures/shop.json +26 -0
- data/test/fixtures/smart_collection.json +21 -0
- data/test/fixtures/smart_collection_products.json +155 -0
- data/test/fixtures/storefront_access_token.json +9 -0
- data/test/fixtures/storefront_access_tokens.json +18 -0
- data/test/fixtures/tags.json +1 -0
- data/test/fixtures/tax_service.json +9 -0
- data/test/fixtures/tender_transactions.json +52 -0
- data/test/fixtures/transaction.json +29 -0
- data/test/fixtures/usage_charge.json +11 -0
- data/test/fixtures/usage_charges.json +23 -0
- data/test/fixtures/user.json +21 -0
- data/test/fixtures/users.json +42 -0
- data/test/fixtures/variant.json +23 -0
- data/test/fixtures/variants.json +88 -0
- data/test/fixtures/webhook.json +10 -0
- data/test/fixtures/webhooks.json +18 -0
- data/test/fulfillment_event_test.rb +74 -0
- data/test/fulfillment_order_test.rb +530 -0
- data/test/fulfillment_order_test_helper.rb +8 -0
- data/test/fulfillment_request_test.rb +35 -0
- data/test/fulfillment_service_test.rb +18 -0
- data/test/fulfillment_test.rb +239 -0
- data/test/fulfillment_v2_test.rb +66 -0
- data/test/gift_card_test.rb +24 -0
- data/test/graphql/http_client_test.rb +26 -0
- data/test/graphql_test.rb +190 -0
- data/test/hmac_params_test.rb +25 -0
- data/test/image_test.rb +41 -0
- data/test/inventory_level_test.rb +68 -0
- data/test/lib/webmock_extensions/last_request.rb +16 -0
- data/test/limits_test.rb +39 -0
- data/test/location_test.rb +15 -0
- data/test/marketing_event_test.rb +68 -0
- data/test/message_enricher_test.rb +45 -0
- data/test/meta_test.rb +47 -0
- data/test/metafield_test.rb +56 -0
- data/test/order_risk_test.rb +47 -0
- data/test/order_test.rb +140 -0
- data/test/pagination_test.rb +290 -0
- data/test/payment_test.rb +19 -0
- data/test/policy_test.rb +20 -0
- data/test/price_rule_test.rb +70 -0
- data/test/product_listing_test.rb +97 -0
- data/test/product_publication_test.rb +40 -0
- data/test/product_test.rb +111 -0
- data/test/publication_test.rb +12 -0
- data/test/recurring_application_charge_test.rb +204 -0
- data/test/redirect_test.rb +10 -0
- data/test/refund_test.rb +37 -0
- data/test/report_test.rb +37 -0
- data/test/resource_feedback_test.rb +43 -0
- data/test/script_tag_test.rb +31 -0
- data/test/session_test.rb +640 -0
- data/test/shipping_rate_test.rb +17 -0
- data/test/shipping_zone_test.rb +11 -0
- data/test/shop_test.rb +82 -0
- data/test/smart_collection_test.rb +11 -0
- data/test/storefront_access_token_test.rb +30 -0
- data/test/tax_service_test.rb +12 -0
- data/test/tender_transaction_test.rb +18 -0
- data/test/test_helper.rb +126 -0
- data/test/transaction_test.rb +18 -0
- data/test/usage_charge_test.rb +25 -0
- data/test/user_test.rb +18 -0
- data/test/variant_test.rb +73 -0
- data/test/webhook_test.rb +24 -0
- metadata +555 -0
@@ -0,0 +1,204 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class RecurringApplicationChargeTest < Test::Unit::TestCase
|
5
|
+
def test_recurring_application_charges_create
|
6
|
+
fake(
|
7
|
+
"recurring_application_charges", method: :post, status: 201, body: load_fixture('recurring_application_charge')
|
8
|
+
)
|
9
|
+
|
10
|
+
charge = ShopifyAPI::RecurringApplicationCharge.create(
|
11
|
+
name: "Default Plan",
|
12
|
+
price: 10.0,
|
13
|
+
return_url: "http://test.com/confirm"
|
14
|
+
)
|
15
|
+
|
16
|
+
assert_equal(
|
17
|
+
'http://apple.myshopify.com/admin/charges/654381177/confirm_recurring_application_charge?' \
|
18
|
+
'signature=BAhpBHkQASc%3D--419fc7424f8c290ac2b21b9004ed223e35b52164',
|
19
|
+
charge.confirmation_url
|
20
|
+
)
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_get_recurring_application_charges
|
24
|
+
fake(
|
25
|
+
"recurring_application_charges/654381177",
|
26
|
+
method: :get,
|
27
|
+
status: 201,
|
28
|
+
body: load_fixture('recurring_application_charge')
|
29
|
+
)
|
30
|
+
|
31
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(654381177)
|
32
|
+
|
33
|
+
assert_equal("Super Duper Plan", charge.name)
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_list_recurring_application_charges
|
37
|
+
fake(
|
38
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
39
|
+
)
|
40
|
+
|
41
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(:all)
|
42
|
+
|
43
|
+
assert_equal("Super Mega Plan", charge.last.name)
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_list_since_recurring_application_charges
|
47
|
+
fake(
|
48
|
+
"recurring_application_charges.json?since_id=64512345",
|
49
|
+
extension: false,
|
50
|
+
method: :get,
|
51
|
+
status: 201,
|
52
|
+
body: load_fixture('recurring_application_charges')
|
53
|
+
)
|
54
|
+
|
55
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(:all, params: { since_id: '64512345' })
|
56
|
+
|
57
|
+
assert_equal("Super Mega Plan", charge.last.name)
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_list_fields_recurring_application_charges
|
61
|
+
fake(
|
62
|
+
"recurring_application_charges.json?fields=name",
|
63
|
+
extension: false,
|
64
|
+
method: :get,
|
65
|
+
status: 201,
|
66
|
+
body: load_fixture('recurring_application_charges')
|
67
|
+
)
|
68
|
+
|
69
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(:all, params: { fields: 'name' })
|
70
|
+
|
71
|
+
assert_equal("Super Mega Plan", charge.last.name)
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_pending_recurring_application_charge
|
75
|
+
fake(
|
76
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
77
|
+
)
|
78
|
+
|
79
|
+
charge = ShopifyAPI::RecurringApplicationCharge.pending
|
80
|
+
|
81
|
+
assert_equal("Super Mega Plan2", charge.last.name)
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_cancelled_recurring_application_charge
|
85
|
+
fake(
|
86
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
87
|
+
)
|
88
|
+
|
89
|
+
charge = ShopifyAPI::RecurringApplicationCharge.cancelled
|
90
|
+
|
91
|
+
assert_equal("Super Mega Plan3", charge.last.name)
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_accepted_recurring_application_charge
|
95
|
+
fake(
|
96
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
97
|
+
)
|
98
|
+
|
99
|
+
charge = ShopifyAPI::RecurringApplicationCharge.accepted
|
100
|
+
|
101
|
+
assert_equal("Super Mega Plan4", charge.first.name)
|
102
|
+
assert_equal("Super Mega Plan", charge.last.name)
|
103
|
+
end
|
104
|
+
|
105
|
+
def test_declined_recurring_application_charge
|
106
|
+
fake(
|
107
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
108
|
+
)
|
109
|
+
|
110
|
+
charge = ShopifyAPI::RecurringApplicationCharge.declined
|
111
|
+
|
112
|
+
assert_equal("Super Mega Plan5", charge.last.name)
|
113
|
+
end
|
114
|
+
|
115
|
+
def test_activate_recurring_application_charge
|
116
|
+
fake(
|
117
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
118
|
+
)
|
119
|
+
fake("recurring_application_charges/455696199/activate", method: :post, status: 200, body: "{}")
|
120
|
+
|
121
|
+
charge = ShopifyAPI::RecurringApplicationCharge.accepted
|
122
|
+
|
123
|
+
assert(charge.last.activate)
|
124
|
+
end
|
125
|
+
|
126
|
+
def test_adjust_recurring_application_charge
|
127
|
+
fake(
|
128
|
+
"recurring_application_charges/654381177",
|
129
|
+
method: :get,
|
130
|
+
status: 201,
|
131
|
+
body: load_fixture('recurring_application_charge')
|
132
|
+
)
|
133
|
+
fake(
|
134
|
+
"recurring_application_charges/654381177/customize.json?recurring_application_charge%5Bcapped_amount%5D=200",
|
135
|
+
method: :put,
|
136
|
+
body: load_fixture('recurring_application_charge_adjustment'),
|
137
|
+
extension: false
|
138
|
+
)
|
139
|
+
|
140
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(654381177)
|
141
|
+
|
142
|
+
assert(charge.customize(capped_amount: 200))
|
143
|
+
end
|
144
|
+
|
145
|
+
def test_cancel_recurring_application_charge
|
146
|
+
fake(
|
147
|
+
"recurring_application_charges", method: :get, status: 201, body: load_fixture('recurring_application_charges')
|
148
|
+
)
|
149
|
+
fake("recurring_application_charges/455696194", method: :delete, status: 200, body: "{}")
|
150
|
+
|
151
|
+
charge = ShopifyAPI::RecurringApplicationCharge.current
|
152
|
+
assert(charge.cancel)
|
153
|
+
end
|
154
|
+
|
155
|
+
def test_usage_charges_recurring_application_charge_found
|
156
|
+
fake(
|
157
|
+
"recurring_application_charges/654381177",
|
158
|
+
method: :get,
|
159
|
+
status: 201,
|
160
|
+
body: load_fixture('recurring_application_charge')
|
161
|
+
)
|
162
|
+
fake(
|
163
|
+
"recurring_application_charges/654381177/usage_charges",
|
164
|
+
method: :get,
|
165
|
+
status: 201,
|
166
|
+
body: load_fixture('usage_charges')
|
167
|
+
)
|
168
|
+
|
169
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(654381177)
|
170
|
+
usage_charges = charge.usage_charges
|
171
|
+
|
172
|
+
assert_equal(2, usage_charges.length)
|
173
|
+
end
|
174
|
+
|
175
|
+
def test_usage_charges_recurring_application_charge_not_found
|
176
|
+
fake(
|
177
|
+
"recurring_application_charges/654381177",
|
178
|
+
method: :get,
|
179
|
+
status: 201,
|
180
|
+
body: load_fixture('recurring_application_charge')
|
181
|
+
)
|
182
|
+
fake("recurring_application_charges/654381177/usage_charges", method: :get, status: 201, body: "[]")
|
183
|
+
|
184
|
+
charge = ShopifyAPI::RecurringApplicationCharge.find(654381177)
|
185
|
+
usage_charges = charge.usage_charges
|
186
|
+
|
187
|
+
assert_equal(0, usage_charges.length)
|
188
|
+
end
|
189
|
+
|
190
|
+
def test_no_recurring_application_charge_found
|
191
|
+
fake("recurring_application_charges", body: { recurring_application_charges: [] }.to_json)
|
192
|
+
|
193
|
+
assert_equal(0, ShopifyAPI::RecurringApplicationCharge.all.count)
|
194
|
+
assert_nil(ShopifyAPI::RecurringApplicationCharge.current)
|
195
|
+
assert_equal([], ShopifyAPI::RecurringApplicationCharge.pending)
|
196
|
+
end
|
197
|
+
|
198
|
+
def test_recurring_application_charge_not_found_error
|
199
|
+
fake("recurring_application_charges", body: '{"errors":"Not Found"}', status: 404)
|
200
|
+
assert_nil(ShopifyAPI::RecurringApplicationCharge.all)
|
201
|
+
assert_nil(ShopifyAPI::RecurringApplicationCharge.current)
|
202
|
+
assert_equal([], ShopifyAPI::RecurringApplicationCharge.pending)
|
203
|
+
end
|
204
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class RedirectTest < Test::Unit::TestCase
|
5
|
+
test "#create should create a redirect" do
|
6
|
+
fake("redirects", method: :post, status: 201, body: load_fixture('redirect'))
|
7
|
+
redirect = ShopifyAPI::Redirect.create(path: "/ipod", target: "/pages/itunes")
|
8
|
+
assert_equal(979034150, redirect.id)
|
9
|
+
end
|
10
|
+
end
|
data/test/refund_test.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class RefundTest < Test::Unit::TestCase
|
5
|
+
test '#create should create a refund' do
|
6
|
+
fake("orders/450789469/refunds", method: :post, status: 201, body: load_fixture('refund'))
|
7
|
+
refund = ShopifyAPI::Refund.create(
|
8
|
+
order_id: 450789469,
|
9
|
+
restock: true,
|
10
|
+
note: "wrong size",
|
11
|
+
shipping: { full_refund: true },
|
12
|
+
refund_line_items: [{ line_item_id: 518995019, quantity: 1 }]
|
13
|
+
)
|
14
|
+
assert_equal(703073504, refund.refund_line_items.first.line_item_id)
|
15
|
+
end
|
16
|
+
|
17
|
+
test '#find should return a refund' do
|
18
|
+
fake(
|
19
|
+
"orders/450789469/refunds/509562969.json?order_id=450789469",
|
20
|
+
extension: false,
|
21
|
+
method: :get,
|
22
|
+
body: load_fixture('refund')
|
23
|
+
)
|
24
|
+
fake("orders/450789469/refunds/509562969", method: :get, body: load_fixture('refund'))
|
25
|
+
refund = ShopifyAPI::Refund.find(509562969, params: { order_id: 450789469 })
|
26
|
+
assert_equal(509562969, refund.id)
|
27
|
+
end
|
28
|
+
|
29
|
+
test '#calculate a refund' do
|
30
|
+
fake("orders/450789469/refunds/calculate", method: :post, body: load_fixture('refund'))
|
31
|
+
data = { shipping: { amount: 0 } }
|
32
|
+
|
33
|
+
refund = ShopifyAPI::Refund.calculate(data, params: { order_id: 450789469 })
|
34
|
+
assert_equal(2, refund.refund_line_items.count)
|
35
|
+
assert_equal(703073504, refund.refund_line_items.first.line_item_id)
|
36
|
+
end
|
37
|
+
end
|
data/test/report_test.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class ReportTest < Test::Unit::TestCase
|
5
|
+
test 'get should get a report' do
|
6
|
+
fake('reports/987', method: :get, status: 200, body: load_fixture('report'))
|
7
|
+
|
8
|
+
report = ShopifyAPI::Report.find(987)
|
9
|
+
assert_equal(987, report.id)
|
10
|
+
end
|
11
|
+
|
12
|
+
test 'get all should get all reports' do
|
13
|
+
fake('reports', method: :get, status: 200, body: load_fixture('reports'))
|
14
|
+
|
15
|
+
reports = ShopifyAPI::Report.all
|
16
|
+
assert_equal('custom_app_reports', reports.first.category)
|
17
|
+
end
|
18
|
+
|
19
|
+
test 'create should create a report' do
|
20
|
+
fake('reports', method: :post, status: 201, body: load_fixture('report'))
|
21
|
+
|
22
|
+
report = ShopifyAPI::Report.create(
|
23
|
+
name: 'Custom App Report',
|
24
|
+
shopify_ql: 'SHOW quantity_count, total_sales BY product_type, vendor, product_title ' \
|
25
|
+
'FROM products SINCE -1m UNTIL -0m ORDER BY total_sales DESC'
|
26
|
+
)
|
27
|
+
assert_equal('custom_app_reports', report.category)
|
28
|
+
end
|
29
|
+
|
30
|
+
test 'delete should delete report' do
|
31
|
+
fake('reports/987', method: :get, status: 200, body: load_fixture('report'))
|
32
|
+
fake('reports/987', method: :delete, status: 200, body: '[]')
|
33
|
+
|
34
|
+
report = ShopifyAPI::Report.find(987)
|
35
|
+
assert(report.destroy)
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
class ResourceFeedbackTest < Test::Unit::TestCase
|
3
|
+
def test_get_resource_feedback
|
4
|
+
body = { resource_feedback: [{ resource_type: 'Shop' }] }.to_json
|
5
|
+
fake('resource_feedback', method: :get, body: body)
|
6
|
+
resource_feedback = ShopifyAPI::ResourceFeedback.find(:all)
|
7
|
+
assert_equal('Shop', resource_feedback.first.resource_type)
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_save_with_resource_feedback_endpoint
|
11
|
+
body = { resource_feedback: {} }.to_json
|
12
|
+
fake('resource_feedback', method: :post, body: body)
|
13
|
+
ShopifyAPI::ResourceFeedback.new.save
|
14
|
+
assert_request_body(body)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_get_resource_feedback_with_product_id
|
18
|
+
body = { resource_feedback: [{ resource_type: 'Product' }] }.to_json
|
19
|
+
fake('products/42/resource_feedback', method: :get, body: body)
|
20
|
+
resource_feedback = ShopifyAPI::ResourceFeedback.find(:all, params: { product_id: 42 })
|
21
|
+
assert_equal('Product', resource_feedback.first.resource_type)
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_save_with_product_id_resource_feedback_endpoint
|
25
|
+
body = { resource_feedback: {} }.to_json
|
26
|
+
fake('products/42/resource_feedback', method: :post, body: body)
|
27
|
+
ShopifyAPI::ResourceFeedback.new(product_id: 42).save
|
28
|
+
assert_request_body(body)
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_save_raises_exception_when_already_persisted
|
32
|
+
body = { resource_feedback: {} }.to_json
|
33
|
+
fake('resource_feedback', method: :post, body: body)
|
34
|
+
resource_feedback = ShopifyAPI::ResourceFeedback.new
|
35
|
+
resource_feedback.save
|
36
|
+
assert_request_body(body)
|
37
|
+
|
38
|
+
ShopifyAPI::ResourceFeedback.any_instance.expects(:persisted?).returns(true)
|
39
|
+
assert_raises(ShopifyAPI::ResourceFeedback::ExistingFeedbackSaved) do
|
40
|
+
resource_feedback.save
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class ScriptTagTest < Test::Unit::TestCase
|
5
|
+
test "get all should get all script tags" do
|
6
|
+
fake('script_tags', method: :get, status: 200, body: load_fixture('script_tags'))
|
7
|
+
script_tags = ShopifyAPI::ScriptTag.all
|
8
|
+
assert_equal("http://js-aplenty.com/bar.js", script_tags.first.src)
|
9
|
+
end
|
10
|
+
|
11
|
+
test "get should get a script tag" do
|
12
|
+
fake('script_tags/421379493', method: :get, status: 200, body: load_fixture('script_tag'))
|
13
|
+
script_tag = ShopifyAPI::ScriptTag.find(421379493)
|
14
|
+
assert_equal("http://js-aplenty.com/bar.js", script_tag.src)
|
15
|
+
end
|
16
|
+
|
17
|
+
test "create should create a new script tag" do
|
18
|
+
fake('script_tags', method: :post, status: 201, body: load_fixture('script_tag'))
|
19
|
+
script_tag = ShopifyAPI::ScriptTag.create(event: "onload", src: "http://js-aplenty.com/bar.js")
|
20
|
+
assert_equal("http://js-aplenty.com/bar.js", script_tag.src)
|
21
|
+
end
|
22
|
+
|
23
|
+
test "editing script tag should update script tag" do
|
24
|
+
fake('script_tags/421379493', method: :get, status: 200, body: load_fixture('script_tag'))
|
25
|
+
script_tag = ShopifyAPI::ScriptTag.find(421379493)
|
26
|
+
script_tag.src = "http://js-aplenty.com/bar.js"
|
27
|
+
fake('script_tags/421379493', method: :put, status: 200, body: load_fixture('script_tag'))
|
28
|
+
script_tag.save
|
29
|
+
assert_equal("http://js-aplenty.com/bar.js", script_tag.src)
|
30
|
+
end
|
31
|
+
end
|