mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-19 19:46:51 +00:00
63 lines
2.0 KiB
Ruby
63 lines
2.0 KiB
Ruby
require "tasks/sample_data/customer_factory"
|
|
require "tasks/sample_data/enterprise_factory"
|
|
require "tasks/sample_data/fee_factory"
|
|
require "tasks/sample_data/group_factory"
|
|
require "tasks/sample_data/inventory_factory"
|
|
require "tasks/sample_data/order_cycle_factory"
|
|
require "tasks/sample_data/payment_method_factory"
|
|
require "tasks/sample_data/permission_factory"
|
|
require "tasks/sample_data/product_factory"
|
|
require "tasks/sample_data/shipping_method_factory"
|
|
require "tasks/sample_data/taxon_factory"
|
|
require "tasks/sample_data/user_factory"
|
|
require "tasks/sample_data/order_factory"
|
|
|
|
# The sample data generated by this task is supposed to save some time during
|
|
# manual testing. It is not meant to be complete, but we try to improve it
|
|
# over time. How much is hardcoded here is a trade off between developer time
|
|
# and tester time. We also can't include secrets like payment gateway
|
|
# configurations in the code since it's public. We have been discussing this for
|
|
# a while:
|
|
#
|
|
# - https://community.openfoodnetwork.org/t/seed-data-development-provisioning-deployment/910
|
|
# - https://github.com/openfoodfoundation/openfoodnetwork/issues/2072
|
|
#
|
|
namespace :ofn do
|
|
desc 'load sample data for development or staging'
|
|
task sample_data: :environment do
|
|
raise "Please run `rake db:seed` first." unless seeded?
|
|
|
|
users = UserFactory.new.create_samples
|
|
|
|
enterprises = EnterpriseFactory.new.create_samples(users)
|
|
|
|
PermissionFactory.new.create_samples(enterprises)
|
|
|
|
FeeFactory.new.create_samples(enterprises)
|
|
|
|
ShippingMethodFactory.new.create_samples(enterprises)
|
|
|
|
PaymentMethodFactory.new.create_samples(enterprises)
|
|
|
|
TaxonFactory.new.create_samples
|
|
|
|
products = ProductFactory.new.create_samples(enterprises)
|
|
|
|
InventoryFactory.new.create_samples(products)
|
|
|
|
OrderCycleFactory.new.create_samples
|
|
|
|
CustomerFactory.new.create_samples(users)
|
|
|
|
GroupFactory.new.create_samples
|
|
|
|
OrderFactory.new.create_samples
|
|
end
|
|
|
|
def seeded?
|
|
Spree::User.count > 0 &&
|
|
Spree::Country.count > 0 &&
|
|
Spree::State.count > 0
|
|
end
|
|
end
|