Variant override controller spec added

This commit is contained in:
Steve Pettitt
2015-08-22 16:13:49 +01:00
committed by Rob Harrington
parent 34c603a9c3
commit 2921958788
2 changed files with 51 additions and 1 deletions

View File

@@ -14,7 +14,6 @@ module Admin
def bulk_update
collection_hash = Hash[params[:variant_overrides].each_with_index.map { |vo, i| [i, vo] }]
vo_set = VariantOverrideSet.new @variant_overrides, collection_attributes: collection_hash
# Ensure we're authorised to update all variant overrides
vo_set.collection.each { |vo| authorize! :update, vo }

View File

@@ -0,0 +1,51 @@
require 'spec_helper'
module Admin
describe VariantOverridesController, type: :controller do
include AuthenticationWorkflow
let!(:hub_owner) { create :admin_user, enterprise_limit: 2 }
before do
controller.stub spree_current_user: hub_owner
end
describe "bulk_update" do
context "as an enterprise user I update the variant overrides" do
let!(:hub) { create(:distributor_enterprise, owner: hub_owner) }
it "updates the overrides correctly" do
v1 = create(:variant)
v2 = create(:variant)
vo1 = create(:variant_override, hub: hub, variant: v1, price: "6.0", count_on_hand: 5, default_stock: 7)
vo2 = create(:variant_override, hub: hub, variant: v2, price: "6.0", count_on_hand: 5, default_stock: 7)
vo1.price = "10.0"
vo2.default_stock = 12
# Have to use .attributes as otherwise passes just the ID
spree_put :bulk_update, {variant_overrides: [vo1.attributes, vo2.attributes]}
# Retrieve from database
VariantOverride.find(vo1.id).price.should eq 10
VariantOverride.find(vo2.id).default_stock.should eq 12
end
end
end
describe "bulk_reset" do
let!(:hub) { create(:distributor_enterprise, owner: hub_owner) }
before do
controller.stub spree_current_user: hub.owner
end
context "when a reset request is received" do
it "updates stock to default values" do
v1 = create(:variant)
v2 = create(:variant)
vo1 = create(:variant_override, hub: hub, variant: v1, price: "6.0", count_on_hand: 5, default_stock: 7)
vo2 = create(:variant_override, hub: hub, variant: v2, price: "6.0", count_on_hand: 2, default_stock: 1)
params = {"variant_overrides" => [vo1.attributes, vo2.attributes]}
spree_put :bulk_reset, params
vo1.reload
expect(vo1.count_on_hand).to eq 7
vo2.reload
expect(vo2.count_on_hand).to eq 1
end
end
end
end
end