mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +00:00
87 lines
2.6 KiB
Ruby
87 lines
2.6 KiB
Ruby
FactoryBot.define do
|
|
factory :base_product, class: Spree::Product do
|
|
sequence(:name) { |n| "Product ##{n} - #{Kernel.rand(9999)}" }
|
|
description { generate(:random_description) }
|
|
price 19.99
|
|
cost_price 17.00
|
|
sku 'ABC'
|
|
available_on { 1.year.ago }
|
|
deleted_at nil
|
|
|
|
supplier { Enterprise.is_primary_producer.first || FactoryBot.create(:supplier_enterprise) }
|
|
primary_taxon { Spree::Taxon.first || FactoryBot.create(:taxon) }
|
|
|
|
unit_value 1
|
|
unit_description ''
|
|
|
|
variant_unit 'weight'
|
|
variant_unit_scale 1
|
|
variant_unit_name ''
|
|
|
|
shipping_category { DefaultShippingCategory.find_or_create }
|
|
|
|
# ensure stock item will be created for this products master
|
|
before(:create) { create(:stock_location) if Spree::StockLocation.count == 0 }
|
|
|
|
factory :product do
|
|
transient do
|
|
on_hand { 5 }
|
|
end
|
|
|
|
tax_category { |r| Spree::TaxCategory.first || r.association(:tax_category) }
|
|
|
|
after(:create) do |product, evaluator|
|
|
product.master.on_hand = evaluator.on_hand
|
|
product.variants.first.on_hand = evaluator.on_hand
|
|
end
|
|
|
|
factory :product_with_option_types do
|
|
after(:create) { |product| create(:product_option_type, product: product) }
|
|
end
|
|
end
|
|
end
|
|
|
|
factory :product_with_image, parent: :product do
|
|
after(:create) do |product|
|
|
image = File.open(Rails.root.join('app', 'assets', 'images', 'logo-white.png'))
|
|
Spree::Image.create(attachment: image,
|
|
viewable_id: product.master.id,
|
|
viewable_type: 'Spree::Variant')
|
|
end
|
|
end
|
|
|
|
factory :simple_product, parent: :base_product do
|
|
transient do
|
|
on_demand { false }
|
|
on_hand { 5 }
|
|
end
|
|
after(:create) do |product, evaluator|
|
|
product.master.on_demand = evaluator.on_demand
|
|
product.master.on_hand = evaluator.on_hand
|
|
product.variants.first.on_demand = evaluator.on_demand
|
|
product.variants.first.on_hand = evaluator.on_hand
|
|
end
|
|
end
|
|
|
|
factory :taxed_product, parent: :product do
|
|
transient do
|
|
tax_rate_amount 0
|
|
tax_rate_name ""
|
|
zone nil
|
|
end
|
|
|
|
tax_category { create(:tax_category) }
|
|
|
|
after(:create) do |product, proxy|
|
|
raise "taxed_product factory requires a zone" unless proxy.zone
|
|
|
|
create(:tax_rate, amount: proxy.tax_rate_amount,
|
|
tax_category: product.tax_category,
|
|
included_in_price: true,
|
|
calculator: Calculator::DefaultTax.new,
|
|
zone: proxy.zone,
|
|
name: proxy.tax_rate_name)
|
|
end
|
|
end
|
|
end
|