mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
121 lines
3.7 KiB
Ruby
121 lines
3.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :order_cycle, parent: :simple_order_cycle do
|
|
coordinator_fees { [create(:enterprise_fee, enterprise: coordinator)] }
|
|
|
|
transient do
|
|
suppliers {
|
|
[create(:supplier_enterprise), create(:supplier_enterprise)]
|
|
}
|
|
distributors {
|
|
[create(:distributor_enterprise), create(:distributor_enterprise)]
|
|
}
|
|
end
|
|
|
|
after(:create) do |_oc, proxy|
|
|
proxy.exchanges.incoming.each do |exchange|
|
|
ExchangeFee.create!(
|
|
exchange: exchange,
|
|
enterprise_fee: create(:enterprise_fee, enterprise: exchange.sender)
|
|
)
|
|
end
|
|
|
|
proxy.exchanges.outgoing.each do |exchange|
|
|
ExchangeFee.create!(
|
|
exchange: exchange,
|
|
enterprise_fee: create(:enterprise_fee, enterprise: exchange.receiver)
|
|
)
|
|
end
|
|
|
|
# Products with images
|
|
proxy.exchanges.incoming.each do |exchange|
|
|
product = create(:product, supplier: exchange.sender)
|
|
image = File.open(File.expand_path('../../app/assets/images/logo-white.png', __dir__))
|
|
Spree::Image.create(
|
|
viewable_id: product.master.id,
|
|
viewable_type: 'Spree::Variant',
|
|
alt: "position 1",
|
|
attachment: image,
|
|
position: 1
|
|
)
|
|
|
|
exchange.variants << product.variants.first
|
|
end
|
|
|
|
variants = proxy.exchanges.incoming.map(&:variants).flatten
|
|
proxy.exchanges.outgoing.each do |exchange|
|
|
variants.each { |v| exchange.variants << v }
|
|
end
|
|
end
|
|
end
|
|
|
|
factory :order_cycle_with_overrides, parent: :order_cycle do
|
|
after(:create) do |oc|
|
|
oc.variants.each do |variant|
|
|
create(:variant_override, variant: variant,
|
|
hub: oc.distributors.first,
|
|
price: variant.price + 100)
|
|
end
|
|
end
|
|
end
|
|
|
|
factory :simple_order_cycle, class: OrderCycle do
|
|
sequence(:name) { |n| "Order Cycle #{n}" }
|
|
|
|
orders_open_at { 1.day.ago }
|
|
orders_close_at { 1.week.from_now }
|
|
|
|
coordinator { Enterprise.is_distributor.first || FactoryBot.create(:distributor_enterprise) }
|
|
|
|
transient do
|
|
suppliers { [] }
|
|
distributors { [] }
|
|
variants { [] }
|
|
end
|
|
|
|
after(:create) do |oc, proxy|
|
|
# Incoming Exchanges
|
|
proxy.suppliers.each.with_index do |supplier, i|
|
|
ex = create(:exchange, order_cycle: oc,
|
|
sender: supplier,
|
|
receiver: oc.coordinator,
|
|
incoming: true,
|
|
receival_instructions: "instructions #{i}")
|
|
proxy.variants.each { |v| ex.variants << v }
|
|
end
|
|
|
|
# Outgoing Exchanges
|
|
proxy.distributors.each.with_index do |distributor, i|
|
|
ex = create(:exchange, order_cycle: oc,
|
|
sender: oc.coordinator,
|
|
receiver: distributor,
|
|
incoming: false,
|
|
pickup_time: "time #{i}",
|
|
pickup_instructions: "instructions #{i}")
|
|
proxy.variants.each { |v| ex.variants << v }
|
|
end
|
|
end
|
|
end
|
|
|
|
factory :undated_order_cycle, parent: :simple_order_cycle do
|
|
orders_open_at { nil }
|
|
orders_close_at { nil }
|
|
end
|
|
|
|
factory :upcoming_order_cycle, parent: :simple_order_cycle do
|
|
orders_open_at { 1.week.from_now }
|
|
orders_close_at { 2.weeks.from_now }
|
|
end
|
|
|
|
factory :open_order_cycle, parent: :simple_order_cycle do
|
|
orders_open_at { 1.week.ago }
|
|
orders_close_at { 1.week.from_now }
|
|
end
|
|
|
|
factory :closed_order_cycle, parent: :simple_order_cycle do
|
|
orders_open_at { 2.weeks.ago }
|
|
orders_close_at { 1.week.ago }
|
|
end
|
|
end
|