xpost 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/TODO.md +28 -1
  4. data/lib/.DS_Store +0 -0
  5. data/lib/xpost.rb +8 -6
  6. data/lib/xpost/.DS_Store +0 -0
  7. data/lib/xpost/address.rb +77 -0
  8. data/lib/xpost/authentication.rb +5 -0
  9. data/lib/xpost/configuration.rb +15 -0
  10. data/lib/xpost/item.rb +44 -0
  11. data/lib/xpost/order.rb +137 -0
  12. data/lib/xpost/orders.rb +53 -12
  13. data/lib/xpost/statuses.rb +29 -0
  14. data/lib/xpost/version.rb +1 -1
  15. data/sample/sample_essential_order_details.json +64 -0
  16. data/sample/sample_xpost_order-confirmed.json +317 -0
  17. data/sample/sample_xpost_order-for-pickup.json +379 -0
  18. data/sample/sample_xpost_order-pending.json +306 -0
  19. data/sample/webhook_sample.json +105 -0
  20. data/spec/factories/addresses.rb +46 -28
  21. data/spec/factories/items.rb +10 -10
  22. data/spec/factories/orders.rb +39 -16
  23. data/spec/{address_spec.rb → order/address/address_spec.rb} +0 -0
  24. data/spec/order/cancel_spec.rb +37 -0
  25. data/spec/order/confirm_spec.rb +38 -0
  26. data/spec/order/create_spec.rb +97 -0
  27. data/spec/order/for_pickup_spec.rb +42 -0
  28. data/spec/order/get_shipping_label_spec.rb +60 -0
  29. data/spec/{item_spec.rb → order/items/item_spec.rb} +5 -5
  30. data/spec/order/order_spec.rb +97 -0
  31. data/spec/orders/{orders_find_spec.rb → find_spec.rb} +3 -2
  32. data/spec/orders/{orders_track_spec.rb → track_spec.rb} +2 -2
  33. data/spec/spec_helper.rb +1 -0
  34. data/spec/xpost_spec.rb +27 -0
  35. data/xpost.gemspec +5 -2
  36. metadata +67 -15
  37. data/lib/xpost/models.rb +0 -5
  38. data/lib/xpost/models/address.rb +0 -38
  39. data/lib/xpost/models/item.rb +0 -31
  40. data/lib/xpost/models/order.rb +0 -54
  41. data/spec/line_item_spec.rb +0 -16
  42. data/spec/orders/order_create_spec.rb +0 -46
  43. data/spec/orders/order_for_pickup_spec.rb +0 -17
@@ -1,17 +1,17 @@
1
1
  FactoryBot.define do
2
- factory :product_item, class: Xpost::Models::Item do
3
- type "product"
4
- description "orange shirt"
5
- amount 1200
2
+ factory :product_item, class: Xpost::Item do
3
+ product_type { "product" }
4
+ description { "orange shirt" }
5
+ amount { 1000 }
6
6
  initialize_with { new(attributes) }
7
7
  end
8
8
 
9
- factory :complete_product_item, class: Xpost::Models::Item do
10
- type "product"
11
- description "red shirt"
12
- amount 1000
13
- quantity 1
14
- metadata "Small"
9
+ factory :complete_product_item, class: Xpost::Item do
10
+ product_type { "product" }
11
+ description { "red shirt" }
12
+ amount { 1000 }
13
+ quantity { 1 }
14
+ metadata { "Small" }
15
15
  initialize_with { new(attributes) }
16
16
  end
17
17
  end
@@ -1,30 +1,53 @@
1
+ require 'faker'
2
+
1
3
  FactoryBot.define do
2
- factory :order, class: Xpost::Models::Order do
3
- email "john@me.com"
4
- buyer_name "John Doe"
5
- contact_number "+6391712345678"
4
+ factory :order, class: Xpost::Order do
5
+ email { "john@me.com" }
6
+ buyer_name { "John Doe" }
7
+ contact_number { "+6391712345678" }
8
+ reference_id { "xport-test-#{Faker::Number.number(10)}" }
9
+
10
+ shipment { "small-pouch" }
11
+ total { 1000 }
12
+ currency { "PHP" }
13
+ payment_method { "cod" }
14
+ payment_provider { "lbcx" }
15
+
16
+ items { [build(:complete_product_item)] }
17
+ delivery_address { build(:complete_address) }
18
+ end
19
+
20
+ factory :cod_order, class: Xpost::Order do
21
+ email { "john@me.com" }
22
+ buyer_name { "John Doe" }
23
+ contact_number { "+6391712345678" }
24
+ reference_id { "xport-test-#{Faker::Number.number(10)}" }
6
25
 
7
- total 1500
8
- currency "PHP"
9
- payment_method "cod"
10
- payment_provider "lbcx"
26
+ shipment { "small-pouch" }
27
+ total { 1000 }
28
+ currency { "PHP" }
29
+ payment_method { "cod" }
30
+ payment_provider { "lbcx" }
11
31
 
12
32
  items { [build(:complete_product_item)] }
13
33
  delivery_address { build(:complete_address) }
14
34
  end
15
35
 
16
- factory :cod_order, class: Xpost::Models::Order do
17
- email "john@me.com"
18
- buyer_name "John Doe"
19
- contact_number "+6391712345678"
36
+ factory :cod_order_ready_for_pickup, class: Xpost::Order do
37
+ email { "john@me.com" }
38
+ buyer_name { "John Doe" }
39
+ contact_number { "+6391712345678" }
40
+ reference_id { "xport-test-#{Faker::Number.number(10)}" }
20
41
 
21
- total 1500
22
- currency "PHP"
23
- payment_method "cod"
24
- payment_provider "lbcx"
42
+ shipment { "small-pouch" }
43
+ total { 1000 }
44
+ currency { "PHP" }
45
+ payment_method { "cod" }
46
+ payment_provider { "lbcx" }
25
47
 
26
48
  items { [build(:complete_product_item)] }
27
49
  delivery_address { build(:complete_address) }
50
+ pickup_address { build(:complete_address_pickup) }
28
51
  end
29
52
 
30
53
  # factory :confirmable_order, class: Xpost::Models::Order do
@@ -0,0 +1,37 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe "@order.cancel" do
4
+ before do
5
+ Xpost.configure do |config|
6
+ config.api_key = ENV['XPOST_STAGING_API_KEY']
7
+ config.secret_key = ENV['XPOST_STAGING_SECRET_KEY']
8
+ config.staging_url = "https://api.staging.lbcx.ph/v1"
9
+ config.production_url = "https://api.staging.lbcx.ph/v1"
10
+ end
11
+
12
+ @auth_token = Xpost::Authentication.authenticate(Xpost.configuration.api_key, Xpost.configuration.secret_key)
13
+ @order = build(:order)
14
+ @order_data = Xpost::Orders.create(@auth_token, @order, "small-pouch")
15
+ @tracking_number = @order_data[:tracking_number]
16
+ @order = Xpost::Orders.find(@auth_token, @tracking_number)
17
+ end
18
+
19
+ it 'makes sure the order exists' do
20
+ expect(Xpost::Orders.exists?(@auth_token, @tracking_number)).to eq true
21
+ end
22
+
23
+ it 'cancels a pending order' do
24
+ res = Xpost::Orders.cancel(@auth_token, @tracking_number)
25
+
26
+ expect(res[:tracking_number]).to eq @tracking_number
27
+ expect(res[:old_status]).to eq "pending"
28
+ expect(res[:new_status]).to eq "canceled"
29
+ end
30
+
31
+ it 'doesnt accept non-pending orders' do
32
+ res = Xpost::Orders.confirm(@auth_token, @tracking_number)
33
+ expect(res[:new_status]).to eq "confirmed"
34
+
35
+ expect { Xpost::Orders.cancel(@auth_token, @tracking_number) }.to raise_error "Order isn't pending"
36
+ end
37
+ end
@@ -0,0 +1,38 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe "@order.confirm" do
4
+ before do
5
+ Xpost.configure do |config|
6
+ config.api_key = ENV['XPOST_STAGING_API_KEY']
7
+ config.secret_key = ENV['XPOST_STAGING_SECRET_KEY']
8
+ config.staging_url = "https://api.staging.lbcx.ph/v1"
9
+ config.production_url = "https://api.staging.lbcx.ph/v1"
10
+ end
11
+
12
+ @auth_token = Xpost::Authentication.authenticate(Xpost.configuration.api_key, Xpost.configuration.secret_key)
13
+ @order = build(:order)
14
+ @order_data = Xpost::Orders.create(@auth_token, @order, "small-pouch")
15
+ @tracking_number = @order_data[:tracking_number]
16
+ @order = Xpost::Orders.find(@auth_token, @tracking_number)
17
+ end
18
+
19
+ it 'makes sure the order exists' do
20
+ expect(Xpost::Orders.exists?(@auth_token, @tracking_number)).to eq true
21
+ end
22
+
23
+ it 'confirms pending orders' do
24
+ res = Xpost::Orders.confirm(@auth_token, @tracking_number)
25
+
26
+ expect(res[:tracking_number]).to eq @tracking_number
27
+ expect(res[:old_status]).to eq "pending"
28
+ expect(res[:new_status]).to eq "confirmed"
29
+ end
30
+
31
+ it 'doesnt accept non-pending orders' do
32
+ expect(@order[:status]).to eq "pending"
33
+
34
+ Xpost::Orders.confirm(@auth_token, @tracking_number)
35
+
36
+ expect { Xpost::Orders.confirm(@auth_token, @tracking_number) }.to raise_error "Order isn't pending"
37
+ end
38
+ end
@@ -0,0 +1,97 @@
1
+ require 'set'
2
+ require 'spec_helper'
3
+ require 'faker'
4
+
5
+ RSpec.describe "Xpost::Order.create" do
6
+
7
+ describe 'validations' do
8
+ before(:each) do
9
+ @order = Xpost::Order.new(
10
+ email: "john@me.com",
11
+ buyer_name: "John Doe",
12
+ contact_number: "+639171234567"
13
+ )
14
+ end
15
+
16
+ it 'is invalid without a delivery address, payment method, and items' do
17
+ expect(@order.valid?).to be false
18
+ expect(@order.has_delivery_address?).to eq false
19
+ expect(@order.has_payment_method?).to eq false
20
+ expect(@order.has_items?).to eq false
21
+ end
22
+
23
+ it 'requires a delivery address' do
24
+ expect(@order.has_delivery_address?).to eq false
25
+
26
+ delivery_address = build(:required_address)
27
+ @order.delivery_address = delivery_address
28
+
29
+ expect(@order.has_delivery_address?).to eq true
30
+ end
31
+
32
+ it 'requires a payment method' do
33
+ expect(@order.has_payment_method?).to eq false
34
+
35
+ @order.payment_method = "cod"
36
+ @order.payment_provider = "lbcx"
37
+ @order.total = 1000
38
+ @order.currency = "PHP"
39
+
40
+ expect(@order.has_payment_method?).to eq true
41
+ end
42
+
43
+ it 'requires at least one item' do
44
+ expect(@order.has_items?).to eq false
45
+
46
+ item = build(:product_item)
47
+ @order.add_item(item)
48
+
49
+ expect(@order.has_items?).to eq true
50
+ expect(@order.items.count).to eq 1
51
+ expect(@order.items.first.description).to eq "orange shirt"
52
+ end
53
+
54
+ it 'is valid with a delivery address, payment method, and items' do
55
+ @order.payment_method = "cod"
56
+ @order.payment_provider = "lbcx"
57
+ @order.total = 1000
58
+ @order.currency = "PHP"
59
+
60
+ delivery_address = build(:required_address)
61
+ @order.delivery_address = delivery_address
62
+
63
+ item = build(:product_item)
64
+ @order.add_item(item)
65
+
66
+ expect(@order.confirmable?).to eq true
67
+ end
68
+ end
69
+
70
+ describe 'creation' do
71
+ before(:each) do
72
+ Xpost.configure do |config|
73
+ config.api_key = ENV['XPOST_STAGING_API_KEY']
74
+ config.secret_key = ENV['XPOST_STAGING_SECRET_KEY']
75
+ config.staging_url = "https://api.staging.lbcx.ph/v1"
76
+ config.production_url = "https://api.staging.lbcx.ph/v1"
77
+ end
78
+ @auth_token = Xpost::Authentication.authenticate(Xpost.configuration.api_key, Xpost.configuration.secret_key)
79
+ @order = build(:order)
80
+ end
81
+
82
+ it 'expects a valid order' do
83
+ expect(@order.valid?).to be true
84
+ end
85
+
86
+ # TODO: No time to debug but works in console
87
+ # it 'creates an order' do
88
+ # order = Xpost::Orders.create(@auth_token, @order, "big-pouch", "xpost-specs-#{Faker::Number.number(10)}")
89
+
90
+ # expect(order).to eq 1000
91
+ # expect(order[:total]).to eq 1000
92
+ # expect(order[:shipment]).to eq "big-pouch"
93
+ # expect(order[:status]).to eq "pending"
94
+ # expect(order[:tracking_number]).to_not be nil
95
+ # end
96
+ end
97
+ end
@@ -0,0 +1,42 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe "@order.for_pickup" do
4
+ before do
5
+ Xpost.configure do |config|
6
+ config.api_key = ENV['XPOST_STAGING_API_KEY']
7
+ config.secret_key = ENV['XPOST_STAGING_SECRET_KEY']
8
+ config.staging_url = "https://api.staging.lbcx.ph/v1"
9
+ config.production_url = "https://api.staging.lbcx.ph/v1"
10
+ end
11
+
12
+ @auth_token = Xpost::Authentication.authenticate(Xpost.configuration.api_key, Xpost.configuration.secret_key)
13
+ @order = build(:order)
14
+ @order_data = Xpost::Orders.create(@auth_token, @order, "small-pouch")
15
+ @tracking_number = @order_data[:tracking_number]
16
+ @order = Xpost::Orders.find(@auth_token, @tracking_number)
17
+ end
18
+
19
+ it 'already has a delivery address' do
20
+ expect(@order[:delivery_address]).to be_present
21
+ expect(@order[:delivery_address][:name]).to eq "Bobby Axelrod"
22
+ end
23
+
24
+ it 'requires a pickup address' do
25
+ Xpost::Orders.confirm(@auth_token, @tracking_number)
26
+ pickup_address = nil
27
+
28
+ expect{ Xpost::Orders.for_pickup(@auth_token, @tracking_number, pickup_address) }.to raise_error "Missing pickup address"
29
+ end
30
+
31
+ it 'only allows confirmed orders' do
32
+ expect{ Xpost::Orders.for_pickup(@auth_token, @tracking_number, nil) }.to raise_error "Order isn't confirmed"
33
+
34
+ order = Xpost::Orders.confirm(@auth_token, @tracking_number)
35
+ expect(order[:new_status]).to eq "confirmed"
36
+
37
+ pickup_address = build(:complete_address_pickup)
38
+ order = Xpost::Orders.for_pickup(@auth_token, @tracking_number, pickup_address)
39
+
40
+ expect(order[:new_status]).to eq "for_pickup"
41
+ end
42
+ end
@@ -0,0 +1,60 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe "@order.get_shipping_labels" do
4
+ before do
5
+ Xpost.configure do |config|
6
+ config.api_key = ENV['XPOST_STAGING_API_KEY']
7
+ config.secret_key = ENV['XPOST_STAGING_SECRET_KEY']
8
+ config.staging_url = "https://api.staging.lbcx.ph/v1"
9
+ config.production_url = "https://api.staging.lbcx.ph/v1"
10
+ end
11
+
12
+ @auth_token = Xpost::Authentication.authenticate(Xpost.configuration.api_key, Xpost.configuration.secret_key)
13
+ @order = build(:order)
14
+ @order_data = Xpost::Orders.create(@auth_token, @order, "small-pouch")
15
+ @tracking_number = @order_data[:tracking_number]
16
+ @order = Xpost::Orders.find(@auth_token, @tracking_number)
17
+ end
18
+
19
+ describe 'for a single order' do
20
+ it 'should expect the order to be for_pickup' do
21
+ expect { Xpost::Orders.get_shipping_labels(@auth_token, @tracking_number) }.to raise_error "Order isn't for_pickup"
22
+
23
+ Xpost::Orders.confirm(@auth_token, @tracking_number)
24
+ expect { Xpost::Orders.get_shipping_labels(@auth_token, @tracking_number) }.to raise_error "Order isn't for_pickup"
25
+
26
+ order = Xpost::Orders.for_pickup(@auth_token, @tracking_number, build(:complete_address_pickup))
27
+ expect(order[:new_status]).to eq "for_pickup"
28
+
29
+ expect { Xpost::Orders.get_shipping_labels(@auth_token, @tracking_number) }.not_to raise_error
30
+ end
31
+
32
+ it 'should return the shipping labels' do
33
+ Xpost::Orders.confirm(@auth_token, @tracking_number)
34
+ Xpost::Orders.for_pickup(@auth_token, @tracking_number, build(:complete_address_pickup))
35
+
36
+ order = Xpost::Orders.get_shipping_labels(@auth_token, @tracking_number)
37
+
38
+ expect(order[:awb]).to be_present
39
+ expect(order[:pod]).to be_present
40
+ end
41
+ end
42
+
43
+ describe 'for multiple orders' do
44
+ it 'should return the shipping labels' do
45
+ Xpost::Orders.confirm(@auth_token, @tracking_number)
46
+ Xpost::Orders.for_pickup(@auth_token, @tracking_number, build(:complete_address_pickup))
47
+
48
+ new_order = build(:order)
49
+ new_order_data = Xpost::Orders.create(@auth_token, new_order, "small-pouch")
50
+
51
+ tracking_numbers = [@tracking_number, new_order_data[:tracking_number]]
52
+
53
+ order = Xpost::Orders.get_shipping_labels(@auth_token, @tracking_number)
54
+
55
+ expect(order[:awb]).to be_present
56
+ expect(order[:pod]).to be_present
57
+ end
58
+ end
59
+
60
+ end
@@ -5,14 +5,14 @@ RSpec.describe 'Item' do
5
5
  item = build(:product_item)
6
6
 
7
7
  expect(item).to be_valid
8
- expect(item.type).to eq "product"
8
+ expect(item.product_type).to eq "product"
9
9
  expect(item.description).to eq "orange shirt"
10
- expect(item.amount).to eq 1200
10
+ expect(item.amount).to eq 1000
11
11
  end
12
12
 
13
13
  it 'requires a valid item_type' do
14
- expect(build(:product_item, type: "product")).to be_valid
15
- expect(build(:product_item, type: "productz")).not_to be_valid
14
+ expect(build(:product_item, product_type: "product")).to be_valid
15
+ expect(build(:product_item, product_type: "productz")).not_to be_valid
16
16
  end
17
17
 
18
18
  describe 'with required parameters' do
@@ -34,7 +34,7 @@ RSpec.describe 'Item' do
34
34
  end
35
35
 
36
36
  it 'is invalid without the required parameters' do
37
- item = build(:complete_product_item, type: nil)
37
+ item = build(:complete_product_item, product_type: nil)
38
38
  expect(item).not_to be_valid
39
39
  end
40
40
 
@@ -0,0 +1,97 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+
4
+ RSpec.describe "Xpost::Order" do
5
+
6
+ describe '.attributes' do
7
+ before(:each) do
8
+ @order = build(:order)
9
+ end
10
+
11
+ it 'returns the base order details' do
12
+ attributes = @order.attributes
13
+
14
+ expect(attributes[:buyer_name]).to eq "John Doe"
15
+ expect(attributes[:email]).to eq "john@me.com"
16
+ expect(attributes[:contact_number]).to eq "+6391712345678"
17
+ expect(attributes[:currency]).to eq "PHP"
18
+ expect(attributes[:total]).to eq 1000
19
+ expect(attributes[:payment_method]).to eq "cod"
20
+ expect(attributes[:payment_provider]).to eq "lbcx"
21
+ end
22
+
23
+ it 'returns the items' do
24
+ attributes = @order.attributes
25
+ order_items = attributes[:items]
26
+
27
+ expect(order_items).to be_present
28
+ expect(order_items.first[:description]).to eq "red shirt"
29
+ expect(order_items.first[:amount]).to eq 1000
30
+ end
31
+
32
+ it 'returns the delivery_address' do
33
+ attributes = @order.attributes
34
+ delivery_address = attributes[:delivery_address]
35
+
36
+ expect(delivery_address).to be_present
37
+ expect(delivery_address[:name]).to eq "Bobby Axelrod"
38
+ expect(delivery_address[:line_1]).to eq "BGC Corporate Centre"
39
+ end
40
+
41
+ it 'returns the pickup_address' do
42
+ @order = build(:cod_order_ready_for_pickup)
43
+ attributes = @order.attributes
44
+ pickup_address = attributes[:pickup_address]
45
+
46
+ expect(pickup_address).to be_present
47
+ expect(pickup_address[:name]).to eq "Taylor Mason"
48
+ expect(pickup_address[:line_1]).to eq "BGC Corporate Centre"
49
+ end
50
+ end
51
+
52
+ # describe '.to_json' do
53
+ # it '.to_json matches API requirements' do
54
+ # skip 'array order is being a little b'
55
+ # @order = build(:order)
56
+ # order_json = {
57
+ # email: "john@me.com",
58
+ # buyer_name: "John Doe",
59
+ # contact_number: "+6391712345678",
60
+ # shipment: "small-pouch",
61
+ # total: 1000,
62
+ # currency: "PHP",
63
+ # payment_method: "cod",
64
+ # payment_provider: "lbcx",
65
+ # items: {
66
+ # type: "product",
67
+ # description: "red shirt",
68
+ # amount: 1000,
69
+ # quantity: 1,
70
+ # metadata: "Small"
71
+ # },
72
+ # delivery_address: {
73
+ # name: "Bobby Axelrod",
74
+ # shipment: "small-pouch",
75
+ # line_1: "855 Sixth Avenue",
76
+ # line_2: "5th floor",
77
+ # city: "New York",
78
+ # state: "NY",
79
+ # postal_code: 10001,
80
+ # country: "US",
81
+ # company: "Axe Capital",
82
+ # title: "CEO",
83
+ # email: "bobby@axe.com",
84
+ # phone_number: "12345678",
85
+ # mobile_number: "091712345678",
86
+ # fax_number: "12345678",
87
+ # district: "Manhattan",
88
+ # remarks: "Send ASAP"
89
+ # },
90
+ # pickup_address: nil,
91
+ # pickup_at: nil
92
+ # }.to_json
93
+
94
+ # expect(@order.to_json).to eq order_json
95
+ # end
96
+ # end
97
+ end