spree_core 3.0.5 → 3.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +3 -0
  4. data/Rakefile +30 -0
  5. data/app/assets/javascripts/spree.js.coffee.erb +1 -1
  6. data/app/models/spree/ability.rb +1 -1
  7. data/app/models/spree/base.rb +3 -1
  8. data/app/models/spree/order_updater.rb +2 -1
  9. data/app/models/spree/price.rb +7 -12
  10. data/app/models/spree/product.rb +3 -2
  11. data/app/models/spree/reimbursement.rb +1 -1
  12. data/app/models/spree/state.rb +2 -0
  13. data/app/models/spree/zone.rb +1 -1
  14. data/lib/spree/core/version.rb +1 -1
  15. data/lib/spree/testing_support/shoulda_matcher_configuration.rb +6 -0
  16. data/script/rails +9 -0
  17. data/spec/fixtures/thinking-cat.jpg +0 -0
  18. data/spec/helpers/base_helper_spec.rb +137 -0
  19. data/spec/helpers/products_helper_spec.rb +224 -0
  20. data/spec/lib/calculated_adjustments_spec.rb +7 -0
  21. data/spec/lib/i18n_spec.rb +123 -0
  22. data/spec/lib/search/base_spec.rb +86 -0
  23. data/spec/lib/spree/core/controller_helpers/auth_spec.rb +101 -0
  24. data/spec/lib/spree/core/controller_helpers/order_spec.rb +95 -0
  25. data/spec/lib/spree/core/controller_helpers/search_spec.rb +17 -0
  26. data/spec/lib/spree/core/controller_helpers/store_spec.rb +16 -0
  27. data/spec/lib/spree/core/controller_helpers/strong_parameters_spec.rb +39 -0
  28. data/spec/lib/spree/core/delegate_belongs_to_spec.rb +22 -0
  29. data/spec/lib/spree/core/importer/order_spec.rb +502 -0
  30. data/spec/lib/spree/core/validators/email_spec.rb +53 -0
  31. data/spec/lib/spree/localized_number_spec.rb +38 -0
  32. data/spec/lib/spree/migrations_spec.rb +34 -0
  33. data/spec/lib/spree/money_spec.rb +122 -0
  34. data/spec/lib/tasks/exchanges_spec.rb +136 -0
  35. data/spec/mailers/order_mailer_spec.rb +124 -0
  36. data/spec/mailers/reimbursement_mailer_spec.rb +47 -0
  37. data/spec/mailers/shipment_mailer_spec.rb +63 -0
  38. data/spec/mailers/test_mailer_spec.rb +24 -0
  39. data/spec/models/spree/ability_spec.rb +246 -0
  40. data/spec/models/spree/address_spec.rb +291 -0
  41. data/spec/models/spree/adjustable/adjustments_updater_spec.rb +286 -0
  42. data/spec/models/spree/adjustment_spec.rb +163 -0
  43. data/spec/models/spree/app_configuration_spec.rb +23 -0
  44. data/spec/models/spree/asset_spec.rb +25 -0
  45. data/spec/models/spree/calculator/default_tax_spec.rb +127 -0
  46. data/spec/models/spree/calculator/flat_percent_item_total_spec.rb +25 -0
  47. data/spec/models/spree/calculator/flat_rate_spec.rb +47 -0
  48. data/spec/models/spree/calculator/flexi_rate_spec.rb +41 -0
  49. data/spec/models/spree/calculator/percent_on_line_item_spec.rb +15 -0
  50. data/spec/models/spree/calculator/price_sack_spec.rb +30 -0
  51. data/spec/models/spree/calculator/refunds/default_refund_amount_spec.rb +51 -0
  52. data/spec/models/spree/calculator/shipping.rb +8 -0
  53. data/spec/models/spree/calculator/shipping/flat_percent_item_total_spec.rb +23 -0
  54. data/spec/models/spree/calculator/shipping/flat_rate_spec.rb +13 -0
  55. data/spec/models/spree/calculator/shipping/flexi_rate_spec.rb +52 -0
  56. data/spec/models/spree/calculator/shipping/per_item_spec.rb +20 -0
  57. data/spec/models/spree/calculator/shipping/price_sack_spec.rb +29 -0
  58. data/spec/models/spree/calculator/tiered_flat_rate_spec.rb +40 -0
  59. data/spec/models/spree/calculator/tiered_percent_spec.rb +51 -0
  60. data/spec/models/spree/calculator_spec.rb +69 -0
  61. data/spec/models/spree/classification_spec.rb +93 -0
  62. data/spec/models/spree/concerns/display_money_spec.rb +43 -0
  63. data/spec/models/spree/country_spec.rb +18 -0
  64. data/spec/models/spree/credit_card_spec.rb +324 -0
  65. data/spec/models/spree/customer_return_spec.rb +262 -0
  66. data/spec/models/spree/exchange_spec.rb +75 -0
  67. data/spec/models/spree/gateway/bogus_simple.rb +20 -0
  68. data/spec/models/spree/gateway/bogus_spec.rb +13 -0
  69. data/spec/models/spree/gateway_spec.rb +54 -0
  70. data/spec/models/spree/image_spec.rb +5 -0
  71. data/spec/models/spree/inventory_unit_spec.rb +242 -0
  72. data/spec/models/spree/line_item_spec.rb +267 -0
  73. data/spec/models/spree/option_type_spec.rb +14 -0
  74. data/spec/models/spree/option_value_spec.rb +13 -0
  75. data/spec/models/spree/order/address_spec.rb +50 -0
  76. data/spec/models/spree/order/adjustments_spec.rb +29 -0
  77. data/spec/models/spree/order/callbacks_spec.rb +42 -0
  78. data/spec/models/spree/order/checkout_spec.rb +764 -0
  79. data/spec/models/spree/order/currency_updater_spec.rb +32 -0
  80. data/spec/models/spree/order/finalizing_spec.rb +117 -0
  81. data/spec/models/spree/order/helpers_spec.rb +5 -0
  82. data/spec/models/spree/order/payment_spec.rb +214 -0
  83. data/spec/models/spree/order/risk_assessment_spec.rb +84 -0
  84. data/spec/models/spree/order/shipments_spec.rb +43 -0
  85. data/spec/models/spree/order/state_machine_spec.rb +216 -0
  86. data/spec/models/spree/order/tax_spec.rb +84 -0
  87. data/spec/models/spree/order/totals_spec.rb +24 -0
  88. data/spec/models/spree/order/updating_spec.rb +18 -0
  89. data/spec/models/spree/order/validations_spec.rb +15 -0
  90. data/spec/models/spree/order_contents_spec.rb +256 -0
  91. data/spec/models/spree/order_inventory_spec.rb +228 -0
  92. data/spec/models/spree/order_merger_spec.rb +133 -0
  93. data/spec/models/spree/order_spec.rb +954 -0
  94. data/spec/models/spree/order_updater_spec.rb +283 -0
  95. data/spec/models/spree/payment/gateway_options_spec.rb +119 -0
  96. data/spec/models/spree/payment_method_spec.rb +95 -0
  97. data/spec/models/spree/payment_spec.rb +926 -0
  98. data/spec/models/spree/preference_spec.rb +80 -0
  99. data/spec/models/spree/preferences/configuration_spec.rb +30 -0
  100. data/spec/models/spree/preferences/preferable_spec.rb +348 -0
  101. data/spec/models/spree/preferences/scoped_store_spec.rb +58 -0
  102. data/spec/models/spree/preferences/store_spec.rb +46 -0
  103. data/spec/models/spree/price_spec.rb +42 -0
  104. data/spec/models/spree/product/scopes_spec.rb +148 -0
  105. data/spec/models/spree/product_duplicator_spec.rb +103 -0
  106. data/spec/models/spree/product_filter_spec.rb +26 -0
  107. data/spec/models/spree/product_option_type_spec.rb +5 -0
  108. data/spec/models/spree/product_property_spec.rb +11 -0
  109. data/spec/models/spree/product_spec.rb +474 -0
  110. data/spec/models/spree/promotion/actions/create_adjustment_spec.rb +50 -0
  111. data/spec/models/spree/promotion/actions/create_item_adjustments_spec.rb +148 -0
  112. data/spec/models/spree/promotion/actions/create_line_items_spec.rb +86 -0
  113. data/spec/models/spree/promotion/actions/free_shipping_spec.rb +36 -0
  114. data/spec/models/spree/promotion/rules/first_order_spec.rb +75 -0
  115. data/spec/models/spree/promotion/rules/item_total_spec.rb +282 -0
  116. data/spec/models/spree/promotion/rules/one_use_per_user_spec.rb +42 -0
  117. data/spec/models/spree/promotion/rules/option_value_spec.rb +90 -0
  118. data/spec/models/spree/promotion/rules/product_spec.rb +143 -0
  119. data/spec/models/spree/promotion/rules/taxon_spec.rb +102 -0
  120. data/spec/models/spree/promotion/rules/user_logged_in_spec.rb +27 -0
  121. data/spec/models/spree/promotion/rules/user_spec.rb +37 -0
  122. data/spec/models/spree/promotion_action_spec.rb +10 -0
  123. data/spec/models/spree/promotion_category_spec.rb +17 -0
  124. data/spec/models/spree/promotion_handler/cart_spec.rb +102 -0
  125. data/spec/models/spree/promotion_handler/coupon_spec.rb +323 -0
  126. data/spec/models/spree/promotion_handler/free_shipping_spec.rb +48 -0
  127. data/spec/models/spree/promotion_handler/page_spec.rb +44 -0
  128. data/spec/models/spree/promotion_rule_spec.rb +29 -0
  129. data/spec/models/spree/promotion_spec.rb +603 -0
  130. data/spec/models/spree/property_spec.rb +5 -0
  131. data/spec/models/spree/prototype_spec.rb +5 -0
  132. data/spec/models/spree/refund_spec.rb +195 -0
  133. data/spec/models/spree/reimbursement/credit_spec.rb +36 -0
  134. data/spec/models/spree/reimbursement/reimbursement_type_engine_spec.rb +140 -0
  135. data/spec/models/spree/reimbursement/reimbursement_type_validator_spec.rb +83 -0
  136. data/spec/models/spree/reimbursement_performer_spec.rb +30 -0
  137. data/spec/models/spree/reimbursement_spec.rb +215 -0
  138. data/spec/models/spree/reimbursement_tax_calculator_spec.rb +51 -0
  139. data/spec/models/spree/reimbursement_type/credit_spec.rb +53 -0
  140. data/spec/models/spree/reimbursement_type/exchange_spec.rb +46 -0
  141. data/spec/models/spree/reimbursement_type/original_payment_spec.rb +55 -0
  142. data/spec/models/spree/return_authorization_spec.rb +250 -0
  143. data/spec/models/spree/return_item/eligibility_validator/default_spec.rb +77 -0
  144. data/spec/models/spree/return_item/eligibility_validator/inventory_shipped_spec.rb +58 -0
  145. data/spec/models/spree/return_item/eligibility_validator/no_reimbursements_spec.rb +61 -0
  146. data/spec/models/spree/return_item/eligibility_validator/order_completed_spec.rb +32 -0
  147. data/spec/models/spree/return_item/eligibility_validator/rma_required_spec.rb +29 -0
  148. data/spec/models/spree/return_item/eligibility_validator/time_since_purchase_spec.rb +35 -0
  149. data/spec/models/spree/return_item/exchange_variant_eligibility/same_option_value_spec.rb +65 -0
  150. data/spec/models/spree/return_item/exchange_variant_eligibility/same_product_spec.rb +43 -0
  151. data/spec/models/spree/return_item_spec.rb +682 -0
  152. data/spec/models/spree/returns_calculator_spec.rb +14 -0
  153. data/spec/models/spree/shipment_spec.rb +740 -0
  154. data/spec/models/spree/shipping_calculator_spec.rb +45 -0
  155. data/spec/models/spree/shipping_category_spec.rb +5 -0
  156. data/spec/models/spree/shipping_method_spec.rb +88 -0
  157. data/spec/models/spree/shipping_rate_spec.rb +141 -0
  158. data/spec/models/spree/state_spec.rb +18 -0
  159. data/spec/models/spree/stock/availability_validator_spec.rb +36 -0
  160. data/spec/models/spree/stock/content_item_spec.rb +22 -0
  161. data/spec/models/spree/stock/coordinator_spec.rb +51 -0
  162. data/spec/models/spree/stock/differentiator_spec.rb +39 -0
  163. data/spec/models/spree/stock/estimator_spec.rb +154 -0
  164. data/spec/models/spree/stock/inventory_unit_builder_spec.rb +38 -0
  165. data/spec/models/spree/stock/package_spec.rb +194 -0
  166. data/spec/models/spree/stock/packer_spec.rb +70 -0
  167. data/spec/models/spree/stock/prioritizer_spec.rb +125 -0
  168. data/spec/models/spree/stock/quantifier_spec.rb +97 -0
  169. data/spec/models/spree/stock/splitter/backordered_spec.rb +29 -0
  170. data/spec/models/spree/stock/splitter/base_spec.rb +21 -0
  171. data/spec/models/spree/stock/splitter/shipping_category_spec.rb +47 -0
  172. data/spec/models/spree/stock/splitter/weight_spec.rb +32 -0
  173. data/spec/models/spree/stock_item_spec.rb +410 -0
  174. data/spec/models/spree/stock_location_spec.rb +243 -0
  175. data/spec/models/spree/stock_movement_spec.rb +56 -0
  176. data/spec/models/spree/stock_transfer_spec.rb +50 -0
  177. data/spec/models/spree/store_spec.rb +50 -0
  178. data/spec/models/spree/tax_category_spec.rb +27 -0
  179. data/spec/models/spree/tax_rate_spec.rb +382 -0
  180. data/spec/models/spree/taxon_spec.rb +74 -0
  181. data/spec/models/spree/taxonomy_spec.rb +18 -0
  182. data/spec/models/spree/tracker_spec.rb +21 -0
  183. data/spec/models/spree/user_spec.rb +130 -0
  184. data/spec/models/spree/validations/db_maximum_length_validator_spec.rb +24 -0
  185. data/spec/models/spree/variant_spec.rb +523 -0
  186. data/spec/models/spree/zone_spec.rb +444 -0
  187. data/spec/spec_helper.rb +74 -0
  188. data/spec/support/big_decimal.rb +5 -0
  189. data/spec/support/concerns/adjustment_source_spec.rb +23 -0
  190. data/spec/support/concerns/default_price_spec.rb +28 -0
  191. data/spec/support/rake.rb +13 -0
  192. data/spec/support/test_gateway.rb +2 -0
  193. data/spree_core.gemspec +48 -0
  194. metadata +185 -4
@@ -0,0 +1,50 @@
1
+ require 'spec_helper'
2
+
3
+ describe Spree::Promotion::Actions::CreateAdjustment, type: :model do
4
+ let(:order) { create(:order_with_line_items, line_items_count: 1) }
5
+ let(:promotion) { create(:promotion) }
6
+ let(:action) { Spree::Promotion::Actions::CreateAdjustment.new }
7
+ let(:payload) { { order: order } }
8
+
9
+ it_behaves_like 'an adjustment source'
10
+
11
+ # From promotion spec:
12
+ context "#perform" do
13
+ before do
14
+ action.calculator = Spree::Calculator::FlatRate.new(preferred_amount: 10)
15
+ promotion.promotion_actions = [action]
16
+ allow(action).to receive_messages(promotion: promotion)
17
+ end
18
+
19
+ # Regression test for #3966
20
+ it "does not apply an adjustment if the amount is 0" do
21
+ action.calculator.preferred_amount = 0
22
+ action.perform(payload)
23
+ expect(promotion.credits_count).to eq(0)
24
+ expect(order.adjustments.count).to eq(0)
25
+ end
26
+
27
+ it "should create a discount with correct negative amount" do
28
+ order.shipments.create!(cost: 10, stock_location: create(:stock_location))
29
+
30
+ action.perform(payload)
31
+ expect(promotion.credits_count).to eq(1)
32
+ expect(order.adjustments.count).to eq(1)
33
+ expect(order.adjustments.first.amount.to_i).to eq(-10)
34
+ end
35
+
36
+ it "should create a discount accessible through both order_id and adjustable_id" do
37
+ action.perform(payload)
38
+ expect(order.adjustments.count).to eq(1)
39
+ expect(order.all_adjustments.count).to eq(1)
40
+ end
41
+
42
+ it "should not create a discount when order already has one from this promotion" do
43
+ order.shipments.create!(cost: 10, stock_location: create(:stock_location))
44
+
45
+ action.perform(payload)
46
+ action.perform(payload)
47
+ expect(promotion.credits_count).to eq(1)
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,148 @@
1
+ require 'spec_helper'
2
+
3
+ module Spree
4
+ class Promotion
5
+ module Actions
6
+ describe CreateItemAdjustments, :type => :model do
7
+ let(:order) { create(:order) }
8
+ let(:promotion) { create(:promotion) }
9
+ let(:action) { CreateItemAdjustments.new }
10
+ let!(:line_item) { create(:line_item, :order => order) }
11
+ let(:payload) { { order: order, promotion: promotion } }
12
+
13
+ before do
14
+ allow(action).to receive(:promotion).and_return(promotion)
15
+ promotion.promotion_actions = [action]
16
+ end
17
+
18
+ it_behaves_like 'an adjustment source'
19
+
20
+ context "#perform" do
21
+ # Regression test for #3966
22
+ context "when calculator computes 0" do
23
+ before do
24
+ allow(action).to receive_messages :compute_amount => 0
25
+ end
26
+
27
+ it "does not create an adjustment when calculator returns 0" do
28
+ action.perform(payload)
29
+ expect(action.adjustments).to be_empty
30
+ end
31
+ end
32
+
33
+ context "when calculator returns a non-zero value" do
34
+ before do
35
+ promotion.promotion_actions = [action]
36
+ allow(action).to receive_messages :compute_amount => 10
37
+ end
38
+
39
+ it "creates adjustment with item as adjustable" do
40
+ action.perform(payload)
41
+ expect(action.adjustments.count).to eq(1)
42
+ expect(line_item.reload.adjustments).to eq(action.adjustments)
43
+ end
44
+
45
+ it "creates adjustment with self as source" do
46
+ action.perform(payload)
47
+ expect(line_item.reload.adjustments.first.source).to eq action
48
+ end
49
+
50
+ it "does not perform twice on the same item" do
51
+ 2.times { action.perform(payload) }
52
+ expect(action.adjustments.count).to eq(1)
53
+ end
54
+
55
+ context "with products rules" do
56
+ let!(:second_line_item) { create(:line_item, :order => order) }
57
+ let(:rule) { double Spree::Promotion::Rules::Product }
58
+
59
+ before do
60
+ allow(promotion).to receive(:eligible_rules) { [rule] }
61
+ allow(rule).to receive(:actionable?).and_return(true, false)
62
+ end
63
+
64
+ it "does not create adjustments for line_items not in product rule" do
65
+ action.perform(payload)
66
+ expect(action.adjustments.count).to eql 1
67
+ expect(line_item.reload.adjustments).to match_array action.adjustments
68
+ expect(second_line_item.reload.adjustments).to be_empty
69
+ end
70
+ end
71
+ end
72
+ end
73
+
74
+ context "#compute_amount" do
75
+ before { promotion.promotion_actions = [action] }
76
+
77
+ context "when the adjustable is actionable" do
78
+ it "calls compute on the calculator" do
79
+ allow(action.calculator).to receive(:compute).and_return(10)
80
+ expect(action.calculator).to receive(:compute).with(line_item)
81
+ action.compute_amount(line_item)
82
+ end
83
+
84
+ context "calculator returns amount greater than item total" do
85
+ before do
86
+ expect(action.calculator).to receive(:compute).with(line_item).and_return(300)
87
+ allow(line_item).to receive_messages(amount: 100)
88
+ end
89
+
90
+ it "does not exceed it" do
91
+ expect(action.compute_amount(line_item)).to eql(-100)
92
+ end
93
+ end
94
+ end
95
+
96
+ context "when the adjustable is not actionable" do
97
+ before { allow(promotion).to receive(:line_item_actionable?) { false } }
98
+
99
+ it 'returns 0' do
100
+ expect(action.compute_amount(line_item)).to eql(0)
101
+ end
102
+ end
103
+ end
104
+
105
+ context "#destroy" do
106
+ let!(:action) { CreateItemAdjustments.create! }
107
+ let(:other_action) { CreateItemAdjustments.create! }
108
+ before { promotion.promotion_actions = [other_action] }
109
+
110
+ it "destroys adjustments for incompleted orders" do
111
+ order = Order.create
112
+ action.adjustments.create!(label: "Check",
113
+ amount: 0,
114
+ order: order,
115
+ adjustable: line_item)
116
+
117
+ expect {
118
+ action.destroy
119
+ }.to change { Adjustment.count }.by(-1)
120
+ end
121
+
122
+ it "nullifies adjustments for completed orders" do
123
+ order = Order.create(completed_at: Time.now)
124
+ adjustment = action.adjustments.create!(label: "Check",
125
+ amount: 0,
126
+ order: order,
127
+ adjustable: line_item)
128
+
129
+ expect {
130
+ action.destroy
131
+ }.to change { adjustment.reload.source_id }.from(action.id).to nil
132
+ end
133
+
134
+ it "doesnt mess with unrelated adjustments" do
135
+ other_action.adjustments.create!(label: "Check",
136
+ amount: 0,
137
+ order: order,
138
+ adjustable: line_item)
139
+
140
+ expect {
141
+ action.destroy
142
+ }.not_to change { other_action.adjustments.count }
143
+ end
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end
@@ -0,0 +1,86 @@
1
+ require 'spec_helper'
2
+
3
+ describe Spree::Promotion::Actions::CreateLineItems, type: :model do
4
+ let(:order) { create(:order) }
5
+ let(:action) { Spree::Promotion::Actions::CreateLineItems.create }
6
+ let(:promotion) { stub_model(Spree::Promotion) }
7
+ let(:shirt) { create(:variant) }
8
+ let(:mug) { create(:variant) }
9
+ let(:payload) { { order: order } }
10
+
11
+ def empty_stock(variant)
12
+ variant.stock_items.update_all(backorderable: false)
13
+ variant.stock_items.each(&:reduce_count_on_hand_to_zero)
14
+ end
15
+
16
+ context "#perform" do
17
+ before do
18
+ allow(action).to receive_messages promotion: promotion
19
+ action.promotion_action_line_items.create!(
20
+ variant: mug,
21
+ quantity: 1
22
+ )
23
+ action.promotion_action_line_items.create!(
24
+ variant: shirt,
25
+ quantity: 2
26
+ )
27
+ end
28
+
29
+ context "order is eligible" do
30
+ before do
31
+ allow(promotion).to receive_messages eligible: true
32
+ end
33
+
34
+ it "adds line items to order with correct variant and quantity" do
35
+ action.perform(payload)
36
+ expect(order.line_items.count).to eq(2)
37
+ line_item = order.line_items.find_by_variant_id(mug.id)
38
+ expect(line_item).not_to be_nil
39
+ expect(line_item.quantity).to eq(1)
40
+ end
41
+
42
+ it "only adds the delta of quantity to an order" do
43
+ order.contents.add(shirt, 1)
44
+ action.perform(payload)
45
+ line_item = order.line_items.find_by_variant_id(shirt.id)
46
+ expect(line_item).not_to be_nil
47
+ expect(line_item.quantity).to eq(2)
48
+ end
49
+
50
+ it "doesn't add if the quantity is greater" do
51
+ order.contents.add(shirt, 3)
52
+ action.perform(payload)
53
+ line_item = order.line_items.find_by_variant_id(shirt.id)
54
+ expect(line_item).not_to be_nil
55
+ expect(line_item.quantity).to eq(3)
56
+ end
57
+
58
+ it "doesn't try to add an item if it's out of stock" do
59
+ empty_stock(mug)
60
+ empty_stock(shirt)
61
+
62
+ expect(order.contents).to_not receive(:add)
63
+ action.perform(order: order)
64
+ end
65
+ end
66
+ end
67
+
68
+ describe "#item_available?" do
69
+ let(:item_out_of_stock) do
70
+ action.promotion_action_line_items.create!(variant: mug, quantity: 1)
71
+ end
72
+
73
+ let(:item_in_stock) do
74
+ action.promotion_action_line_items.create!(variant: shirt, quantity: 1)
75
+ end
76
+
77
+ it "returns false if the item is out of stock" do
78
+ empty_stock(mug)
79
+ expect(action.item_available? item_out_of_stock).to be false
80
+ end
81
+
82
+ it "returns true if the item is in stock" do
83
+ expect(action.item_available? item_in_stock).to be true
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,36 @@
1
+ require 'spec_helper'
2
+
3
+ describe Spree::Promotion::Actions::FreeShipping, :type => :model do
4
+ let(:order) { create(:completed_order_with_totals) }
5
+ let(:promotion) { create(:promotion) }
6
+ let(:action) { Spree::Promotion::Actions::FreeShipping.create }
7
+ let(:payload) { { order: order } }
8
+
9
+ it_behaves_like 'an adjustment source'
10
+
11
+ # From promotion spec:
12
+ context "#perform" do
13
+ before do
14
+ order.shipments << create(:shipment)
15
+ promotion.promotion_actions << action
16
+ end
17
+
18
+ it "should create a discount with correct negative amount" do
19
+ expect(order.shipments.count).to eq(2)
20
+ expect(order.shipments.first.cost).to eq(100)
21
+ expect(order.shipments.last.cost).to eq(100)
22
+ expect(action.perform(payload)).to be true
23
+ expect(promotion.credits_count).to eq(2)
24
+ expect(order.shipment_adjustments.count).to eq(2)
25
+ expect(order.shipment_adjustments.first.amount.to_i).to eq(-100)
26
+ expect(order.shipment_adjustments.last.amount.to_i).to eq(-100)
27
+ end
28
+
29
+ it "should not create a discount when order already has one from this promotion" do
30
+ expect(action.perform(payload)).to be true
31
+ expect(action.perform(payload)).to be false
32
+ expect(promotion.credits_count).to eq(2)
33
+ expect(order.shipment_adjustments.count).to eq(2)
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,75 @@
1
+ require 'spec_helper'
2
+
3
+ describe Spree::Promotion::Rules::FirstOrder, :type => :model do
4
+ let(:rule) { Spree::Promotion::Rules::FirstOrder.new }
5
+ let(:order) { mock_model(Spree::Order, :user => nil, :email => nil) }
6
+ let(:user) { mock_model(Spree::LegacyUser) }
7
+
8
+ context "without a user or email" do
9
+ it { expect(rule).not_to be_eligible(order) }
10
+ it "sets an error message" do
11
+ rule.eligible?(order)
12
+ expect(rule.eligibility_errors.full_messages.first).
13
+ to eq "You need to login or provide your email before applying this coupon code."
14
+ end
15
+ end
16
+
17
+ context "first order" do
18
+ context "for a signed user" do
19
+ context "with no completed orders" do
20
+ before(:each) do
21
+ allow(user).to receive_message_chain(:orders, :complete => [])
22
+ end
23
+
24
+ specify do
25
+ allow(order).to receive_messages(:user => user)
26
+ expect(rule).to be_eligible(order)
27
+ end
28
+
29
+ it "should be eligible when user passed in payload data" do
30
+ expect(rule).to be_eligible(order, :user => user)
31
+ end
32
+ end
33
+
34
+ context "with completed orders" do
35
+ before(:each) do
36
+ allow(order).to receive_messages(:user => user)
37
+ end
38
+
39
+ it "should be eligible when checked against first completed order" do
40
+ allow(user).to receive_message_chain(:orders, :complete => [order])
41
+ expect(rule).to be_eligible(order)
42
+ end
43
+
44
+ context "with another order" do
45
+ before { allow(user).to receive_message_chain(:orders, :complete => [mock_model(Spree::Order)]) }
46
+ it { expect(rule).not_to be_eligible(order) }
47
+ it "sets an error message" do
48
+ rule.eligible?(order)
49
+ expect(rule.eligibility_errors.full_messages.first).
50
+ to eq "This coupon code can only be applied to your first order."
51
+ end
52
+ end
53
+ end
54
+ end
55
+
56
+ context "for a guest user" do
57
+ let(:email) { 'user@spreecommerce.com' }
58
+ before { allow(order).to receive_messages :email => 'user@spreecommerce.com' }
59
+
60
+ context "with no other orders" do
61
+ it { expect(rule).to be_eligible(order) }
62
+ end
63
+
64
+ context "with another order" do
65
+ before { allow(rule).to receive_messages(:orders_by_email => [mock_model(Spree::Order)]) }
66
+ it { expect(rule).not_to be_eligible(order) }
67
+ it "sets an error message" do
68
+ rule.eligible?(order)
69
+ expect(rule.eligibility_errors.full_messages.first).
70
+ to eq "This coupon code can only be applied to your first order."
71
+ end
72
+ end
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,282 @@
1
+ require 'spec_helper'
2
+
3
+ describe Spree::Promotion::Rules::ItemTotal, :type => :model do
4
+ let(:rule) { Spree::Promotion::Rules::ItemTotal.new }
5
+ let(:order) { double(:order) }
6
+
7
+ before { rule.preferred_amount_min = 50 }
8
+ before { rule.preferred_amount_max = 60 }
9
+
10
+ context "preferred operator_min set to gt and preferred operator_max set to lt" do
11
+ before do
12
+ rule.preferred_operator_min = 'gt'
13
+ rule.preferred_operator_max = 'lt'
14
+ end
15
+
16
+ context "and item total is lower than prefered maximum amount" do
17
+
18
+ context "and item total is higher than prefered minimum amount" do
19
+ it "should be eligible" do
20
+ allow(order).to receive_messages item_total: 51
21
+ expect(rule).to be_eligible(order)
22
+ end
23
+ end
24
+
25
+ context "and item total is equal to the prefered minimum amount" do
26
+
27
+ before { allow(order).to receive_messages item_total: 50 }
28
+
29
+ it "should not be eligible" do
30
+ expect(rule).to_not be_eligible(order)
31
+ end
32
+
33
+ it "set an error message" do
34
+ rule.eligible?(order)
35
+ expect(rule.eligibility_errors.full_messages.first).
36
+ to eq "This coupon code can't be applied to orders less than or equal to $50.00."
37
+ end
38
+ end
39
+
40
+ context "and item total is lower to the prefered minimum amount" do
41
+ before { allow(order).to receive_messages item_total: 49 }
42
+
43
+ it "should not be eligible" do
44
+ expect(rule).to_not be_eligible(order)
45
+ end
46
+
47
+ it "set an error message" do
48
+ rule.eligible?(order)
49
+ expect(rule.eligibility_errors.full_messages.first).
50
+ to eq "This coupon code can't be applied to orders less than or equal to $50.00."
51
+ end
52
+ end
53
+ end
54
+
55
+ context "and item total is equal to the prefered maximum amount" do
56
+ before { allow(order).to receive_messages item_total: 60 }
57
+
58
+ it "should not be eligible" do
59
+ expect(rule).to_not be_eligible(order)
60
+ end
61
+
62
+ it "set an error message" do
63
+ rule.eligible?(order)
64
+ expect(rule.eligibility_errors.full_messages.first).
65
+ to eq "This coupon code can't be applied to orders higher than $60.00."
66
+ end
67
+ end
68
+
69
+ context "and item total is higher than the prefered maximum amount" do
70
+ before { allow(order).to receive_messages item_total: 61 }
71
+
72
+ it "should not be eligible" do
73
+ expect(rule).to_not be_eligible(order)
74
+ end
75
+
76
+ it "set an error message" do
77
+ rule.eligible?(order)
78
+ expect(rule.eligibility_errors.full_messages.first).
79
+ to eq "This coupon code can't be applied to orders higher than $60.00."
80
+ end
81
+ end
82
+
83
+ end
84
+
85
+ context "preferred operator set to gt and preferred operator_max set to lte" do
86
+ before do
87
+ rule.preferred_operator_min = 'gt'
88
+ rule.preferred_operator_max = 'lte'
89
+ end
90
+
91
+ context "and item total is lower than prefered maximum amount" do
92
+
93
+ context "and item total is higher than prefered minimum amount" do
94
+ it "should be eligible" do
95
+ allow(order).to receive_messages item_total: 51
96
+ expect(rule).to be_eligible(order)
97
+ end
98
+ end
99
+
100
+ context "and item total is equal to the prefered minimum amount" do
101
+
102
+ before { allow(order).to receive_messages item_total: 50 }
103
+
104
+ it "should not be eligible" do
105
+ expect(rule).to_not be_eligible(order)
106
+ end
107
+
108
+ it "set an error message" do
109
+ rule.eligible?(order)
110
+ expect(rule.eligibility_errors.full_messages.first).
111
+ to eq "This coupon code can't be applied to orders less than or equal to $50.00."
112
+ end
113
+ end
114
+
115
+ context "and item total is lower to the prefered minimum amount" do
116
+ before { allow(order).to receive_messages item_total: 49 }
117
+
118
+ it "should not be eligible" do
119
+ expect(rule).to_not be_eligible(order)
120
+ end
121
+
122
+ it "set an error message" do
123
+ rule.eligible?(order)
124
+ expect(rule.eligibility_errors.full_messages.first).
125
+ to eq "This coupon code can't be applied to orders less than or equal to $50.00."
126
+ end
127
+ end
128
+ end
129
+
130
+ context "and item total is equal to the prefered maximum amount" do
131
+ before { allow(order).to receive_messages item_total: 60 }
132
+
133
+ it "should not be eligible" do
134
+ expect(rule).to be_eligible(order)
135
+ end
136
+ end
137
+
138
+ context "and item total is higher than the prefered maximum amount" do
139
+ before { allow(order).to receive_messages item_total: 61 }
140
+
141
+ it "should not be eligible" do
142
+ expect(rule).to_not be_eligible(order)
143
+ end
144
+
145
+ it "set an error message" do
146
+ rule.eligible?(order)
147
+ expect(rule.eligibility_errors.full_messages.first).
148
+ to eq "This coupon code can't be applied to orders higher than $60.00."
149
+ end
150
+ end
151
+ end
152
+
153
+ context "preferred operator set to gte and preferred operator_max set to lt" do
154
+ before do
155
+ rule.preferred_operator_min = 'gte'
156
+ rule.preferred_operator_max = 'lt'
157
+ end
158
+
159
+ context "and item total is lower than prefered maximum amount" do
160
+
161
+ context "and item total is higher than prefered minimum amount" do
162
+ it "should be eligible" do
163
+ allow(order).to receive_messages item_total: 51
164
+ expect(rule).to be_eligible(order)
165
+ end
166
+ end
167
+
168
+ context "and item total is equal to the prefered minimum amount" do
169
+
170
+ before { allow(order).to receive_messages item_total: 50 }
171
+
172
+ it "should not be eligible" do
173
+ expect(rule).to be_eligible(order)
174
+ end
175
+ end
176
+
177
+ context "and item total is lower to the prefered minimum amount" do
178
+ before { allow(order).to receive_messages item_total: 49 }
179
+
180
+ it "should not be eligible" do
181
+ expect(rule).to_not be_eligible(order)
182
+ end
183
+
184
+ it "set an error message" do
185
+ rule.eligible?(order)
186
+ expect(rule.eligibility_errors.full_messages.first).
187
+ to eq "This coupon code can't be applied to orders less than $50.00."
188
+ end
189
+ end
190
+ end
191
+
192
+ context "and item total is equal to the prefered maximum amount" do
193
+ before { allow(order).to receive_messages item_total: 60 }
194
+
195
+ it "should not be eligible" do
196
+ expect(rule).to_not be_eligible(order)
197
+ end
198
+
199
+ it "set an error message" do
200
+ rule.eligible?(order)
201
+ expect(rule.eligibility_errors.full_messages.first).
202
+ to eq "This coupon code can't be applied to orders higher than $60.00."
203
+ end
204
+ end
205
+
206
+ context "and item total is higher than the prefered maximum amount" do
207
+ before { allow(order).to receive_messages item_total: 61 }
208
+
209
+ it "should not be eligible" do
210
+ expect(rule).to_not be_eligible(order)
211
+ end
212
+
213
+ it "set an error message" do
214
+ rule.eligible?(order)
215
+ expect(rule.eligibility_errors.full_messages.first).
216
+ to eq "This coupon code can't be applied to orders higher than $60.00."
217
+ end
218
+ end
219
+
220
+ end
221
+
222
+ context "preferred operator set to gte and preferred operator_max set to lte" do
223
+ before do
224
+ rule.preferred_operator_min = 'gte'
225
+ rule.preferred_operator_max = 'lte'
226
+ end
227
+
228
+ context "and item total is lower than prefered maximum amount" do
229
+ context "and item total is higher than prefered minimum amount" do
230
+ it "should be eligible" do
231
+ allow(order).to receive_messages item_total: 51
232
+ expect(rule).to be_eligible(order)
233
+ end
234
+ end
235
+
236
+ context "and item total is equal to the prefered minimum amount" do
237
+
238
+ before { allow(order).to receive_messages item_total: 50 }
239
+
240
+ it "should not be eligible" do
241
+ expect(rule).to be_eligible(order)
242
+ end
243
+ end
244
+
245
+ context "and item total is lower to the prefered minimum amount" do
246
+ before { allow(order).to receive_messages item_total: 49 }
247
+
248
+ it "should not be eligible" do
249
+ expect(rule).to_not be_eligible(order)
250
+ end
251
+
252
+ it "set an error message" do
253
+ rule.eligible?(order)
254
+ expect(rule.eligibility_errors.full_messages.first).
255
+ to eq "This coupon code can't be applied to orders less than $50.00."
256
+ end
257
+ end
258
+ end
259
+
260
+ context "and item total is equal to the prefered maximum amount" do
261
+ before { allow(order).to receive_messages item_total: 60 }
262
+
263
+ it "should not be eligible" do
264
+ expect(rule).to be_eligible(order)
265
+ end
266
+ end
267
+
268
+ context "and item total is higher than the prefered maximum amount" do
269
+ before { allow(order).to receive_messages item_total: 61 }
270
+
271
+ it "should not be eligible" do
272
+ expect(rule).to_not be_eligible(order)
273
+ end
274
+
275
+ it "set an error message" do
276
+ rule.eligible?(order)
277
+ expect(rule.eligibility_errors.full_messages.first).
278
+ to eq "This coupon code can't be applied to orders higher than $60.00."
279
+ end
280
+ end
281
+ end
282
+ end