solidus_easypost 2.0.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -0
- data/.github/stale.yml +4 -4
- data/.github_changelog_generator +2 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +3 -0
- data/.rubocop_todo.yml +12 -47
- data/CHANGELOG.md +113 -0
- data/LICENSE +1 -1
- data/README.md +111 -21
- data/app/controllers/spree/admin/postage_labels_controller.rb +20 -0
- data/app/decorators/models/solidus_easypost/spree/carton_decorator.rb +38 -0
- data/app/decorators/models/solidus_easypost/spree/shipment_decorator.rb +18 -23
- data/app/models/solidus_easypost/parcel_dimension.rb +34 -0
- data/app/models/solidus_easypost/return_authorization.rb +2 -13
- data/app/overrides/spree/admin/orders/_shipment/add_postage_label.html.erb.deface +10 -0
- data/bin/rails +0 -1
- data/bin/rails-engine +0 -2
- data/bin/rails-sandbox +1 -2
- data/bin/sandbox +2 -0
- data/config/initializers/webhooks.rb +7 -0
- data/config/locales/en.yml +7 -4
- data/config/routes.rb +5 -1
- data/db/migrate/20201025110912_add_tracker_id_to_cartons.rb +6 -0
- data/lib/generators/solidus_easypost/install/install_generator.rb +7 -1
- data/lib/generators/solidus_easypost/install/templates/initializer.rb +26 -0
- data/lib/solidus_easypost/address_builder.rb +45 -0
- data/lib/solidus_easypost/calculator/base_dimension_calculator.rb +28 -0
- data/lib/solidus_easypost/calculator/weight_dimension_calculator.rb +22 -0
- data/lib/solidus_easypost/configuration.rb +25 -2
- data/lib/solidus_easypost/errors/unknown_partial_resource_error.rb +11 -0
- data/lib/solidus_easypost/estimator.rb +37 -0
- data/lib/solidus_easypost/parcel_builder.rb +27 -0
- data/lib/solidus_easypost/shipment_builder.rb +32 -0
- data/lib/solidus_easypost/shipping_method_selector.rb +17 -0
- data/lib/solidus_easypost/shipping_rate_calculator.rb +9 -0
- data/lib/solidus_easypost/testing_support/factories/address_factory.rb +10 -0
- data/lib/solidus_easypost/testing_support/factories/product_factory.rb +7 -0
- data/lib/solidus_easypost/testing_support/factories/shipment_factory.rb +30 -0
- data/lib/solidus_easypost/testing_support/factories/shipping_method_factory.rb +8 -0
- data/lib/solidus_easypost/testing_support/factories/stock_location_factory.rb +10 -0
- data/lib/solidus_easypost/testing_support/factories/variant_factory.rb +7 -0
- data/lib/solidus_easypost/testing_support/factories.rb +3 -0
- data/lib/solidus_easypost/tracker_webhook_handler.rb +14 -0
- data/lib/solidus_easypost/version.rb +1 -1
- data/lib/solidus_easypost.rb +11 -0
- data/solidus_easypost.gemspec +8 -5
- data/spec/cassettes/{Spree_Address/_easypost_address/is_an_EasyPost_Address_object.yml → address_builder/from_address.yml} +19 -23
- data/spec/cassettes/{Spree_StockLocation/_easypost_address/is_an_EasyPost_Address_object.yml → address_builder/from_stock_location.yml} +19 -23
- data/spec/cassettes/{Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_front_end_visible/has_the_correct_costs.yml → estimator.yml} +0 -0
- data/spec/cassettes/integration/checkout.yml +377 -0
- data/spec/cassettes/integration/order_shipping/with_purchase_labels.yml +373 -0
- data/spec/cassettes/integration/order_shipping/without_purchase_labels.yml +251 -0
- data/spec/cassettes/{Spree_Stock_Package/_easypost_parcel/is_an_EasyPost_Parcel_object.yml → parcel_builder/from_package.yml} +17 -22
- data/spec/cassettes/{Spree_Stock_Package/_easypost_parcel/has_the_correct_attributes.yml → parcel_builder/from_return_authorization.yml} +17 -22
- data/spec/cassettes/postage_labels/show.yml +72 -0
- data/spec/cassettes/return_authorization.yml +310 -0
- data/spec/cassettes/{Spree_Stock_Package/_easypost_shipment/is_an_EasyPost_Shipment_object.yml → shipment_builder/from_package.yml} +74 -92
- data/spec/cassettes/{Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/create_no_new_shipping_methods.yml → shipment_builder/from_return_authorization.yml} +77 -95
- data/spec/cassettes/shipment_builder/from_shipment.yml +250 -0
- data/spec/controllers/spree/admin/postage_labels_controller_spec.rb +18 -0
- data/spec/features/admin/postage_labels_spec.rb +18 -0
- data/spec/integration/checkout_spec.rb +45 -0
- data/spec/integration/order_shipping_spec.rb +33 -0
- data/spec/models/solidus_easypost/parcel_dimension_spec.rb +80 -0
- data/spec/models/solidus_easypost/return_authorization_spec.rb +7 -40
- data/spec/models/spree/carton_spec.rb +57 -0
- data/spec/models/spree/shipment_spec.rb +48 -59
- data/spec/models/spree/shipping_rate_spec.rb +14 -7
- data/spec/solidus_easypost/address_builder_spec.rb +17 -0
- data/spec/solidus_easypost/calculator/weight_dimension_calculator_spec.rb +39 -0
- data/spec/solidus_easypost/estimator_spec.rb +52 -0
- data/spec/solidus_easypost/parcel_builder_spec.rb +113 -0
- data/spec/solidus_easypost/shipment_builder_spec.rb +28 -0
- data/spec/solidus_easypost/shipping_method_selector_spec.rb +33 -0
- data/spec/solidus_easypost/shipping_rate_calculator_spec.rb +12 -0
- data/spec/solidus_easypost/tracker_webhook_handler_spec.rb +58 -0
- data/spec/spec_helper.rb +11 -7
- data/spec/support/easypost.rb +3 -1
- data/spec/support/helpers/api_stubs.rb +40 -0
- data/spec/support/helpers/configuration.rb +28 -0
- data/spec/support/helpers/shipping_methods.rb +26 -0
- data/spec/support/solidus.rb +1 -0
- data/spec/support/vcr.rb +1 -0
- metadata +118 -85
- data/app/decorators/models/solidus_easypost/spree/address_decorator.rb +0 -30
- data/app/decorators/models/solidus_easypost/spree/stock/estimator_decorator.rb +0 -15
- data/app/decorators/models/solidus_easypost/spree/stock/package_decorator.rb +0 -27
- data/app/decorators/models/solidus_easypost/spree/stock_location_decorator.rb +0 -26
- data/app/models/solidus_easypost/estimator.rb +0 -51
- data/lib/solidus_easypost/factories.rb +0 -24
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_easypost_shipment/is_an_EasyPost_Shipment_object.yml +0 -271
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_return_label/has_the_correct_fields.yml +0 -336
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_return_label/is_an_EasyPost_PackageLabel_object.yml +0 -336
- data/spec/cassettes/Spree_Address/_easypost_address/has_the_correct_attributes.yml +0 -69
- data/spec/cassettes/Spree_Order/_refresh_shipment_rates/can_get_rates_from_easy_post.yml +0 -271
- data/spec/cassettes/Spree_Order/_refresh_shipment_rates/create_shipping_methods_for_the_rates.yml +0 -269
- data/spec/cassettes/Spree_Shipment/_buys_a_shipping_rate_after_transitioning_to_ship.yml +0 -403
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/behaves_like_an_easypost_shipment/is_an_EasyPost_Shipment_object.yml +0 -271
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/calls_the_api.yml +0 -200
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_an_existing_shipment/behaves_like_an_easypost_shipment/is_an_EasyPost_Shipment_object.yml +0 -334
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_an_existing_shipment/loads_the_existing_shipment.yml +0 -271
- data/spec/cassettes/Spree_StockLocation/_easypost_address/has_the_correct_attributes.yml +0 -69
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_dont_exist/creates_new_shipping_methods.yml +0 -269
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_dont_exist/is_empty.yml +0 -269
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_front_end_visible/has_the_correct_names.yml +0 -269
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_not_front_end_visible/is_empty.yml +0 -269
- data/spec/cassettes/Spree_Stock_Package/_easypost_shipment/calls_the_api.yml +0 -200
- data/spec/factories/spree_modification.rb +0 -25
- data/spec/models/spree/address_spec.rb +0 -31
- data/spec/models/spree/order_spec.rb +0 -31
- data/spec/models/spree/stock/estimator_spec.rb +0 -80
- data/spec/models/spree/stock/package_spec.rb +0 -35
- data/spec/models/spree/stock_location_spec.rb +0 -31
- data/spec/support/shipping_method_helpers.rb +0 -43
@@ -1,271 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://api.easypost.com/v2/addresses
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: address[street1]=A%20Different%20Road&address[street2]=Northwest&address[city]=Manville&address[zip]=08835&address[phone]=555-555-0199&address[company]=Company&address[name]=John%20Doe&address[state]=NJ&address[country]=US
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- "*/*"
|
12
|
-
User-Agent:
|
13
|
-
- EasyPost/v2 RubyClient/3.0.1
|
14
|
-
Authorization:
|
15
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Content-Length:
|
19
|
-
- '222'
|
20
|
-
Accept-Encoding:
|
21
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
22
|
-
Host:
|
23
|
-
- api.easypost.com
|
24
|
-
response:
|
25
|
-
status:
|
26
|
-
code: 201
|
27
|
-
message: Created
|
28
|
-
headers:
|
29
|
-
X-Frame-Options:
|
30
|
-
- SAMEORIGIN
|
31
|
-
X-Xss-Protection:
|
32
|
-
- 1; mode=block
|
33
|
-
X-Content-Type-Options:
|
34
|
-
- nosniff
|
35
|
-
X-Ep-Request-Uuid:
|
36
|
-
- 43c6543d5dca6f0bee70cd3000010d3f
|
37
|
-
Cache-Control:
|
38
|
-
- no-cache, no-store, must-revalidate, private
|
39
|
-
Pragma:
|
40
|
-
- no-cache
|
41
|
-
Expires:
|
42
|
-
- '0'
|
43
|
-
Location:
|
44
|
-
- "/api/v2/addresses/adr_e724013a44f34ee9ad906d02cf3a3c30"
|
45
|
-
Content-Type:
|
46
|
-
- application/json; charset=utf-8
|
47
|
-
X-Runtime:
|
48
|
-
- '0.030161'
|
49
|
-
Transfer-Encoding:
|
50
|
-
- chunked
|
51
|
-
X-Node:
|
52
|
-
- bigweb4sj
|
53
|
-
X-Version-Label:
|
54
|
-
- easypost-201911120131-f5c72b1880-master
|
55
|
-
X-Backend:
|
56
|
-
- easypost
|
57
|
-
X-Proxied:
|
58
|
-
- extlb2wdc 2744487620
|
59
|
-
- intlb1wdc ff5a2958df
|
60
|
-
- intlb2sj ff5a2958df
|
61
|
-
Strict-Transport-Security:
|
62
|
-
- max-age=15768000; includeSubDomains; preload
|
63
|
-
body:
|
64
|
-
encoding: ASCII-8BIT
|
65
|
-
string: '{"id":"adr_e724013a44f34ee9ad906d02cf3a3c30","object":"Address","created_at":"2019-11-12T08:36:27Z","updated_at":"2019-11-12T08:36:27Z","name":"John
|
66
|
-
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
67
|
-
http_version:
|
68
|
-
recorded_at: Tue, 12 Nov 2019 08:36:28 GMT
|
69
|
-
- request:
|
70
|
-
method: post
|
71
|
-
uri: https://api.easypost.com/v2/addresses
|
72
|
-
body:
|
73
|
-
encoding: UTF-8
|
74
|
-
string: address[street1]=131%20S%208th%20Ave&address[city]=Manville&address[zip]=08835&address[phone]=(202)%20456-1111&address[name]=NY%20Warehouse&address[company]=NY%20Warehouse&address[state]=NJ&address[country]=US
|
75
|
-
headers:
|
76
|
-
Accept:
|
77
|
-
- "*/*"
|
78
|
-
User-Agent:
|
79
|
-
- EasyPost/v2 RubyClient/3.0.1
|
80
|
-
Authorization:
|
81
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
82
|
-
Content-Type:
|
83
|
-
- application/x-www-form-urlencoded
|
84
|
-
Content-Length:
|
85
|
-
- '209'
|
86
|
-
Accept-Encoding:
|
87
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
88
|
-
Host:
|
89
|
-
- api.easypost.com
|
90
|
-
response:
|
91
|
-
status:
|
92
|
-
code: 201
|
93
|
-
message: Created
|
94
|
-
headers:
|
95
|
-
X-Frame-Options:
|
96
|
-
- SAMEORIGIN
|
97
|
-
X-Xss-Protection:
|
98
|
-
- 1; mode=block
|
99
|
-
X-Content-Type-Options:
|
100
|
-
- nosniff
|
101
|
-
X-Ep-Request-Uuid:
|
102
|
-
- 43c6543d5dca6f0cee737a4e00010d50
|
103
|
-
Cache-Control:
|
104
|
-
- no-cache, no-store, must-revalidate, private
|
105
|
-
Pragma:
|
106
|
-
- no-cache
|
107
|
-
Expires:
|
108
|
-
- '0'
|
109
|
-
Location:
|
110
|
-
- "/api/v2/addresses/adr_2ea946eea33445df8b45eeab0b8a98a4"
|
111
|
-
Content-Type:
|
112
|
-
- application/json; charset=utf-8
|
113
|
-
X-Runtime:
|
114
|
-
- '0.030622'
|
115
|
-
Transfer-Encoding:
|
116
|
-
- chunked
|
117
|
-
X-Node:
|
118
|
-
- bigweb2sj
|
119
|
-
X-Version-Label:
|
120
|
-
- easypost-201911120131-f5c72b1880-master
|
121
|
-
X-Backend:
|
122
|
-
- easypost
|
123
|
-
X-Proxied:
|
124
|
-
- extlb2wdc 2744487620
|
125
|
-
- intlb2sj ff5a2958df
|
126
|
-
- intlb2wdc ff5a2958df
|
127
|
-
Strict-Transport-Security:
|
128
|
-
- max-age=15768000; includeSubDomains; preload
|
129
|
-
body:
|
130
|
-
encoding: ASCII-8BIT
|
131
|
-
string: '{"id":"adr_2ea946eea33445df8b45eeab0b8a98a4","object":"Address","created_at":"2019-11-12T08:36:28Z","updated_at":"2019-11-12T08:36:28Z","name":"NY
|
132
|
-
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
133
|
-
http_version:
|
134
|
-
recorded_at: Tue, 12 Nov 2019 08:36:28 GMT
|
135
|
-
- request:
|
136
|
-
method: post
|
137
|
-
uri: https://api.easypost.com/v2/parcels
|
138
|
-
body:
|
139
|
-
encoding: UTF-8
|
140
|
-
string: parcel[weight]=10.0
|
141
|
-
headers:
|
142
|
-
Accept:
|
143
|
-
- "*/*"
|
144
|
-
User-Agent:
|
145
|
-
- EasyPost/v2 RubyClient/3.0.1
|
146
|
-
Authorization:
|
147
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
148
|
-
Content-Type:
|
149
|
-
- application/x-www-form-urlencoded
|
150
|
-
Content-Length:
|
151
|
-
- '19'
|
152
|
-
Accept-Encoding:
|
153
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
154
|
-
Host:
|
155
|
-
- api.easypost.com
|
156
|
-
response:
|
157
|
-
status:
|
158
|
-
code: 201
|
159
|
-
message: Created
|
160
|
-
headers:
|
161
|
-
X-Frame-Options:
|
162
|
-
- SAMEORIGIN
|
163
|
-
X-Xss-Protection:
|
164
|
-
- 1; mode=block
|
165
|
-
X-Content-Type-Options:
|
166
|
-
- nosniff
|
167
|
-
X-Ep-Request-Uuid:
|
168
|
-
- 43c6543d5dca6f0dee70408c00010d5d
|
169
|
-
Cache-Control:
|
170
|
-
- no-cache, no-store, must-revalidate, private
|
171
|
-
Pragma:
|
172
|
-
- no-cache
|
173
|
-
Expires:
|
174
|
-
- '0'
|
175
|
-
Location:
|
176
|
-
- "/api/v2/parcels/prcl_36974732824e4bfe843d16c39c23bb43"
|
177
|
-
Content-Type:
|
178
|
-
- application/json; charset=utf-8
|
179
|
-
X-Runtime:
|
180
|
-
- '0.063805'
|
181
|
-
Transfer-Encoding:
|
182
|
-
- chunked
|
183
|
-
X-Node:
|
184
|
-
- bigweb7sj
|
185
|
-
X-Version-Label:
|
186
|
-
- easypost-201911120131-f5c72b1880-master
|
187
|
-
X-Backend:
|
188
|
-
- easypost
|
189
|
-
X-Canary:
|
190
|
-
- direct
|
191
|
-
X-Proxied:
|
192
|
-
- extlb2wdc 2744487620
|
193
|
-
- intlb1wdc ff5a2958df
|
194
|
-
- intlb2sj ff5a2958df
|
195
|
-
Strict-Transport-Security:
|
196
|
-
- max-age=15768000; includeSubDomains; preload
|
197
|
-
body:
|
198
|
-
encoding: ASCII-8BIT
|
199
|
-
string: '{"id":"prcl_36974732824e4bfe843d16c39c23bb43","object":"Parcel","created_at":"2019-11-12T08:36:29Z","updated_at":"2019-11-12T08:36:29Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"}'
|
200
|
-
http_version:
|
201
|
-
recorded_at: Tue, 12 Nov 2019 08:36:29 GMT
|
202
|
-
- request:
|
203
|
-
method: post
|
204
|
-
uri: https://api.easypost.com/v2/shipments
|
205
|
-
body:
|
206
|
-
encoding: UTF-8
|
207
|
-
string: shipment[to_address][id]=adr_e724013a44f34ee9ad906d02cf3a3c30&shipment[from_address][id]=adr_2ea946eea33445df8b45eeab0b8a98a4&shipment[parcel][id]=prcl_36974732824e4bfe843d16c39c23bb43
|
208
|
-
headers:
|
209
|
-
Accept:
|
210
|
-
- "*/*"
|
211
|
-
User-Agent:
|
212
|
-
- EasyPost/v2 RubyClient/3.0.1
|
213
|
-
Authorization:
|
214
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
215
|
-
Content-Type:
|
216
|
-
- application/x-www-form-urlencoded
|
217
|
-
Content-Length:
|
218
|
-
- '184'
|
219
|
-
Accept-Encoding:
|
220
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
221
|
-
Host:
|
222
|
-
- api.easypost.com
|
223
|
-
response:
|
224
|
-
status:
|
225
|
-
code: 201
|
226
|
-
message: Created
|
227
|
-
headers:
|
228
|
-
X-Frame-Options:
|
229
|
-
- SAMEORIGIN
|
230
|
-
X-Xss-Protection:
|
231
|
-
- 1; mode=block
|
232
|
-
X-Content-Type-Options:
|
233
|
-
- nosniff
|
234
|
-
X-Ep-Request-Uuid:
|
235
|
-
- 43c6543d5dca6f0dee82d00500010d6b
|
236
|
-
Cache-Control:
|
237
|
-
- no-cache, no-store, must-revalidate, private
|
238
|
-
Pragma:
|
239
|
-
- no-cache
|
240
|
-
Expires:
|
241
|
-
- '0'
|
242
|
-
Location:
|
243
|
-
- "/api/v2/shipments/shp_6d2db70517ce4ee3a4071f448a6cc5b2"
|
244
|
-
Content-Type:
|
245
|
-
- application/json; charset=utf-8
|
246
|
-
X-Runtime:
|
247
|
-
- '0.236361'
|
248
|
-
Transfer-Encoding:
|
249
|
-
- chunked
|
250
|
-
X-Node:
|
251
|
-
- bigweb10sj
|
252
|
-
X-Version-Label:
|
253
|
-
- easypost-201911120131-f5c72b1880-master
|
254
|
-
X-Backend:
|
255
|
-
- easypost
|
256
|
-
X-Proxied:
|
257
|
-
- extlb2wdc 2744487620
|
258
|
-
- intlb1sj ff5a2958df
|
259
|
-
- intlb1wdc ff5a2958df
|
260
|
-
Strict-Transport-Security:
|
261
|
-
- max-age=15768000; includeSubDomains; preload
|
262
|
-
body:
|
263
|
-
encoding: ASCII-8BIT
|
264
|
-
string: '{"created_at":"2019-11-12T08:36:30Z","is_return":false,"messages":[],"mode":"test","options":{"currency":"USD","payment":{"type":"SENDER"},"label_date":null,"date_advance":0},"reference":null,"status":"unknown","tracking_code":null,"updated_at":"2019-11-12T08:36:30Z","batch_id":null,"batch_status":null,"batch_message":null,"customs_info":null,"from_address":{"id":"adr_2ea946eea33445df8b45eeab0b8a98a4","object":"Address","created_at":"2019-11-12T08:36:28Z","updated_at":"2019-11-12T08:36:28Z","name":"NY
|
265
|
-
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"insurance":null,"order_id":null,"parcel":{"id":"prcl_36974732824e4bfe843d16c39c23bb43","object":"Parcel","created_at":"2019-11-12T08:36:29Z","updated_at":"2019-11-12T08:36:29Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"},"postage_label":null,"rates":[{"id":"rate_5b417ec41a384f99b0e01a144ce688bb","object":"Rate","created_at":"2019-11-12T08:36:30Z","updated_at":"2019-11-12T08:36:30Z","mode":"test","service":"ParcelSelect","carrier":"USPS","rate":"6.85","currency":"USD","retail_rate":"6.85","retail_currency":"USD","list_rate":"6.85","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_6d2db70517ce4ee3a4071f448a6cc5b2","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_bb39c5c3632543528c701e77e8371d5b","object":"Rate","created_at":"2019-11-12T08:36:30Z","updated_at":"2019-11-12T08:36:30Z","mode":"test","service":"Express","carrier":"USPS","rate":"22.74","currency":"USD","retail_rate":"25.60","retail_currency":"USD","list_rate":"22.74","list_currency":"USD","delivery_days":null,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":null,"shipment_id":"shp_6d2db70517ce4ee3a4071f448a6cc5b2","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_8b7cacda0a994d3682e44103911de952","object":"Rate","created_at":"2019-11-12T08:36:30Z","updated_at":"2019-11-12T08:36:30Z","mode":"test","service":"Priority","carrier":"USPS","rate":"6.95","currency":"USD","retail_rate":"7.35","retail_currency":"USD","list_rate":"6.95","list_currency":"USD","delivery_days":1,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":1,"shipment_id":"shp_6d2db70517ce4ee3a4071f448a6cc5b2","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_d0f8b2d94eb7453e912ee8eb825ee470","object":"Rate","created_at":"2019-11-12T08:36:30Z","updated_at":"2019-11-12T08:36:30Z","mode":"test","service":"First","carrier":"USPS","rate":"3.82","currency":"USD","retail_rate":"5.19","retail_currency":"USD","list_rate":"3.82","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_6d2db70517ce4ee3a4071f448a6cc5b2","carrier_account_id":"ca_mtb51Ve0"}],"refund_status":null,"scan_form":null,"selected_rate":null,"tracker":null,"to_address":{"id":"adr_e724013a44f34ee9ad906d02cf3a3c30","object":"Address","created_at":"2019-11-12T08:36:27Z","updated_at":"2019-11-12T08:36:27Z","name":"John
|
266
|
-
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"usps_zone":1,"return_address":{"id":"adr_2ea946eea33445df8b45eeab0b8a98a4","object":"Address","created_at":"2019-11-12T08:36:28Z","updated_at":"2019-11-12T08:36:28Z","name":"NY
|
267
|
-
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"buyer_address":{"id":"adr_e724013a44f34ee9ad906d02cf3a3c30","object":"Address","created_at":"2019-11-12T08:36:27Z","updated_at":"2019-11-12T08:36:27Z","name":"John
|
268
|
-
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"forms":[],"fees":[],"id":"shp_6d2db70517ce4ee3a4071f448a6cc5b2","object":"Shipment"}'
|
269
|
-
http_version:
|
270
|
-
recorded_at: Tue, 12 Nov 2019 08:36:30 GMT
|
271
|
-
recorded_with: VCR 5.0.0
|
data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/calls_the_api.yml
DELETED
@@ -1,200 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://api.easypost.com/v2/addresses
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: address[street1]=A%20Different%20Road&address[street2]=Northwest&address[city]=Manville&address[zip]=08835&address[phone]=555-555-0199&address[company]=Company&address[name]=John%20Doe&address[state]=NJ&address[country]=US
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- "*/*"
|
12
|
-
User-Agent:
|
13
|
-
- EasyPost/v2 RubyClient/3.0.1
|
14
|
-
Authorization:
|
15
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Content-Length:
|
19
|
-
- '222'
|
20
|
-
Accept-Encoding:
|
21
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
22
|
-
Host:
|
23
|
-
- api.easypost.com
|
24
|
-
response:
|
25
|
-
status:
|
26
|
-
code: 201
|
27
|
-
message: Created
|
28
|
-
headers:
|
29
|
-
X-Frame-Options:
|
30
|
-
- SAMEORIGIN
|
31
|
-
X-Xss-Protection:
|
32
|
-
- 1; mode=block
|
33
|
-
X-Content-Type-Options:
|
34
|
-
- nosniff
|
35
|
-
X-Ep-Request-Uuid:
|
36
|
-
- 43c6543d5dca6f09ee72826c00010d16
|
37
|
-
Cache-Control:
|
38
|
-
- no-cache, no-store, must-revalidate, private
|
39
|
-
Pragma:
|
40
|
-
- no-cache
|
41
|
-
Expires:
|
42
|
-
- '0'
|
43
|
-
Location:
|
44
|
-
- "/api/v2/addresses/adr_35ee741b769c4fe089e15f26a5355de8"
|
45
|
-
Content-Type:
|
46
|
-
- application/json; charset=utf-8
|
47
|
-
X-Runtime:
|
48
|
-
- '0.029900'
|
49
|
-
Transfer-Encoding:
|
50
|
-
- chunked
|
51
|
-
X-Node:
|
52
|
-
- bigweb2sj
|
53
|
-
X-Version-Label:
|
54
|
-
- easypost-201911120131-f5c72b1880-master
|
55
|
-
X-Backend:
|
56
|
-
- easypost
|
57
|
-
X-Proxied:
|
58
|
-
- extlb2wdc 2744487620
|
59
|
-
- intlb1wdc ff5a2958df
|
60
|
-
- intlb2sj ff5a2958df
|
61
|
-
Strict-Transport-Security:
|
62
|
-
- max-age=15768000; includeSubDomains; preload
|
63
|
-
body:
|
64
|
-
encoding: ASCII-8BIT
|
65
|
-
string: '{"id":"adr_35ee741b769c4fe089e15f26a5355de8","object":"Address","created_at":"2019-11-12T08:36:25Z","updated_at":"2019-11-12T08:36:25Z","name":"John
|
66
|
-
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
67
|
-
http_version:
|
68
|
-
recorded_at: Tue, 12 Nov 2019 08:36:25 GMT
|
69
|
-
- request:
|
70
|
-
method: post
|
71
|
-
uri: https://api.easypost.com/v2/addresses
|
72
|
-
body:
|
73
|
-
encoding: UTF-8
|
74
|
-
string: address[street1]=131%20S%208th%20Ave&address[city]=Manville&address[zip]=08835&address[phone]=(202)%20456-1111&address[name]=NY%20Warehouse&address[company]=NY%20Warehouse&address[state]=NJ&address[country]=US
|
75
|
-
headers:
|
76
|
-
Accept:
|
77
|
-
- "*/*"
|
78
|
-
User-Agent:
|
79
|
-
- EasyPost/v2 RubyClient/3.0.1
|
80
|
-
Authorization:
|
81
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
82
|
-
Content-Type:
|
83
|
-
- application/x-www-form-urlencoded
|
84
|
-
Content-Length:
|
85
|
-
- '209'
|
86
|
-
Accept-Encoding:
|
87
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
88
|
-
Host:
|
89
|
-
- api.easypost.com
|
90
|
-
response:
|
91
|
-
status:
|
92
|
-
code: 201
|
93
|
-
message: Created
|
94
|
-
headers:
|
95
|
-
X-Frame-Options:
|
96
|
-
- SAMEORIGIN
|
97
|
-
X-Xss-Protection:
|
98
|
-
- 1; mode=block
|
99
|
-
X-Content-Type-Options:
|
100
|
-
- nosniff
|
101
|
-
X-Ep-Request-Uuid:
|
102
|
-
- 43c6543d5dca6f0aee6164ec00010d21
|
103
|
-
Cache-Control:
|
104
|
-
- no-cache, no-store, must-revalidate, private
|
105
|
-
Pragma:
|
106
|
-
- no-cache
|
107
|
-
Expires:
|
108
|
-
- '0'
|
109
|
-
Location:
|
110
|
-
- "/api/v2/addresses/adr_5cd6a12b354842dc9ae8e48eb09d1f08"
|
111
|
-
Content-Type:
|
112
|
-
- application/json; charset=utf-8
|
113
|
-
X-Runtime:
|
114
|
-
- '0.029010'
|
115
|
-
Transfer-Encoding:
|
116
|
-
- chunked
|
117
|
-
X-Node:
|
118
|
-
- bigweb11sj
|
119
|
-
X-Version-Label:
|
120
|
-
- easypost-201911120131-f5c72b1880-master
|
121
|
-
X-Backend:
|
122
|
-
- easypost
|
123
|
-
X-Proxied:
|
124
|
-
- extlb2wdc 2744487620
|
125
|
-
- intlb1sj ff5a2958df
|
126
|
-
- intlb2wdc ff5a2958df
|
127
|
-
Strict-Transport-Security:
|
128
|
-
- max-age=15768000; includeSubDomains; preload
|
129
|
-
body:
|
130
|
-
encoding: ASCII-8BIT
|
131
|
-
string: '{"id":"adr_5cd6a12b354842dc9ae8e48eb09d1f08","object":"Address","created_at":"2019-11-12T08:36:26Z","updated_at":"2019-11-12T08:36:26Z","name":"NY
|
132
|
-
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
133
|
-
http_version:
|
134
|
-
recorded_at: Tue, 12 Nov 2019 08:36:26 GMT
|
135
|
-
- request:
|
136
|
-
method: post
|
137
|
-
uri: https://api.easypost.com/v2/parcels
|
138
|
-
body:
|
139
|
-
encoding: UTF-8
|
140
|
-
string: parcel[weight]=10.0
|
141
|
-
headers:
|
142
|
-
Accept:
|
143
|
-
- "*/*"
|
144
|
-
User-Agent:
|
145
|
-
- EasyPost/v2 RubyClient/3.0.1
|
146
|
-
Authorization:
|
147
|
-
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
148
|
-
Content-Type:
|
149
|
-
- application/x-www-form-urlencoded
|
150
|
-
Content-Length:
|
151
|
-
- '19'
|
152
|
-
Accept-Encoding:
|
153
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
154
|
-
Host:
|
155
|
-
- api.easypost.com
|
156
|
-
response:
|
157
|
-
status:
|
158
|
-
code: 201
|
159
|
-
message: Created
|
160
|
-
headers:
|
161
|
-
X-Frame-Options:
|
162
|
-
- SAMEORIGIN
|
163
|
-
X-Xss-Protection:
|
164
|
-
- 1; mode=block
|
165
|
-
X-Content-Type-Options:
|
166
|
-
- nosniff
|
167
|
-
X-Ep-Request-Uuid:
|
168
|
-
- 43c6543d5dca6f0aee71449000010d30
|
169
|
-
Cache-Control:
|
170
|
-
- no-cache, no-store, must-revalidate, private
|
171
|
-
Pragma:
|
172
|
-
- no-cache
|
173
|
-
Expires:
|
174
|
-
- '0'
|
175
|
-
Location:
|
176
|
-
- "/api/v2/parcels/prcl_0e8567955b454974970612f6d0745cd1"
|
177
|
-
Content-Type:
|
178
|
-
- application/json; charset=utf-8
|
179
|
-
X-Runtime:
|
180
|
-
- '0.026836'
|
181
|
-
Transfer-Encoding:
|
182
|
-
- chunked
|
183
|
-
X-Node:
|
184
|
-
- bigweb11sj
|
185
|
-
X-Version-Label:
|
186
|
-
- easypost-201911120131-f5c72b1880-master
|
187
|
-
X-Backend:
|
188
|
-
- easypost
|
189
|
-
X-Proxied:
|
190
|
-
- extlb2wdc 2744487620
|
191
|
-
- intlb2sj ff5a2958df
|
192
|
-
- intlb2wdc ff5a2958df
|
193
|
-
Strict-Transport-Security:
|
194
|
-
- max-age=15768000; includeSubDomains; preload
|
195
|
-
body:
|
196
|
-
encoding: ASCII-8BIT
|
197
|
-
string: '{"id":"prcl_0e8567955b454974970612f6d0745cd1","object":"Parcel","created_at":"2019-11-12T08:36:26Z","updated_at":"2019-11-12T08:36:26Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"}'
|
198
|
-
http_version:
|
199
|
-
recorded_at: Tue, 12 Nov 2019 08:36:27 GMT
|
200
|
-
recorded_with: VCR 5.0.0
|