Spree test environment setting with rspec, factory_girl_rails and spring
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is copied to spec/ when you run 'rails generate rspec:install' | |
ENV['RAILS_ENV'] ||= 'test' | |
require File.expand_path('../../config/environment', __FILE__) | |
# Prevent database truncation if the environment is production | |
if Rails.env.production? | |
abort('The Rails environment is running in production mode!') | |
end | |
require 'spec_helper' | |
require 'rspec/rails' | |
require 'ffaker' # important. spree-generated-factories require this. | |
# Add additional requires below this line. Rails is not loaded until this point! | |
# Requires supporting ruby files with custom matchers and macros, etc, in | |
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are | |
# run as spec files by default. This means that files in spec/support that end | |
# in _spec.rb will both be required and run as specs, causing the specs to be | |
# run twice. It is recommended that you do not name files matching this glob to | |
# end with _spec.rb. You can configure this pattern with the --pattern | |
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. | |
# | |
# The following line is provided for convenience purposes. It has the downside | |
# of increasing the boot-up time by auto-requiring all files in the support | |
# directory. Alternatively, in the individual `*_spec.rb` files, manually | |
# require only the support files necessary. | |
# | |
# Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f } | |
# Checks for pending migrations before tests are run. | |
# If you are not using ActiveRecord, you can remove this line. | |
ActiveRecord::Migration.maintain_test_schema! | |
RSpec.configure do |config| | |
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures | |
config.fixture_path = "#{::Rails.root}/spec/fixtures" | |
# If you're not using ActiveRecord, or you'd prefer not to run each of your | |
# examples within a transaction, remove the following line or assign false | |
# instead of true. | |
config.use_transactional_fixtures = true | |
# RSpec Rails can automatically mix in different behaviours to your tests | |
# based on their file location, for example enabling you to call `get` and | |
# `post` in specs under `spec/controllers`. | |
# | |
# You can disable this behaviour by removing the line below, and instead | |
# explicitly tag your specs with their type, e.g.: | |
# | |
# RSpec.describe UsersController, :type => :controller do | |
# # ... | |
# end | |
# | |
# The different available types are documented in the features, such as in | |
# https://relishapp.com/rspec/rspec-rails/docs | |
config.infer_spec_type_from_file_location! | |
config.include FactoryGirl::Syntax::Methods | |
end | |
Shoulda::Matchers.configure do |config| | |
config.integrate do |with| | |
# Choose a test framework: | |
with.test_framework :rspec | |
# Or, choose the following (which implies all of the above): | |
with.library :rails | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/factories/product_factory.rb | |
# 'name_korean' is added attribute for my own sake. | |
FactoryGirl.modify do | |
factory :base_product do | |
sequence(:name) { |n| "Product ##{n} - #{Kernel.rand(9999)}" } | |
description { generate(:random_description) } | |
price 19.99 | |
cost_price 17.00 | |
sku { generate(:sku) } | |
available_on { 1.year.ago } | |
deleted_at nil | |
shipping_category do |r| | |
Spree::ShippingCategory.first || r.association(:shipping_category) | |
end | |
sequence(:name_korean) { |n| "상품제목 ##{n} - #{Kernel.rand(9999)}" } | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test/factories.rb | |
# you don't have to require explicitly if you use factory_girl_rails | |
# require 'factory_girl' | |
Spree::Zone.class_eval do | |
def self.global | |
find_by(name: 'GlobalZone') || FactoryGirl.create(:global_zone) | |
end | |
end | |
# factory_girl_rails load automatically these. | |
# Dir["#{File.dirname(__FILE__)}/factories/**"].each do |f| | |
# load File.expand_path(f) | |
# end | |
FactoryGirl.define do | |
sequence(:random_string) { Faker::Lorem.sentence } | |
sequence(:random_description) { Faker::Lorem.paragraphs(1 + Kernel.rand(5)).join("\n") } | |
sequence(:random_email) { Faker::Internet.email } | |
sequence(:sku) { |n| "SKU-#{n}" } | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# copy from spree core/lib/spree/testing_support/factories | |
FactoryGirl.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 { generate(:sku) } | |
available_on { 1.year.ago } | |
deleted_at nil | |
shipping_category { |r| Spree::ShippingCategory.first || r.association(:shipping_category) } | |
# ensure stock item will be created for this products master | |
before(:create) { create(:stock_location) if Spree::StockLocation.count == 0 } | |
factory :custom_product do | |
name 'Custom Product' | |
price 17.99 | |
tax_category { |r| Spree::TaxCategory.first || r.association(:tax_category) } | |
end | |
factory :product do | |
tax_category { |r| Spree::TaxCategory.first || r.association(:tax_category) } | |
factory :product_in_stock do | |
after :create do |product| | |
product.master.stock_items.first.adjust_count_on_hand(10) | |
end | |
end | |
factory :product_with_option_types do | |
after(:create) { |product| create(:product_option_type, product: product) } | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment