Skip to content

Commit 702b858

Browse files
committed
Updates for PR review
1 parent b941411 commit 702b858

5 files changed

+18
-12
lines changed

lib/shopify_api/resources/fulfillment_order.rb

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module ShopifyAPI
22
class FulfillmentOrder < Base
33
def self.all(options = {})
44
order_id = options.dig(:params, :order_id)
5+
raise ShopifyAPI::ValidationException, "'order_id' is required" if order_id.nil? || order_id == ''
6+
57
order = ::ShopifyAPI::Order.new(id: order_id)
68
order.fulfillment_orders
79
end

test/assigned_fulfillment_order_test.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
class AssignedFulFillmentOrderTest < Test::Unit::TestCase
44
context "AssignedFulfillmentOrder" do
55
context "#all" do
6-
should "be able to list assigned fulfillment orders by assigned_status" do
6+
should "list assigned fulfillment orders by assigned_status" do
77
fo_fixture = load_fixture('assigned_fulfillment_orders')
88
fake 'assigned_fulfillment_orders.json?assigned_status=cancellation_requested', method: :get,
99
body: fo_fixture, extension: false
1010

1111
assigned_fulfillment_orders = ShopifyAPI::AssignedFulfillmentOrder.all(
12-
params: { assigned_status: 'cancellation_requested' }
12+
params: { assigned_status: ShopifyAPI::AssignedFulfillmentOrder::CANCELLATION_REQUESTED }
1313
)
1414

1515
assert_equal 2, assigned_fulfillment_orders.count
1616
assigned_fulfillment_orders.each do |fulfillment_order|
1717
assert_equal 'ShopifyAPI::FulfillmentOrder', fulfillment_order.class.name
18-
assert_equal 'open', fulfillment_order.status
19-
assert_equal 'unsubmitted', fulfillment_order.request_status
18+
assert_equal 'in_progress', fulfillment_order.status
19+
assert_equal 'cancellation_accepted', fulfillment_order.request_status
2020
end
2121
end
2222

test/fixtures/assigned_fulfillment_orders.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"id": 519788021,
44
"order_id": 450789469,
55
"fulfillment_service_handle": "shipwire",
6-
"status": "open",
6+
"status": "in_progress",
77
"requires_shipping": true,
88
"is_not_deleted": true,
99
"deleted_at": null,
1010
"created_at": "2016-07-12T11:23:42-04:00",
1111
"updated_at": "2016-07-12T11:23:42-04:00",
1212
"happened_at": "2016-07-12T11:23:42-04:00",
1313
"assigned_location_id": 905684977,
14-
"request_status": "unsubmitted",
14+
"request_status": "cancellation_accepted",
1515
"delivery_category": null,
1616
"fulfillment_order_line_items": [
1717
{
@@ -41,15 +41,15 @@
4141
"id": 519788022,
4242
"order_id": 450789469,
4343
"fulfillment_service_handle": "manual",
44-
"status": "open",
44+
"status": "in_progress",
4545
"requires_shipping": true,
4646
"is_not_deleted": true,
4747
"deleted_at": null,
4848
"created_at": "2016-07-12T11:23:42-04:00",
4949
"updated_at": "2016-07-12T11:23:42-04:00",
5050
"happened_at": "2016-07-12T11:23:42-04:00",
5151
"assigned_location_id": 905684977,
52-
"request_status": "unsubmitted",
52+
"request_status": "cancellation_accepted",
5353
"delivery_category": null,
5454
"fulfillment_order_line_items": [
5555
{

test/fulfillment_order_test.rb

+7-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,17 @@ def setup
2525
params: { order_id: 450789469 }
2626
)
2727

28-
assert_equal 2, fulfillment_orders.count
28+
assert_equal [519788021, 519788022], fulfillment_orders.map(&:id).sort
2929
fulfillment_orders.each do |fulfillment_order|
3030
assert_equal 'ShopifyAPI::FulfillmentOrder', fulfillment_order.class.name
3131
assert_equal 450789469, fulfillment_order.order_id
3232
end
33-
assert_equal [519788021, 519788022], fulfillment_orders.map(&:id).sort
33+
end
34+
35+
should "require order_id" do
36+
assert_raises ShopifyAPI::ValidationException do
37+
ShopifyAPI::FulfillmentOrder.all
38+
end
3439
end
3540
end
3641

test/order_test.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,10 @@ class OrderTest < Test::Unit::TestCase
8080
fake 'orders/450789469/fulfillment_orders', method: :get, body: load_fixture('fulfillment_orders')
8181
fulfillment_orders = order.fulfillment_orders
8282

83-
assert_equal 2, fulfillment_orders.count
83+
assert_equal [519788021, 519788022], fulfillment_orders.map(&:id).sort
8484
fulfillment_orders.each do |fulfillment_order|
8585
assert_equal 'ShopifyAPI::FulfillmentOrder', fulfillment_order.class.name
8686
assert_equal 450789469, fulfillment_order.order_id
8787
end
88-
assert_equal [519788021, 519788022], fulfillment_orders.map(&:id).sort
8988
end
9089
end

0 commit comments

Comments
 (0)