shopify_api 4.9.0 → 9.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (281) hide show
  1. checksums.yaml +5 -5
  2. data/.github/CODEOWNERS +1 -0
  3. data/.github/ISSUE_TEMPLATE.md +36 -0
  4. data/.github/probots.yml +2 -0
  5. data/.github/workflows/build.yml +41 -0
  6. data/.gitignore +5 -1
  7. data/.rubocop.yml +28 -0
  8. data/.rubocop_todo.yml +75 -0
  9. data/CHANGELOG.md +491 -0
  10. data/CONTRIBUTING.md +1 -1
  11. data/Gemfile +6 -2
  12. data/Gemfile.lock +151 -0
  13. data/Gemfile_ar41 +5 -0
  14. data/Gemfile_ar50 +5 -0
  15. data/Gemfile_ar51 +5 -0
  16. data/Gemfile_ar_master +0 -1
  17. data/README.md +492 -100
  18. data/RELEASING +10 -9
  19. data/Rakefile +21 -5
  20. data/SECURITY.md +59 -0
  21. data/docker-compose.yml +13 -0
  22. data/docs/_config.yml +1 -0
  23. data/docs/_includes/footer.html +28 -0
  24. data/docs/_includes/head.html +28 -0
  25. data/docs/_layouts/index.html +57 -0
  26. data/docs/graphql.md +241 -0
  27. data/docs/index.md +639 -0
  28. data/lib/active_resource/connection_ext.rb +1 -0
  29. data/lib/active_resource/detailed_log_subscriber.rb +43 -7
  30. data/lib/active_resource/json_errors.rb +8 -2
  31. data/lib/shopify_api.rb +16 -6
  32. data/lib/shopify_api/api_access.rb +57 -0
  33. data/lib/shopify_api/api_version.rb +206 -0
  34. data/lib/shopify_api/connection.rb +7 -4
  35. data/lib/shopify_api/countable.rb +3 -2
  36. data/lib/shopify_api/disable_prefix_check.rb +31 -0
  37. data/lib/shopify_api/events.rb +2 -1
  38. data/lib/shopify_api/graphql.rb +103 -0
  39. data/lib/shopify_api/graphql/http_client.rb +22 -0
  40. data/lib/shopify_api/graphql/railtie.rb +17 -0
  41. data/lib/shopify_api/graphql/task.rake +100 -0
  42. data/lib/shopify_api/limits.rb +9 -9
  43. data/lib/shopify_api/message_enricher.rb +25 -0
  44. data/lib/shopify_api/meta.rb +14 -0
  45. data/lib/shopify_api/metafields.rb +5 -4
  46. data/lib/shopify_api/paginated_collection.rb +69 -0
  47. data/lib/shopify_api/pagination_link_headers.rb +34 -0
  48. data/lib/shopify_api/resources.rb +3 -1
  49. data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
  50. data/lib/shopify_api/resources/access_scope.rb +10 -0
  51. data/lib/shopify_api/resources/access_token.rb +1 -0
  52. data/lib/shopify_api/resources/address.rb +1 -0
  53. data/lib/shopify_api/resources/announcement.rb +2 -1
  54. data/lib/shopify_api/resources/api_permission.rb +9 -0
  55. data/lib/shopify_api/resources/application_charge.rb +1 -0
  56. data/lib/shopify_api/resources/application_credit.rb +1 -0
  57. data/lib/shopify_api/resources/array_base.rb +13 -0
  58. data/lib/shopify_api/resources/article.rb +3 -2
  59. data/lib/shopify_api/resources/asset.rb +28 -23
  60. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
  61. data/lib/shopify_api/resources/base.rb +101 -24
  62. data/lib/shopify_api/resources/billing_address.rb +2 -1
  63. data/lib/shopify_api/resources/blog.rb +2 -1
  64. data/lib/shopify_api/resources/carrier_service.rb +1 -0
  65. data/lib/shopify_api/resources/cart.rb +2 -1
  66. data/lib/shopify_api/resources/checkout.rb +27 -1
  67. data/lib/shopify_api/resources/collect.rb +2 -0
  68. data/lib/shopify_api/resources/collection.rb +14 -0
  69. data/lib/shopify_api/resources/collection_listing.rb +11 -1
  70. data/lib/shopify_api/resources/collection_publication.rb +10 -0
  71. data/lib/shopify_api/resources/comment.rb +20 -5
  72. data/lib/shopify_api/resources/country.rb +1 -0
  73. data/lib/shopify_api/resources/currency.rb +6 -0
  74. data/lib/shopify_api/resources/custom_collection.rb +7 -6
  75. data/lib/shopify_api/resources/customer.rb +2 -1
  76. data/lib/shopify_api/resources/customer_group.rb +1 -0
  77. data/lib/shopify_api/resources/{customer_invite_message.rb → customer_invite.rb} +1 -0
  78. data/lib/shopify_api/resources/customer_saved_search.rb +4 -1
  79. data/lib/shopify_api/resources/discount_code.rb +1 -0
  80. data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
  81. data/lib/shopify_api/resources/draft_order.rb +1 -0
  82. data/lib/shopify_api/resources/draft_order_invoice.rb +1 -0
  83. data/lib/shopify_api/resources/event.rb +2 -0
  84. data/lib/shopify_api/resources/fulfillment.rb +46 -3
  85. data/lib/shopify_api/resources/fulfillment_event.rb +2 -1
  86. data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
  87. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
  88. data/lib/shopify_api/resources/fulfillment_request.rb +1 -0
  89. data/lib/shopify_api/resources/fulfillment_service.rb +1 -0
  90. data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
  91. data/lib/shopify_api/resources/gift_card.rb +1 -0
  92. data/lib/shopify_api/resources/image.rb +4 -3
  93. data/lib/shopify_api/resources/inventory_item.rb +6 -0
  94. data/lib/shopify_api/resources/inventory_level.rb +54 -0
  95. data/lib/shopify_api/resources/line_item.rb +10 -1
  96. data/lib/shopify_api/resources/location.rb +4 -0
  97. data/lib/shopify_api/resources/marketing_event.rb +3 -0
  98. data/lib/shopify_api/resources/metafield.rb +2 -0
  99. data/lib/shopify_api/resources/note_attribute.rb +1 -0
  100. data/lib/shopify_api/resources/option.rb +1 -0
  101. data/lib/shopify_api/resources/order.rb +25 -5
  102. data/lib/shopify_api/resources/order_risk.rb +1 -0
  103. data/lib/shopify_api/resources/page.rb +1 -0
  104. data/lib/shopify_api/resources/payment.rb +7 -0
  105. data/lib/shopify_api/resources/payment_details.rb +1 -0
  106. data/lib/shopify_api/resources/ping.rb +3 -0
  107. data/lib/shopify_api/resources/policy.rb +1 -0
  108. data/lib/shopify_api/resources/price_rule.rb +1 -1
  109. data/lib/shopify_api/resources/product.rb +33 -7
  110. data/lib/shopify_api/resources/product_listing.rb +9 -1
  111. data/lib/shopify_api/resources/product_publication.rb +10 -0
  112. data/lib/shopify_api/resources/province.rb +1 -0
  113. data/lib/shopify_api/resources/publication.rb +5 -0
  114. data/lib/shopify_api/resources/receipt.rb +1 -0
  115. data/lib/shopify_api/resources/recurring_application_charge.rb +4 -1
  116. data/lib/shopify_api/resources/redirect.rb +1 -0
  117. data/lib/shopify_api/resources/refund.rb +6 -4
  118. data/lib/shopify_api/resources/report.rb +1 -0
  119. data/lib/shopify_api/resources/resource_feedback.rb +1 -1
  120. data/lib/shopify_api/resources/rule.rb +1 -0
  121. data/lib/shopify_api/resources/script_tag.rb +1 -0
  122. data/lib/shopify_api/resources/shipping_address.rb +1 -0
  123. data/lib/shopify_api/resources/shipping_line.rb +2 -1
  124. data/lib/shopify_api/resources/shipping_rate.rb +7 -0
  125. data/lib/shopify_api/resources/shipping_zone.rb +1 -0
  126. data/lib/shopify_api/resources/shop.rb +10 -7
  127. data/lib/shopify_api/resources/smart_collection.rb +3 -3
  128. data/lib/shopify_api/resources/storefront_access_token.rb +1 -0
  129. data/lib/shopify_api/resources/tax_line.rb +1 -0
  130. data/lib/shopify_api/resources/tax_service.rb +1 -0
  131. data/lib/shopify_api/resources/tender_transaction.rb +6 -0
  132. data/lib/shopify_api/resources/theme.rb +1 -0
  133. data/lib/shopify_api/resources/transaction.rb +1 -0
  134. data/lib/shopify_api/resources/usage_charge.rb +1 -0
  135. data/lib/shopify_api/resources/user.rb +1 -0
  136. data/lib/shopify_api/resources/variant.rb +35 -0
  137. data/lib/shopify_api/resources/webhook.rb +1 -0
  138. data/lib/shopify_api/session.rb +109 -45
  139. data/lib/shopify_api/version.rb +2 -1
  140. data/lib/verify_docs.rb +8 -0
  141. data/service.yml +8 -0
  142. data/shopify_api.gemspec +19 -8
  143. data/test/abandoned_checkouts_test.rb +29 -0
  144. data/test/access_scope_test.rb +23 -0
  145. data/test/access_token_test.rb +6 -5
  146. data/test/active_resource/json_errors_test.rb +6 -6
  147. data/test/api_access_test.rb +153 -0
  148. data/test/api_permission_test.rb +9 -0
  149. data/test/api_version_test.rb +157 -0
  150. data/test/application_charge_test.rb +30 -27
  151. data/test/application_credit_test.rb +10 -9
  152. data/test/article_test.rb +34 -35
  153. data/test/asset_test.rb +14 -6
  154. data/test/assigned_fulfillment_order_test.rb +78 -0
  155. data/test/base_test.rb +147 -59
  156. data/test/blog_test.rb +4 -3
  157. data/test/carrier_service_test.rb +7 -6
  158. data/test/cart_test.rb +2 -1
  159. data/test/checkouts_test.rb +72 -4
  160. data/test/collect_test.rb +4 -3
  161. data/test/collection_listing_test.rb +56 -13
  162. data/test/collection_publication_test.rb +40 -0
  163. data/test/collection_test.rb +50 -0
  164. data/test/countable_test.rb +3 -2
  165. data/test/currency_test.rb +21 -0
  166. data/test/custom_collection_test.rb +4 -3
  167. data/test/customer_saved_search_test.rb +18 -8
  168. data/test/customer_test.rb +22 -14
  169. data/test/detailed_log_subscriber_test.rb +113 -19
  170. data/test/discount_code_batch_test.rb +41 -0
  171. data/test/discount_code_test.rb +22 -16
  172. data/test/draft_order_test.rb +68 -52
  173. data/test/fixtures/abandoned_checkout.json +184 -0
  174. data/test/fixtures/abandoned_checkouts.json +186 -0
  175. data/test/fixtures/access_scopes.json +10 -0
  176. data/test/fixtures/api_versions.json +38 -0
  177. data/test/fixtures/apis.json +42 -0
  178. data/test/fixtures/assigned_fulfillment_orders.json +80 -0
  179. data/test/fixtures/checkout.json +160 -0
  180. data/test/fixtures/checkouts.json +25 -49
  181. data/test/fixtures/collection.json +17 -0
  182. data/test/fixtures/collection_listing_product_ids2.json +1 -0
  183. data/test/fixtures/collection_products.json +47 -0
  184. data/test/fixtures/collection_publication.json +11 -0
  185. data/test/fixtures/collection_publications.json +13 -0
  186. data/test/fixtures/currencies.json +25 -0
  187. data/test/fixtures/discount_code_batch.json +14 -0
  188. data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
  189. data/test/fixtures/fulfillment_order.json +39 -0
  190. data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
  191. data/test/fixtures/fulfillment_orders.json +80 -0
  192. data/test/fixtures/fulfillments.json +53 -0
  193. data/test/fixtures/graphql/2019-10.json +1083 -0
  194. data/test/fixtures/graphql/dummy_schema.rb +16 -0
  195. data/test/fixtures/graphql/unstable.json +1083 -0
  196. data/test/fixtures/inventory_level.json +7 -0
  197. data/test/fixtures/inventory_levels.json +24 -0
  198. data/test/fixtures/order_with_properties.json +373 -0
  199. data/test/fixtures/payment.json +7 -0
  200. data/test/fixtures/payments.json +9 -0
  201. data/test/fixtures/ping/conversation.json +1 -0
  202. data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
  203. data/test/fixtures/ping/message.json +1 -0
  204. data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
  205. data/test/fixtures/product_listing_product_ids.json +1 -1
  206. data/test/fixtures/product_listing_product_ids2.json +1 -0
  207. data/test/fixtures/product_publication.json +11 -0
  208. data/test/fixtures/product_publications.json +13 -0
  209. data/test/fixtures/publications.json +9 -0
  210. data/test/fixtures/shipping_rates.json +12 -0
  211. data/test/fixtures/smart_collection_products.json +155 -0
  212. data/test/fixtures/tender_transactions.json +52 -0
  213. data/test/fulfillment_event_test.rb +31 -26
  214. data/test/fulfillment_order_test.rb +530 -0
  215. data/test/fulfillment_order_test_helper.rb +8 -0
  216. data/test/fulfillment_request_test.rb +10 -8
  217. data/test/fulfillment_service_test.rb +13 -12
  218. data/test/fulfillment_test.rb +198 -20
  219. data/test/fulfillment_v2_test.rb +66 -0
  220. data/test/gift_card_test.rb +6 -4
  221. data/test/graphql/http_client_test.rb +26 -0
  222. data/test/graphql_test.rb +190 -0
  223. data/test/image_test.rb +19 -17
  224. data/test/inventory_level_test.rb +68 -0
  225. data/test/lib/webmock_extensions/last_request.rb +16 -0
  226. data/test/limits_test.rb +4 -3
  227. data/test/location_test.rb +15 -0
  228. data/test/marketing_event_test.rb +21 -21
  229. data/test/message_enricher_test.rb +45 -0
  230. data/test/meta_test.rb +47 -0
  231. data/test/metafield_test.rb +30 -20
  232. data/test/order_risk_test.rb +17 -16
  233. data/test/order_test.rb +110 -17
  234. data/test/pagination_test.rb +290 -0
  235. data/test/payment_test.rb +19 -0
  236. data/test/policy_test.rb +6 -5
  237. data/test/price_rule_test.rb +20 -15
  238. data/test/product_listing_test.rb +72 -15
  239. data/test/product_publication_test.rb +40 -0
  240. data/test/product_test.rb +80 -19
  241. data/test/publication_test.rb +12 -0
  242. data/test/recurring_application_charge_test.rb +105 -50
  243. data/test/redirect_test.rb +4 -3
  244. data/test/refund_test.rb +22 -17
  245. data/test/report_test.rb +12 -10
  246. data/test/resource_feedback_test.rb +14 -13
  247. data/test/script_tag_test.rb +10 -9
  248. data/test/session_test.rb +497 -111
  249. data/test/shipping_rate_test.rb +17 -0
  250. data/test/shipping_zone_test.rb +4 -3
  251. data/test/shop_test.rb +47 -33
  252. data/test/smart_collection_test.rb +5 -4
  253. data/test/storefront_access_token_test.rb +13 -15
  254. data/test/tax_service_test.rb +7 -3
  255. data/test/tender_transaction_test.rb +18 -0
  256. data/test/test_helper.rb +98 -67
  257. data/test/transaction_test.rb +4 -3
  258. data/test/usage_charge_test.rb +12 -8
  259. data/test/user_test.rb +4 -3
  260. data/test/variant_test.rb +50 -20
  261. data/test/webhook_test.rb +10 -7
  262. metadata +196 -37
  263. data/.travis.yml +0 -36
  264. data/CHANGELOG +0 -292
  265. data/Gemfile_ar30 +0 -6
  266. data/Gemfile_ar31 +0 -6
  267. data/Gemfile_ar32 +0 -6
  268. data/Gemfile_ar40 +0 -6
  269. data/bin/shopify +0 -3
  270. data/lib/active_resource/base_ext.rb +0 -21
  271. data/lib/active_resource/disable_prefix_check.rb +0 -36
  272. data/lib/active_resource/to_query.rb +0 -10
  273. data/lib/shopify_api/json_format.rb +0 -18
  274. data/lib/shopify_api/resources/discount.rb +0 -11
  275. data/lib/shopify_api/resources/o_auth.rb +0 -9
  276. data/test/discount_test.rb +0 -52
  277. data/test/fixtures/discount.json +0 -17
  278. data/test/fixtures/discount_disabled.json +0 -17
  279. data/test/fixtures/discounts.json +0 -34
  280. data/test/fixtures/o_auth_revoke.json +0 -5
  281. data/test/o_auth_test.rb +0 -8
@@ -0,0 +1,190 @@
1
+ # frozen_string_literal: true
2
+ require 'test_helper'
3
+ require_relative 'fixtures/graphql/dummy_schema'
4
+
5
+ class GraphQLTest < Test::Unit::TestCase
6
+ def setup
7
+ ShopifyAPI::ApiVersion.version_lookup_mode = :define_on_unknown
8
+ @fixture_location = Pathname('test/fixtures/graphql')
9
+ @site = 'https://this-is-my-test-shop.myshopify.com'
10
+ ShopifyAPI::Base.site = @site
11
+ end
12
+
13
+ def teardown
14
+ ShopifyAPI::GraphQL.clear_clients
15
+ end
16
+
17
+ test '#initialize_clients creates a GraphQL::Client from local schema file' do
18
+ version_fixtures('unstable') do |_dir|
19
+ ShopifyAPI::GraphQL.initialize_clients
20
+
21
+ assert(ShopifyAPI::GraphQL.client('unstable'))
22
+ end
23
+ end
24
+
25
+ test '#initialize_clients handles multiple schema files' do
26
+ version_fixtures('unstable', '2019-10') do |_dir|
27
+ ShopifyAPI::GraphQL.initialize_clients
28
+
29
+ assert(ShopifyAPI::GraphQL.client('unstable'))
30
+ assert(ShopifyAPI::GraphQL.client('2019-10'))
31
+ end
32
+ end
33
+
34
+ test '#initialize_clients ignores non JSON schema files' do
35
+ version_fixtures('unstable', '2019-10') do |_dir|
36
+ FileUtils.touch(ShopifyAPI::GraphQL.schema_location.join('nope.txt'))
37
+
38
+ ShopifyAPI::GraphQL.initialize_clients
39
+
40
+ assert(ShopifyAPI::GraphQL.client('unstable'))
41
+ assert(ShopifyAPI::GraphQL.client('2019-10'))
42
+ end
43
+ end
44
+
45
+ test '#initialize_clients raises if a JSON schema file is not named after a version' do
46
+ version_fixtures do |dir|
47
+ ShopifyAPI::GraphQL.schema_location = dir
48
+ FileUtils.touch(ShopifyAPI::GraphQL.schema_location.join('nope.json'))
49
+
50
+ assert_raises(ShopifyAPI::GraphQL::InvalidSchema) do
51
+ ShopifyAPI::GraphQL.initialize_clients
52
+ end
53
+ end
54
+ end
55
+
56
+ test '#initialize_clients does not raise if raise_on_invalid_schema is set to false' do
57
+ version_fixtures('unstable') do |dir|
58
+ ShopifyAPI::GraphQL.schema_location = dir
59
+ FileUtils.touch(ShopifyAPI::GraphQL.schema_location.join('nope.json'))
60
+
61
+ ShopifyAPI::GraphQL.initialize_clients(raise_on_invalid_schema: false)
62
+
63
+ assert(ShopifyAPI::GraphQL.client('unstable'))
64
+ end
65
+ end
66
+
67
+ test '#client returns default schema if only one exists' do
68
+ version_fixtures('unstable') do |_dir|
69
+ ShopifyAPI::Base.api_version = 'unstable'
70
+
71
+ ShopifyAPI::GraphQL.initialize_clients
72
+
73
+ assert_instance_of(::GraphQL::Client, ShopifyAPI::GraphQL.client)
74
+ end
75
+ end
76
+
77
+ test '#client accepts optional api_version parameter' do
78
+ version_fixtures('unstable') do |_dir|
79
+ ShopifyAPI::Base.api_version = 'unstable'
80
+
81
+ ShopifyAPI::GraphQL.initialize_clients
82
+
83
+ assert_instance_of(::GraphQL::Client, ShopifyAPI::GraphQL.client('unstable'))
84
+ end
85
+ end
86
+
87
+ test '#client executes queries on specified API version' do
88
+ version_fixtures('unstable', '2019-10') do |_dir|
89
+ ShopifyAPI::Base.api_version = 'unstable'
90
+
91
+ ShopifyAPI::GraphQL.initialize_clients
92
+ ShopifyAPI::Base.site = 'https://this-is-my-test-shop.myshopify.com'
93
+
94
+ client = ShopifyAPI::GraphQL.client('2019-10')
95
+
96
+ assert_instance_of(::GraphQL::Client, client)
97
+
98
+ query = client.parse(<<~GRAPHQL)
99
+ {
100
+ product {
101
+ name
102
+ }
103
+ }
104
+ GRAPHQL
105
+
106
+ path = ShopifyAPI::ApiVersion.new('2019-10').construct_graphql_path
107
+ stub_request(:post, "#{@site}#{path}").to_return(body: { product: { name: 'Shirt' } }.to_json)
108
+
109
+ client.query(query)
110
+ end
111
+ end
112
+
113
+ test '#client raises exception for version that does not exist' do
114
+ version_fixtures('unstable') do |_dir|
115
+ ShopifyAPI::Base.api_version = '2019-10'
116
+
117
+ ShopifyAPI::GraphQL.initialize_clients
118
+
119
+ assert_raises(ShopifyAPI::GraphQL::InvalidClient) do
120
+ ShopifyAPI::GraphQL.client('2019-10')
121
+ end
122
+ end
123
+ end
124
+
125
+ test '#client lazily initializes clients' do
126
+ version_fixtures('unstable') do |_dir|
127
+ ShopifyAPI::Base.api_version = 'unstable'
128
+
129
+ assert_raises(ShopifyAPI::GraphQL::InvalidClient) do
130
+ ShopifyAPI::GraphQL.client('2019-10')
131
+ end
132
+ end
133
+ end
134
+
135
+ test '#client caches lookups' do
136
+ version_fixtures('unstable') do |_dir|
137
+ ShopifyAPI::Base.api_version = 'unstable'
138
+
139
+ client1 = ShopifyAPI::GraphQL.client
140
+ client2 = ShopifyAPI::GraphQL.client('unstable')
141
+
142
+ assert_equal(client1, client2)
143
+ end
144
+ end
145
+
146
+ test '#client creates execution adapter based off configured class' do
147
+ class SuperDuperExecutionAdapter < ShopifyAPI::GraphQL::HTTPClient
148
+ end
149
+
150
+ ShopifyAPI::GraphQL.execution_adapter = SuperDuperExecutionAdapter
151
+ version_fixtures('unstable') do |_dir|
152
+ ShopifyAPI::Base.api_version = 'unstable'
153
+
154
+ ShopifyAPI::GraphQL.initialize_clients
155
+ assert_instance_of(SuperDuperExecutionAdapter, ShopifyAPI::GraphQL.client('unstable').execute)
156
+ end
157
+
158
+ ShopifyAPI::GraphQL.execution_adapter = nil
159
+ end
160
+
161
+ test '#client creates client based off configured class' do
162
+ class SuperDuperClient < ::GraphQL::Client
163
+ end
164
+
165
+ ShopifyAPI::GraphQL.graphql_client = SuperDuperClient
166
+ version_fixtures('unstable') do |_dir|
167
+ ShopifyAPI::Base.api_version = 'unstable'
168
+
169
+ ShopifyAPI::GraphQL.initialize_clients
170
+
171
+ assert_instance_of(SuperDuperClient, ShopifyAPI::GraphQL.client('unstable'))
172
+ end
173
+
174
+ ShopifyAPI::GraphQL.clear_clients
175
+ ShopifyAPI::GraphQL.graphql_client = nil
176
+ end
177
+
178
+ private
179
+
180
+ def version_fixtures(*versions)
181
+ Dir.mktmpdir do |dir|
182
+ versions.each do |version|
183
+ FileUtils.cp(@fixture_location.join("#{version}.json"), dir)
184
+ end
185
+
186
+ ShopifyAPI::GraphQL.schema_location = dir
187
+ yield(dir)
188
+ end
189
+ end
190
+ end
data/test/image_test.rb CHANGED
@@ -1,39 +1,41 @@
1
+ # frozen_string_literal: true
1
2
  require 'test_helper'
2
3
 
3
4
  class ImageTest < Test::Unit::TestCase
4
5
  def test_create_image
5
- fake "products/632910392/images", :method => :post, :body => load_fixture('image')
6
- image = ShopifyAPI::Image.new(:product_id => 632910392)
6
+ fake("products/632910392/images", method: :post, body: load_fixture('image'))
7
+ image = ShopifyAPI::Image.new(product_id: 632910392)
7
8
  image.position = 1
8
- image.attachment = "R0lGODlhbgCMAPf/APbr48VySrxTO7IgKt2qmKQdJeK8lsFjROG5p/nz7Zg3MNmnd7Q1MLNVS9GId71hSJMZIuzTu4UtKbeEeakhKMl8U8WYjfr18YQaIbAf=="
9
+ image.attachment = "R0lGODlhbgCMAPf/APbr48VySrxTO7IgKt2qmKQdJeK8lsFjROG5p/nz7Zg3MN" \
10
+ "mnd7Q1MLNVS9GId71hSJMZIuzTu4UtKbeEeakhKMl8U8WYjfr18YQaIbAf=="
9
11
  image.save
10
12
 
11
- assert_equal 'http://cdn.shopify.com/s/files/1/0006/9093/3842/products/ipod-nano.png?v=1389388540', image.src
12
- assert_equal 850703190, image.id
13
+ assert_equal('http://cdn.shopify.com/s/files/1/0006/9093/3842/products/ipod-nano.png?v=1389388540', image.src)
14
+ assert_equal(850703190, image.id)
13
15
  end
14
16
 
15
17
  def test_get_images
16
- fake "products/632910392/images", :method => :get, :body => load_fixture('images')
17
- image = ShopifyAPI::Image.find(:all, :params => {:product_id => 632910392})
18
- assert_equal 2, image.size
18
+ fake("products/632910392/images", method: :get, body: load_fixture('images'))
19
+ image = ShopifyAPI::Image.find(:all, params: { product_id: 632910392 })
20
+ assert_equal(2, image.size)
19
21
  end
20
22
 
21
23
  def test_get_image
22
- fake "products/632910392/images/850703190", :method => :get, :body => load_fixture('image')
23
- image = ShopifyAPI::Image.find(850703190, :params => {:product_id => 632910392})
24
- assert_equal 850703190, image.id
24
+ fake("products/632910392/images/850703190", method: :get, body: load_fixture('image'))
25
+ image = ShopifyAPI::Image.find(850703190, params: { product_id: 632910392 })
26
+ assert_equal(850703190, image.id)
25
27
  end
26
28
 
27
29
  def test_delete_image
28
- fake "products/632910392/images/850703190", :method => :get, :body => load_fixture('image')
29
- fake "products/632910392/images/850703190", :method => :delete, :body => "destroyed"
30
- image = ShopifyAPI::Image.find(850703190, :params => {:product_id => 632910392})
31
- assert image.destroy
30
+ fake("products/632910392/images/850703190", method: :get, body: load_fixture('image'))
31
+ fake("products/632910392/images/850703190", method: :delete, body: "destroyed")
32
+ image = ShopifyAPI::Image.find(850703190, params: { product_id: 632910392 })
33
+ assert(image.destroy)
32
34
  end
33
35
 
34
36
  def test_delete_image_without_fetching
35
- fake "products/632910392/images/850703190", :method => :delete, :body => "destroyed"
37
+ fake("products/632910392/images/850703190", method: :delete, body: "destroyed")
36
38
  image = ShopifyAPI::Image.new(product_id: 632910392, id: 850703190)
37
- assert image.destroy
39
+ assert(image.destroy)
38
40
  end
39
41
  end
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+ require 'test_helper'
3
+
4
+ class InventoryLevelTest < Test::Unit::TestCase
5
+ def setup
6
+ super
7
+ @inventory_level_response = ActiveSupport::JSON.decode(load_fixture('inventory_level'))
8
+ @inventory_level = ShopifyAPI::InventoryLevel.new(@inventory_level_response['inventory_level'])
9
+ end
10
+
11
+ test ".find with inventory_item_ids and location_ids returns expected inventory levels" do
12
+ params = { inventory_item_ids: [808950810, 39072856], location_ids: [905684977, 487838322] }
13
+ fake(
14
+ "inventory_levels.json?#{params.to_param}",
15
+ extension: false,
16
+ method: :get,
17
+ status: 200,
18
+ body: load_fixture('inventory_levels')
19
+ )
20
+ inventory_levels = ShopifyAPI::InventoryLevel.find(:all, params: params)
21
+
22
+ assert(
23
+ inventory_levels.all? do |item|
24
+ params[:location_ids].include?(item.location_id) &&
25
+ params[:inventory_item_ids].include?(item.inventory_item_id)
26
+ end,
27
+ message: 'Response contained inventory_items or locations not requested.'
28
+ )
29
+ end
30
+
31
+ test '#adjust with adjustment value returns inventory_level with available increased by adjustment value' do
32
+ adjustment = 5
33
+ updated_available = @inventory_level.available + adjustment
34
+ @inventory_level_response[:available] = updated_available
35
+
36
+ fake('inventory_levels/adjust', method: :post, body: ActiveSupport::JSON.encode(@inventory_level_response))
37
+ @inventory_level.adjust(adjustment)
38
+ assert_equal(updated_available, @inventory_level.available)
39
+ end
40
+
41
+ test '#connect saves an inventory_level associated with inventory_item and location_id' do
42
+ params = { inventory_item_id: 808950810, location_id: 99999999 }
43
+ response = params.clone
44
+ response[:available] = 0
45
+
46
+ fake('inventory_levels/connect', method: :post, body: ActiveSupport::JSON.encode(response))
47
+ inventory_level = ShopifyAPI::InventoryLevel.new(params)
48
+ inventory_level.connect
49
+ assert_equal(0, inventory_level.available, message: 'expected newly connected location to have 0 inventory')
50
+ end
51
+
52
+ test '#destroy removes inventory_level and returns nil' do
53
+ params = { inventory_item_id: @inventory_level.inventory_item_id, location_id: @inventory_level.location_id }
54
+ fake("inventory_levels.json?#{params.to_param}", extension: false, method: :delete, status: 204, body: nil)
55
+ assert_nil(@inventory_level.destroy)
56
+ end
57
+
58
+ test '#set with available value returns inventory_level with available as the available value' do
59
+ available = 13
60
+ response = @inventory_level_response.clone
61
+ response['inventory_level']['available'] = available
62
+
63
+ fake('inventory_levels/set', method: :post, body: ActiveSupport::JSON.encode(response))
64
+ @inventory_level.set(available)
65
+
66
+ assert_equal(available, @inventory_level.available)
67
+ end
68
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module LastRequest
4
+ def last_request
5
+ @last_request
6
+ end
7
+
8
+ def last_request=(request_signature)
9
+ @last_request = request_signature
10
+ end
11
+ end
12
+
13
+ WebMock.extend(LastRequest)
14
+ WebMock.after_request do |request_signature, _response|
15
+ WebMock.last_request = request_signature
16
+ end
data/test/limits_test.rb CHANGED
@@ -1,9 +1,10 @@
1
+ # frozen_string_literal: true
1
2
  require 'test_helper'
2
3
 
3
4
  class LimitsTest < Test::Unit::TestCase
4
5
  def setup
5
6
  super
6
- @header_hash = {'http_x_shopify_shop_api_call_limit' => '100/300'}
7
+ @header_hash = { 'X-Shopify-Shop-Api-Call-Limit' => '100/300' }
7
8
  ShopifyAPI::Base.connection.expects(:response).at_least(0).returns(@header_hash)
8
9
  end
9
10
 
@@ -22,7 +23,7 @@ class LimitsTest < Test::Unit::TestCase
22
23
 
23
24
  should "flag maxed out credits" do
24
25
  assert !ShopifyAPI.maxed?
25
- @header_hash = {'http_x_shopify_shop_api_call_limit' => '299/300'}
26
+ @header_hash = { 'X-Shopify-Shop-Api-Call-Limit' => '299/300' }
26
27
  ShopifyAPI::Base.connection.expects(:response).at_least(1).returns(@header_hash)
27
28
  assert ShopifyAPI.maxed?
28
29
  end
@@ -30,7 +31,7 @@ class LimitsTest < Test::Unit::TestCase
30
31
  should "raise error when header doesn't exist" do
31
32
  @header_hash = {}
32
33
  ShopifyAPI::Base.connection.expects(:response).at_least(1).returns(@header_hash)
33
- assert_raises ShopifyAPI::Limits::LimitUnavailable do
34
+ assert_raises(ShopifyAPI::Limits::LimitUnavailable) do
34
35
  ShopifyAPI.credit_left
35
36
  end
36
37
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+ require 'test_helper'
3
+
4
+ class LocationTest < Test::Unit::TestCase
5
+ test '#inventory_levels returns all inventory_levels associated with this location' do
6
+ location = ShopifyAPI::Location.new(id: 487838322)
7
+ expected_body = JSON.parse(load_fixture('inventory_levels'))
8
+ expected_body['inventory_levels'].delete_if { |level| level['location_id'] != location.id }
9
+ fake "locations/#{location.id}/inventory_levels", method: :get, status: 200, body: JSON(expected_body).to_s
10
+ inventory_levels = location.inventory_levels
11
+
12
+ assert inventory_levels.all? { |item| item.location_id == location.id },
13
+ message: 'Response contained locations other than the current location.'
14
+ end
15
+ end
@@ -1,56 +1,56 @@
1
+ # frozen_string_literal: true
1
2
  require 'test_helper'
2
3
 
3
4
  class MarketingEventTest < Test::Unit::TestCase
4
-
5
5
  def test_get_marketing_events
6
- fake "marketing_events", :method => :get, :body => load_fixture('marketing_events')
6
+ fake("marketing_events", method: :get, body: load_fixture('marketing_events'))
7
7
  marketing_events = ShopifyAPI::MarketingEvent.all
8
- assert_equal 2, marketing_events.size
8
+ assert_equal(2, marketing_events.size)
9
9
  end
10
10
 
11
11
  def test_get_marketing_event
12
- fake "marketing_events/1", :method => :get, :body => load_fixture('marketing_event')
12
+ fake("marketing_events/1", method: :get, body: load_fixture('marketing_event'))
13
13
  marketing_event = ShopifyAPI::MarketingEvent.find(1)
14
- assert_equal 1, marketing_event.id
14
+ assert_equal(1, marketing_event.id)
15
15
  end
16
16
 
17
17
  def test_create_marketing_event
18
- fake "marketing_events", :method => :post, :body => load_fixture('marketing_event')
18
+ fake("marketing_events", method: :post, body: load_fixture('marketing_event'))
19
19
  marketing_event = ShopifyAPI::MarketingEvent.new
20
20
  marketing_event.currency_code = 'GBP'
21
21
  marketing_event.event_target = 'facebook'
22
22
  marketing_event.event_type = 'post'
23
23
  marketing_event.save
24
24
 
25
- assert_equal 'facebook', marketing_event.event_target
26
- assert_equal 1, marketing_event.id
25
+ assert_equal('facebook', marketing_event.event_target)
26
+ assert_equal(1, marketing_event.id)
27
27
  end
28
28
 
29
29
  def test_delete_marketing_event
30
- fake "marketing_events/1", :method => :get, :body => load_fixture('marketing_event')
31
- fake "marketing_events/1", :method => :delete, :body => "destroyed"
30
+ fake("marketing_events/1", method: :get, body: load_fixture('marketing_event'))
31
+ fake("marketing_events/1", method: :delete, body: "destroyed")
32
32
  marketing_event = ShopifyAPI::MarketingEvent.find(1)
33
- assert marketing_event.destroy
33
+ assert(marketing_event.destroy)
34
34
  end
35
35
 
36
36
  def test_update_marketing_event
37
- fake 'marketing_events/1', :method => :get, :status => 200, :body => load_fixture('marketing_event')
37
+ fake('marketing_events/1', method: :get, status: 200, body: load_fixture('marketing_event'))
38
38
  marketing_event = ShopifyAPI::MarketingEvent.find(1)
39
39
  marketing_event.currency = 'USD'
40
- fake 'marketing_events/1', :method => :put, :status => 200, :body => load_fixture('marketing_event')
41
- assert marketing_event.save
40
+ fake('marketing_events/1', method: :put, status: 200, body: load_fixture('marketing_event'))
41
+ assert(marketing_event.save)
42
42
  end
43
43
 
44
44
  def test_count_marketing_events
45
- fake "marketing_events/count", :method => :get, :body => '{"count": 2}'
46
- marketing_events_count = ShopifyAPI::MarketingEvent.get(:count)
47
- assert_equal 2, marketing_events_count
45
+ fake("marketing_events/count", method: :get, body: '{"count": 2}')
46
+ marketing_events_count = ShopifyAPI::MarketingEvent.count
47
+ assert_equal(2, marketing_events_count)
48
48
  end
49
49
 
50
50
  def test_add_engagements
51
- fake "marketing_events/1", method: :get, body: load_fixture('marketing_event')
51
+ fake("marketing_events/1", method: :get, body: load_fixture('marketing_event'))
52
52
  marketing_event = ShopifyAPI::MarketingEvent.find(1)
53
- fake "marketing_events/1/engagements", method: :post, status: 201, body: load_fixture('engagement')
53
+ fake("marketing_events/1/engagements", method: :post, status: 201, body: load_fixture('engagement'))
54
54
  engagement = {
55
55
  occurred_on: "2017-04-20",
56
56
  impressions_count: nil,
@@ -60,9 +60,9 @@ class MarketingEventTest < Test::Unit::TestCase
60
60
  favorites_count: nil,
61
61
  comments_count: nil,
62
62
  ad_spend: nil,
63
- is_cumulative: true
63
+ is_cumulative: true,
64
64
  }
65
65
  marketing_event.add_engagements(engagement)
66
- assert "2017-04-20", engagement[:occurred_on]
66
+ assert("2017-04-20", engagement[:occurred_on])
67
67
  end
68
68
  end