mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-26 05:55:15 +00:00
297 lines
11 KiB
Ruby
297 lines
11 KiB
Ruby
require 'spec_helper'
|
|
|
|
feature "As a consumer I want to shop with a distributor", js: true do
|
|
include AuthenticationWorkflow
|
|
include WebHelper
|
|
|
|
describe "Viewing a distributor" do
|
|
let(:distributor) { create(:distributor_enterprise) }
|
|
|
|
before do #temporarily using the old way to select distributor
|
|
create_enterprise_group_for distributor
|
|
visit "/"
|
|
click_link distributor.name
|
|
end
|
|
it "shows a distributor" do
|
|
visit shop_path
|
|
page.should have_text distributor.name
|
|
end
|
|
|
|
it "shows distributor images" do
|
|
visit shop_path
|
|
first("distributor img")['src'].should == distributor.logo.url(:thumb)
|
|
first("#about img")['src'].should == distributor.promo_image.url(:large)
|
|
end
|
|
|
|
describe "With products in order cycles" do
|
|
let(:supplier) { create(:supplier_enterprise) }
|
|
let(:product) { create(:product, supplier: supplier) }
|
|
let(:order_cycle) { create(:order_cycle, distributors: [distributor], coordinator: create(:distributor_enterprise)) }
|
|
|
|
before do
|
|
exchange = Exchange.find(order_cycle.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.variants << product.master
|
|
end
|
|
|
|
it "shows the suppliers/producers for a distributor" do
|
|
visit shop_path
|
|
click_link "Our Producers"
|
|
page.should have_content supplier.name
|
|
end
|
|
end
|
|
|
|
describe "selecting an order cycle" do
|
|
it "selects an order cycle if only one is open" do
|
|
# create order cycle
|
|
oc1 = create(:simple_order_cycle, distributors: [distributor])
|
|
exchange = Exchange.find(oc1.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "turtles"
|
|
visit shop_path
|
|
page.should have_selector "option[selected]", text: 'turtles'
|
|
end
|
|
|
|
describe "with multiple order cycles" do
|
|
let(:oc1) {create(:simple_order_cycle, distributors: [distributor], orders_close_at: 2.days.from_now)}
|
|
let(:oc2) {create(:simple_order_cycle, distributors: [distributor], orders_close_at: 3.days.from_now)}
|
|
before do
|
|
exchange = Exchange.find(oc1.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "frogs"
|
|
exchange = Exchange.find(oc2.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "turtles"
|
|
visit shop_path
|
|
end
|
|
|
|
it "shows a select with all order cycles" do
|
|
page.should have_selector "option", text: 'frogs'
|
|
page.should have_selector "option", text: 'turtles'
|
|
end
|
|
|
|
it "shows the About Us by default if no order cycle is selected" do
|
|
page.should have_content "Hello, world!"
|
|
end
|
|
|
|
it "doesn't show the table before an order cycle is selected" do
|
|
page.should_not have_selector("input.button.right", visible: true)
|
|
end
|
|
|
|
pending "shows the table after an order cycle is selected" do
|
|
select "frogs", :from => "order_cycle_id"
|
|
page.should have_selector("input.button.right", visible: true)
|
|
end
|
|
|
|
describe "with products in our order cycle" do
|
|
let(:product) { create(:simple_product) }
|
|
before do
|
|
exchange = Exchange.find(oc1.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.variants << product.master
|
|
visit shop_path
|
|
end
|
|
|
|
it "allows us to select an order cycle" do
|
|
select "frogs", :from => "order_cycle_id"
|
|
Spree::Order.last.order_cycle.should == nil
|
|
page.should have_selector "products"
|
|
page.should have_content "Orders close 2 days from now"
|
|
Spree::Order.last.order_cycle.should == oc1
|
|
end
|
|
|
|
it "doesn't show products before an order cycle is selected" do
|
|
page.should_not have_content product.name
|
|
end
|
|
|
|
it "shows products when an order cycle has been selected" do
|
|
select "frogs", :from => "order_cycle_id"
|
|
page.should have_content product.name
|
|
end
|
|
|
|
it "updates the orders close note when order cycle is changed" do
|
|
oc1.stub(:orders_close_at).and_return 3.days.from_now
|
|
select "turtles", :from => "order_cycle_id"
|
|
page.should have_content "Orders close 3 days from now"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "After selecting an order cycle with products visible" do
|
|
let(:oc) { create(:simple_order_cycle, distributors: [distributor]) }
|
|
let(:product) { create(:simple_product) }
|
|
let(:variant) { create(:variant, product: product) }
|
|
let(:exchange) { Exchange.find(oc.exchanges.to_enterprises(distributor).outgoing.first.id) }
|
|
|
|
before do
|
|
exchange.update_attribute :pickup_time, "frogs"
|
|
exchange.variants << product.master
|
|
exchange.variants << variant
|
|
visit shop_path
|
|
select "frogs", :from => "order_cycle_id"
|
|
exchange
|
|
end
|
|
|
|
it "should not show quantity field for product with variants" do
|
|
page.should_not have_selector("#variants_#{product.master.id}", visible: true)
|
|
end
|
|
|
|
it "collapses variants by default" do
|
|
page.should_not have_text variant.options_text
|
|
end
|
|
|
|
it "expands variants" do
|
|
find(".expand").trigger "click"
|
|
page.should have_text variant.options_text
|
|
find(".collapse").trigger "click"
|
|
page.should_not have_text variant.options_text
|
|
end
|
|
|
|
it "uses the adjusted price" do
|
|
enterprise_fee1 = create(:enterprise_fee, amount: 20)
|
|
enterprise_fee2 = create(:enterprise_fee, amount: 3)
|
|
exchange.enterprise_fees = [enterprise_fee1, enterprise_fee2]
|
|
exchange.save
|
|
|
|
visit shop_path
|
|
select "frogs", :from => "order_cycle_id"
|
|
page.should have_content "$#{(product.price + 23.00)}"
|
|
end
|
|
end
|
|
|
|
describe "Filtering on hand and on demand products" do
|
|
let(:oc) { create(:simple_order_cycle, distributors: [distributor]) }
|
|
let(:p1) { create(:simple_product, on_demand: false) }
|
|
let(:p2) { create(:simple_product, on_demand: true) }
|
|
let(:p3) { create(:simple_product, on_demand: false) }
|
|
let(:p4) { create(:simple_product, on_demand: false) }
|
|
let(:v1) { create(:variant, product: p4) }
|
|
|
|
before do
|
|
p1.master.count_on_hand = 1
|
|
p2.master.count_on_hand = 0
|
|
p1.master.update_attribute(:count_on_hand, 1)
|
|
p2.master.update_attribute(:count_on_hand, 0)
|
|
p3.master.update_attribute(:count_on_hand, 0)
|
|
v1.update_attribute(:count_on_hand, 1)
|
|
exchange = Exchange.find(oc.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "frogs"
|
|
exchange.variants << p1.master
|
|
exchange.variants << p2.master
|
|
exchange.variants << p3.master
|
|
exchange.variants << v1
|
|
visit shop_path
|
|
select "frogs", :from => "order_cycle_id"
|
|
exchange
|
|
end
|
|
|
|
it "shows on hand products" do
|
|
page.should have_content p1.name
|
|
page.should have_content p4.name
|
|
end
|
|
it "shows on demand products" do
|
|
page.should have_content p2.name
|
|
end
|
|
it "does not show products that are neither on hand or on demand" do
|
|
page.should_not have_content p3.name
|
|
end
|
|
end
|
|
|
|
describe "group buy products" do
|
|
let(:oc) { create(:simple_order_cycle, distributors: [distributor]) }
|
|
let(:product) { create(:simple_product, group_buy: true) }
|
|
|
|
describe "without variants" do
|
|
before do
|
|
build_and_select_order_cycle
|
|
end
|
|
|
|
it "should show group buy input" do
|
|
page.should have_field "variant_attributes[#{product.master.id}][max_quantity]", :visible => true
|
|
end
|
|
|
|
it "should save group buy data to ze cart" do
|
|
fill_in "variants[#{product.master.id}]", with: 5
|
|
fill_in "variant_attributes[#{product.master.id}][max_quantity]", with: 9
|
|
first("form.custom > input.button.right").click
|
|
page.should have_content product.name
|
|
li = Spree::Order.order(:created_at).last.line_items.order(:created_at).last
|
|
li.max_quantity.should == 9
|
|
li.quantity.should == 5
|
|
end
|
|
end
|
|
|
|
describe "with variants on the product" do
|
|
let(:variant) { create(:variant, product: product) }
|
|
before do
|
|
build_and_select_order_cycle_with_variants
|
|
find(".expand").trigger "click"
|
|
end
|
|
|
|
it "should show group buy input" do
|
|
page.should have_field "variant_attributes[#{variant.id}][max_quantity]", :visible => true
|
|
end
|
|
|
|
it "should save group buy data to ze cart" do
|
|
fill_in "variants[#{variant.id}]", with: 6
|
|
fill_in "variant_attributes[#{variant.id}][max_quantity]", with: 7
|
|
first("form.custom > input.button.right").click
|
|
page.should have_content product.name
|
|
li = Spree::Order.order(:created_at).last.line_items.order(:created_at).last
|
|
li.max_quantity.should == 7
|
|
li.quantity.should == 6
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "adding products to cart" do
|
|
let(:oc) { create(:simple_order_cycle, distributors: [distributor]) }
|
|
let(:product) { create(:simple_product) }
|
|
let(:variant) { create(:variant, product: product) }
|
|
before do
|
|
build_and_select_order_cycle_with_variants
|
|
end
|
|
it "should let us add products to our cart" do
|
|
find(".expand").trigger "click"
|
|
fill_in "variants[#{variant.id}]", with: "1"
|
|
first("form.custom > input.button.right").click
|
|
current_path.should == "/cart"
|
|
page.should have_content product.name
|
|
end
|
|
end
|
|
|
|
context "when no order cycles are available" do
|
|
it "tells us orders are closed" do
|
|
visit shop_path
|
|
page.should have_content "Orders are currently closed for this hub"
|
|
end
|
|
it "shows the last order cycle" do
|
|
oc1 = create(:simple_order_cycle, distributors: [distributor], orders_close_at: 10.days.ago)
|
|
visit shop_path
|
|
page.should have_content "The last cycle closed 10 days ago"
|
|
end
|
|
it "shows the next order cycle" do
|
|
oc1 = create(:simple_order_cycle, distributors: [distributor], orders_open_at: 10.days.from_now)
|
|
visit shop_path
|
|
page.should have_content "The next cycle opens in 10 days"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def build_and_select_order_cycle
|
|
exchange = Exchange.find(oc.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "frogs"
|
|
exchange.variants << product.master
|
|
visit shop_path
|
|
select "frogs", :from => "order_cycle_id"
|
|
exchange
|
|
end
|
|
|
|
|
|
def build_and_select_order_cycle_with_variants
|
|
exchange = Exchange.find(oc.exchanges.to_enterprises(distributor).outgoing.first.id)
|
|
exchange.update_attribute :pickup_time, "frogs"
|
|
exchange.variants << product.master
|
|
exchange.variants << variant
|
|
visit shop_path
|
|
select "frogs", :from => "order_cycle_id"
|
|
exchange
|
|
end
|