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
data/test/shop_test.rb
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class ShopTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
super
|
7
|
+
fake("shop")
|
8
|
+
@shop = ShopifyAPI::Shop.current
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_current_should_return_current_shop
|
12
|
+
assert(@shop.is_a?(ShopifyAPI::Shop))
|
13
|
+
assert_equal("Apple Computers", @shop.name)
|
14
|
+
assert_equal("apple.myshopify.com", @shop.myshopify_domain)
|
15
|
+
assert_equal(690933842, @shop.id)
|
16
|
+
assert_equal("2007-12-31T19:00:00-05:00", @shop.created_at)
|
17
|
+
assert_nil(@shop.tax_shipping)
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_current_with_options_should_return_current_shop
|
21
|
+
fake(
|
22
|
+
"shop.json?fields%5B%5D=name&fields%5B%5D=myshopify_domain",
|
23
|
+
extension: false,
|
24
|
+
method: :get,
|
25
|
+
status: 201,
|
26
|
+
body: load_fixture('shop')
|
27
|
+
)
|
28
|
+
|
29
|
+
@shop = ShopifyAPI::Shop.current(params: { fields: [:name, :myshopify_domain] })
|
30
|
+
assert(@shop.is_a?(ShopifyAPI::Shop))
|
31
|
+
assert_equal("Apple Computers", @shop.name)
|
32
|
+
assert_equal("apple.myshopify.com", @shop.myshopify_domain)
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_get_all_metafields_for_shop
|
36
|
+
fake("metafields")
|
37
|
+
|
38
|
+
metafields = @shop.metafields
|
39
|
+
|
40
|
+
assert_equal(3, metafields.length)
|
41
|
+
assert(metafields.all? { |m| m.is_a?(ShopifyAPI::Metafield) })
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_get_2_metafields_for_shop
|
45
|
+
body = ActiveSupport::JSON.decode(load_fixture('metafields'))
|
46
|
+
body['metafields'].slice!(2, 1)
|
47
|
+
|
48
|
+
fake('metafields.json?limit=2', body: body.to_json, extension: false)
|
49
|
+
|
50
|
+
metafields = @shop.metafields(limit: 2)
|
51
|
+
|
52
|
+
assert_equal(2, metafields.length)
|
53
|
+
assert(metafields.all? { |m| m.is_a?(ShopifyAPI::Metafield) })
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_add_metafield
|
57
|
+
fake("metafields", method: :post, status: 201, body: load_fixture('metafield'))
|
58
|
+
|
59
|
+
field = @shop.add_metafield(
|
60
|
+
ShopifyAPI::Metafield.new(namespace: "contact", key: "email", value: "123@example.com", value_type: "string")
|
61
|
+
)
|
62
|
+
assert_equal(
|
63
|
+
ActiveSupport::JSON.decode(
|
64
|
+
'{"metafield":{"namespace":"contact","key":"email","value":"123@example.com","value_type":"string"}}'
|
65
|
+
),
|
66
|
+
ActiveSupport::JSON.decode(WebMock.last_request.body)
|
67
|
+
)
|
68
|
+
assert(!field.new_record?)
|
69
|
+
assert_equal("contact", field.namespace)
|
70
|
+
assert_equal("email", field.key)
|
71
|
+
assert_equal("123@example.com", field.value)
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_events
|
75
|
+
fake("events")
|
76
|
+
|
77
|
+
events = @shop.events
|
78
|
+
|
79
|
+
assert_equal(3, events.length)
|
80
|
+
assert(events.all? { |m| m.is_a?(ShopifyAPI::Event) })
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class SmartCollectionTest < Test::Unit::TestCase
|
5
|
+
test "Smart Collection creation" do
|
6
|
+
fake("smart_collections", method: :post, status: 201, body: load_fixture('smart_collection'))
|
7
|
+
rules = { column: "title", relation: "starts_with", condition: "mac" }
|
8
|
+
smart_collection = ShopifyAPI::SmartCollection.create(title: "Macbooks", rules: rules)
|
9
|
+
assert_equal(1063001432, smart_collection.id)
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class StorefrontAccessTokenTest < Test::Unit::TestCase
|
5
|
+
def test_create_storefront_access_token
|
6
|
+
fake("storefront_access_tokens", method: :post, body: load_fixture('storefront_access_token'))
|
7
|
+
storefront_access_token = ShopifyAPI::StorefrontAccessToken.create(title: 'Test')
|
8
|
+
assert_equal(1, storefront_access_token.id)
|
9
|
+
assert_equal("Test", storefront_access_token.title)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_delete_storefront_access_token
|
13
|
+
fake('storefront_access_tokens/1', method: :get, status: 200, body: load_fixture('storefront_access_token'))
|
14
|
+
fake('storefront_access_tokens/1', method: :delete, status: 200, body: 'destroyed')
|
15
|
+
storefront_access_tokens = ShopifyAPI::StorefrontAccessToken.find(1)
|
16
|
+
assert(storefront_access_tokens.destroy)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_get_storefront_access_tokens
|
20
|
+
fake("storefront_access_tokens", method: :get, status: 201, body: load_fixture('storefront_access_tokens'))
|
21
|
+
|
22
|
+
tokens = ShopifyAPI::StorefrontAccessToken.all
|
23
|
+
|
24
|
+
assert_equal(2, tokens.size)
|
25
|
+
assert_equal(1, tokens.first.id)
|
26
|
+
assert_equal(2, tokens.last.id)
|
27
|
+
assert_equal('Test 1', tokens.first.title)
|
28
|
+
assert_equal('Test 2', tokens.last.title)
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
class TaxServiceTest < Test::Unit::TestCase
|
4
|
+
test "tax service creation" do
|
5
|
+
fake("tax_services", method: :post, status: 202, body: load_fixture('tax_service'))
|
6
|
+
ShopifyAPI::TaxService.create(name: "My Tax Service", url: "https://mytaxservice.com")
|
7
|
+
assert_equal(
|
8
|
+
'{"tax_service":{"name":"My Tax Service","url":"https://mytaxservice.com"}}',
|
9
|
+
WebMock.last_request.body
|
10
|
+
)
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class TenderTransactionTest < Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
super
|
8
|
+
fake("tender_transactions", method: :get, body: load_fixture('tender_transactions'))
|
9
|
+
end
|
10
|
+
|
11
|
+
context "Tender Transaction" do
|
12
|
+
should 'return a list of transactions' do
|
13
|
+
tender_transactions = ShopifyAPI::TenderTransaction.all
|
14
|
+
assert_equal(3, tender_transactions.length)
|
15
|
+
assert_equal([1, 2, 3], tender_transactions.map(&:id))
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rubygems'
|
3
|
+
require 'minitest/autorun'
|
4
|
+
require 'webmock/minitest'
|
5
|
+
require_relative 'lib/webmock_extensions/last_request'
|
6
|
+
require 'mocha/minitest'
|
7
|
+
require 'pry'
|
8
|
+
|
9
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
10
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
11
|
+
|
12
|
+
WebMock.disable_net_connect!
|
13
|
+
require 'shopify_api'
|
14
|
+
|
15
|
+
# setup ShopifyAPI with fake api_key and secret
|
16
|
+
module Test
|
17
|
+
module Unit
|
18
|
+
class TestCase < Minitest::Test
|
19
|
+
def self.test(string, &block)
|
20
|
+
define_method("test_#{string}", &block)
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.should(string, &block)
|
24
|
+
self.test("should_#{string}", &block)
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.context(_string)
|
28
|
+
yield
|
29
|
+
end
|
30
|
+
|
31
|
+
def setup
|
32
|
+
ActiveResource::Base.format = :json
|
33
|
+
ShopifyAPI.constants.each do |const|
|
34
|
+
begin
|
35
|
+
const = mod.const_get(const)
|
36
|
+
const.format = :json if const.respond_to?(:format=)
|
37
|
+
rescue NameError
|
38
|
+
# Do nothing
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
ShopifyAPI::Base.clear_session
|
43
|
+
|
44
|
+
fake("apis",
|
45
|
+
url: "https://app.shopify.com/services/apis.json",
|
46
|
+
method: :get,
|
47
|
+
status: 200,
|
48
|
+
api_version: :stub,
|
49
|
+
body: load_fixture('apis'))
|
50
|
+
|
51
|
+
ShopifyAPI::ApiVersion.fetch_known_versions
|
52
|
+
session = ShopifyAPI::Session.new(
|
53
|
+
domain: "https://this-is-my-test-shop.myshopify.com",
|
54
|
+
token: "token_test_helper",
|
55
|
+
api_version: '2019-01',
|
56
|
+
)
|
57
|
+
|
58
|
+
ShopifyAPI::Base.activate_session(session)
|
59
|
+
end
|
60
|
+
|
61
|
+
def teardown
|
62
|
+
ShopifyAPI::Base.clear_session
|
63
|
+
ShopifyAPI::Base.site = nil
|
64
|
+
ShopifyAPI::Base.password = nil
|
65
|
+
ShopifyAPI::Base.user = nil
|
66
|
+
|
67
|
+
ShopifyAPI::ApiVersion.clear_known_versions
|
68
|
+
ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown
|
69
|
+
end
|
70
|
+
|
71
|
+
# Custom Assertions
|
72
|
+
def assert_not(expression)
|
73
|
+
refute(expression, "Expected <#{expression}> to be false!")
|
74
|
+
end
|
75
|
+
|
76
|
+
def assert_nothing_raised
|
77
|
+
yield
|
78
|
+
end
|
79
|
+
|
80
|
+
def assert_not_includes(array, value)
|
81
|
+
refute(array.include?(value))
|
82
|
+
end
|
83
|
+
|
84
|
+
def assert_includes(array, value)
|
85
|
+
assert(array.include?(value))
|
86
|
+
end
|
87
|
+
|
88
|
+
def load_fixture(name, format = :json)
|
89
|
+
File.read(File.dirname(__FILE__) + "/fixtures/#{name}.#{format}")
|
90
|
+
end
|
91
|
+
|
92
|
+
def assert_request_body(expected)
|
93
|
+
assert_equal(expected, WebMock.last_request.body)
|
94
|
+
end
|
95
|
+
|
96
|
+
def fake(endpoint, options = {})
|
97
|
+
request_body = options.key?(:request_body) ? options.delete(:request_body) : nil
|
98
|
+
body = options.key?(:body) ? options.delete(:body) : load_fixture(endpoint)
|
99
|
+
format = options.delete(:format) || :json
|
100
|
+
method = options.delete(:method) || :get
|
101
|
+
api_version = options.delete(:api_version) || ShopifyAPI::ApiVersion.find_version('2019-01')
|
102
|
+
extension = ".#{options.delete(:extension) || 'json'}" unless options[:extension] == false
|
103
|
+
status = options.delete(:status) || 200
|
104
|
+
url = if options.key?(:url)
|
105
|
+
options[:url]
|
106
|
+
else
|
107
|
+
"https://this-is-my-test-shop.myshopify.com#{api_version.construct_api_path("#{endpoint}#{extension}")}"
|
108
|
+
end
|
109
|
+
|
110
|
+
stubbing = WebMock.stub_request(method, url)
|
111
|
+
stubbing = stubbing.with(body: request_body) if request_body
|
112
|
+
stubbing.to_return(
|
113
|
+
body: body, status: status, headers: { content_type: "text/#{format}", content_length: 1 }.merge(options)
|
114
|
+
)
|
115
|
+
end
|
116
|
+
|
117
|
+
def ar_version_before?(version_string)
|
118
|
+
Gem::Version.new(ActiveResource::VERSION::STRING) < Gem::Version.new(version_string)
|
119
|
+
end
|
120
|
+
|
121
|
+
def ar_version_after?(version_string)
|
122
|
+
Gem::Version.new(version_string) < Gem::Version.new(ActiveResource::VERSION::STRING)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class TransactionTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
super
|
7
|
+
fake("orders/450789469/transactions/389404469", method: :get, body: load_fixture('transaction'))
|
8
|
+
end
|
9
|
+
|
10
|
+
context "Transaction" do
|
11
|
+
context "#find" do
|
12
|
+
should "find a specific transaction" do
|
13
|
+
transaction = ShopifyAPI::Transaction.find(389404469, params: { order_id: 450789469 })
|
14
|
+
assert_equal("409.94", transaction.amount)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class UsageChargeTest < Test::Unit::TestCase
|
5
|
+
def test_create_usage_charges
|
6
|
+
fake("recurring_application_charges/654381177/usage_charges", method: :post, body: load_fixture('usage_charge'))
|
7
|
+
|
8
|
+
usage_charge = ShopifyAPI::UsageCharge.new(description: '1000 emails', price: 1.0)
|
9
|
+
usage_charge.prefix_options = { recurring_application_charge_id: 654381177 }
|
10
|
+
assert(usage_charge.save)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_get_usage_charges
|
14
|
+
fake(
|
15
|
+
"recurring_application_charges/654381177/usage_charges/359376002",
|
16
|
+
method: :get,
|
17
|
+
status: 201,
|
18
|
+
body: load_fixture('usage_charge')
|
19
|
+
)
|
20
|
+
|
21
|
+
usage_charge = ShopifyAPI::UsageCharge.find(359376002, params: { recurring_application_charge_id: 654381177 })
|
22
|
+
|
23
|
+
assert_equal("1000 emails", usage_charge.description)
|
24
|
+
end
|
25
|
+
end
|
data/test/user_test.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class UserTest < Test::Unit::TestCase
|
5
|
+
test 'get should get a user' do
|
6
|
+
fake 'users/799407056', method: :get, status: 200, body: load_fixture('user')
|
7
|
+
|
8
|
+
user = ShopifyAPI::User.find(799407056)
|
9
|
+
assert_equal 799407056, user.id
|
10
|
+
end
|
11
|
+
|
12
|
+
test 'get should get all users' do
|
13
|
+
fake 'users', method: :get, status: 200, body: load_fixture('users')
|
14
|
+
|
15
|
+
users = ShopifyAPI::User.all
|
16
|
+
assert_equal 799407056, users.first.id
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class VariantTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
super
|
7
|
+
refresh_variant
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_get_variants
|
11
|
+
fake("products/632910392/variants", method: :get, body: load_fixture('variants'))
|
12
|
+
|
13
|
+
variants = ShopifyAPI::Variant.find(:all, params: { product_id: 632910392 })
|
14
|
+
assert_equal(variants.map(&:id).sort, [39072856, 49148385, 457924702, 808950810])
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_get_variant_namespaced
|
18
|
+
assert_equal(632910392, @variant.product_id)
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_get_variant
|
22
|
+
assert_equal(632910392, @variant.product_id)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_product_id_should_be_accessible_if_via_product_endpoint
|
26
|
+
assert_equal(632910392, @variant.product_id)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_product_id_should_be_accessible_if_via_variant_endpoint
|
30
|
+
assert_equal(632910392, @variant.product_id)
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_delete_variant
|
34
|
+
fake("products/632910392/variants/808950810", method: :delete, body: 'destroyed')
|
35
|
+
assert(@variant.destroy)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_read_only_inventory_quantity
|
39
|
+
ShopifyAPI::Base.api_version = '2020-01'
|
40
|
+
refresh_variant(api_version: ShopifyAPI::Base.api_version)
|
41
|
+
assert_equal(10, @variant.inventory_quantity)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_setting_variant_inventory_quantity_adjustment_fails_in_the_unstable_api
|
45
|
+
ShopifyAPI::Base.api_version = :unstable
|
46
|
+
assert_raises(ShopifyAPI::ValidationException) do
|
47
|
+
@variant.inventory_quantity_adjustment = 8
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_setting_variant_inventory_quantity_fails_in_the_unstable_api
|
52
|
+
ShopifyAPI::Base.api_version = :unstable
|
53
|
+
assert_raises(ShopifyAPI::ValidationException) do
|
54
|
+
@variant.inventory_quantity = 8
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_setting_variant_old_inventory_quantity_fails_in_the_unstable_api
|
59
|
+
ShopifyAPI::Base.api_version = :unstable
|
60
|
+
assert_raises(ShopifyAPI::ValidationException) do
|
61
|
+
@variant.old_inventory_quantity = 8
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
private
|
66
|
+
|
67
|
+
def refresh_variant(api_version: nil)
|
68
|
+
fake(
|
69
|
+
"products/632910392/variants/808950810", method: :get, body: load_fixture('variant'), api_version: api_version
|
70
|
+
)
|
71
|
+
@variant = ShopifyAPI::Variant.find(808950810, params: { product_id: 632910392 })
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class WebhookTest < Test::Unit::TestCase
|
5
|
+
test 'create should create a webhook' do
|
6
|
+
fake('webhooks', method: :post, status: 201, body: load_fixture('webhook'))
|
7
|
+
webhook = ShopifyAPI::Webhook.create(
|
8
|
+
address: "http://www.yoloship.it/webhook", topic: "orders/create", format: "json"
|
9
|
+
)
|
10
|
+
assert_equal("http://www.yoloship.it/webhook", webhook.address)
|
11
|
+
end
|
12
|
+
|
13
|
+
test 'get should retrieve a webhook' do
|
14
|
+
fake('webhooks/123456', method: :get, status: 200, body: load_fixture('webhook'))
|
15
|
+
webhook = ShopifyAPI::Webhook.find(123456)
|
16
|
+
assert_equal("http://www.yoloship.it/webhook", webhook.address)
|
17
|
+
end
|
18
|
+
|
19
|
+
test 'find all should return all webhooks' do
|
20
|
+
fake('webhooks', method: :get, status: 200, body: load_fixture('webhooks'))
|
21
|
+
webhook = ShopifyAPI::Webhook.all
|
22
|
+
assert_equal(123456, webhook.first.id)
|
23
|
+
end
|
24
|
+
end
|