Files
openfoodnetwork/spec/features/admin/variants_spec.rb
2017-05-24 15:05:33 +10:00

79 lines
2.5 KiB
Ruby

require 'spec_helper'
feature %q{
As an admin
I want to manage product variants
} do
include AuthenticationWorkflow
include WebHelper
scenario "creating a new variant" do
# Given a product with a unit-related option type
p = create(:simple_product, variant_unit: "weight", variant_unit_scale: "1")
# When I create a variant on the product
login_to_admin_section
visit spree.admin_product_variants_path p
click_link 'New Variant'
fill_in 'unit_value_human', with: '1'
fill_in 'variant_unit_description', with: 'foo'
click_button 'Create'
# Then the variant should have been created
page.should have_content "Variant \"#{p.name}\" has been successfully created!"
end
scenario "editing unit value and description for a variant", js:true do
# Given a product with unit-related option types, with a variant
p = create(:simple_product, variant_unit: "weight", variant_unit_scale: "1")
v = p.variants.first
v.update_attributes( unit_value: 1, unit_description: 'foo' )
# And the product has option types for the unit-related and non-unit-related option values
p.option_types << v.option_values.first.option_type
# When I view the variant
login_to_admin_section
visit spree.admin_product_variants_path p
page.find('table.index .icon-edit').click
# Then I should not see a traditional option value field for the unit-related option value
expect(page).to_not have_selector "div[data-hook='presentation'] input"
# And I should see unit value and description fields for the unit-related option value
page.should have_field "unit_value_human", with: "1"
page.should have_field "variant_unit_description", with: "foo"
# When I update the fields and save the variant
fill_in "unit_value_human", with: "123"
fill_in "variant_unit_description", with: "bar"
click_button 'Update'
page.should have_content %Q(Variant "#{p.name}" has been successfully updated!)
# Then the unit value and description should have been saved
v.reload
v.unit_value.should == 123
v.unit_description.should == 'bar'
end
it "soft-deletes variants", js: true do
p = create(:simple_product)
v = create(:variant, product: p)
login_to_admin_section
visit spree.admin_product_variants_path p
within "tr#spree_variant_#{v.id}" do
page.find('a.delete-resource').click
end
page.should_not have_selector "tr#spree_variant_#{v.id}"
v.reload
v.deleted_at.should_not be_nil
end
end