solidus_frontend 1.0.7 → 1.1.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of solidus_frontend might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/spree/frontend/checkout/address.js.coffee +6 -5
- data/app/controllers/spree/checkout_controller.rb +5 -3
- data/app/controllers/spree/store_controller.rb +2 -1
- data/app/views/spree/address/_form.html.erb +15 -15
- data/lib/spree/frontend.rb +0 -2
- metadata +9 -79
- data/CHANGELOG.md +0 -1
- data/Gemfile +0 -6
- data/Rakefile +0 -15
- data/lib/spree/frontend/preference_rescue.rb +0 -25
- data/script/rails +0 -9
- data/solidus_frontend.gemspec +0 -30
- data/spec/controllers/controller_extension_spec.rb +0 -126
- data/spec/controllers/controller_helpers_spec.rb +0 -26
- data/spec/controllers/spree/checkout_controller_spec.rb +0 -447
- data/spec/controllers/spree/checkout_controller_with_views_spec.rb +0 -36
- data/spec/controllers/spree/content_controller_spec.rb +0 -7
- data/spec/controllers/spree/current_order_tracking_spec.rb +0 -44
- data/spec/controllers/spree/home_controller_spec.rb +0 -27
- data/spec/controllers/spree/orders_controller_ability_spec.rb +0 -104
- data/spec/controllers/spree/orders_controller_spec.rb +0 -134
- data/spec/controllers/spree/orders_controller_transitions_spec.rb +0 -31
- data/spec/controllers/spree/products_controller_spec.rb +0 -36
- data/spec/controllers/spree/taxons_controller_spec.rb +0 -12
- data/spec/features/address_spec.rb +0 -76
- data/spec/features/automatic_promotion_adjustments_spec.rb +0 -47
- data/spec/features/caching/products_spec.rb +0 -55
- data/spec/features/caching/taxons_spec.rb +0 -22
- data/spec/features/cart_spec.rb +0 -81
- data/spec/features/checkout_spec.rb +0 -513
- data/spec/features/checkout_unshippable_spec.rb +0 -35
- data/spec/features/coupon_code_spec.rb +0 -227
- data/spec/features/currency_spec.rb +0 -18
- data/spec/features/free_shipping_promotions_spec.rb +0 -59
- data/spec/features/locale_spec.rb +0 -60
- data/spec/features/order_spec.rb +0 -73
- data/spec/features/products_spec.rb +0 -260
- data/spec/features/promotion_code_invalidation_spec.rb +0 -51
- data/spec/features/quantity_promotions_spec.rb +0 -128
- data/spec/features/taxons_spec.rb +0 -135
- data/spec/features/template_rendering_spec.rb +0 -19
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spec/helpers/base_helper_spec.rb +0 -11
- data/spec/spec_helper.rb +0 -121
- data/spec/support/shared_contexts/checkout_setup.rb +0 -9
- data/spec/support/shared_contexts/custom_products.rb +0 -25
- data/spec/support/shared_contexts/product_prototypes.rb +0 -30
- data/spec/views/spree/checkout/_summary_spec.rb +0 -11
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe "Template rendering", :type => :feature do
|
4
|
-
|
5
|
-
after do
|
6
|
-
Capybara.ignore_hidden_elements = true
|
7
|
-
end
|
8
|
-
|
9
|
-
before do
|
10
|
-
Capybara.ignore_hidden_elements = false
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'layout should have canonical tag referencing site url' do
|
14
|
-
Spree::Store.create!(code: 'spree', name: 'My Spree Store', url: 'spreestore.example.com', mail_from_address: 'test@example.com')
|
15
|
-
|
16
|
-
visit spree.root_path
|
17
|
-
expect(find('link[rel=canonical]')[:href]).to eql('http://spreestore.example.com/')
|
18
|
-
end
|
19
|
-
end
|
Binary file
|
@@ -1,11 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
module Spree
|
4
|
-
describe BaseHelper, :type => :helper do
|
5
|
-
# Regression test for #2759
|
6
|
-
it "nested_taxons_path works with a Taxon object" do
|
7
|
-
taxon = create(:taxon, :name => "iphone")
|
8
|
-
expect(spree.nested_taxons_path(taxon)).to eq("/t/iphone")
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
data/spec/spec_helper.rb
DELETED
@@ -1,121 +0,0 @@
|
|
1
|
-
if ENV["COVERAGE"]
|
2
|
-
# Run Coverage report
|
3
|
-
require 'simplecov'
|
4
|
-
SimpleCov.start do
|
5
|
-
add_group 'Controllers', 'app/controllers'
|
6
|
-
add_group 'Helpers', 'app/helpers'
|
7
|
-
add_group 'Mailers', 'app/mailers'
|
8
|
-
add_group 'Models', 'app/models'
|
9
|
-
add_group 'Views', 'app/views'
|
10
|
-
add_group 'Libraries', 'lib'
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
# This file is copied to ~/spec when you run 'ruby script/generate rspec'
|
15
|
-
# from the project root directory.
|
16
|
-
ENV["RAILS_ENV"] ||= 'test'
|
17
|
-
|
18
|
-
begin
|
19
|
-
require File.expand_path("../dummy/config/environment", __FILE__)
|
20
|
-
rescue LoadError
|
21
|
-
$stderr.puts "Could not load dummy application. Please ensure you have run `bundle exec rake test_app`"
|
22
|
-
exit 1
|
23
|
-
end
|
24
|
-
|
25
|
-
require 'rspec/rails'
|
26
|
-
require 'ffaker'
|
27
|
-
|
28
|
-
# Requires supporting files with custom matchers and macros, etc,
|
29
|
-
# in ./support/ and its subdirectories.
|
30
|
-
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
31
|
-
|
32
|
-
require 'database_cleaner'
|
33
|
-
|
34
|
-
if ENV["CHECK_TRANSLATIONS"]
|
35
|
-
require "spree/testing_support/i18n"
|
36
|
-
end
|
37
|
-
|
38
|
-
require 'spree/testing_support/authorization_helpers'
|
39
|
-
require 'spree/testing_support/capybara_ext'
|
40
|
-
require 'spree/testing_support/factories'
|
41
|
-
require 'spree/testing_support/preferences'
|
42
|
-
require 'spree/testing_support/controller_requests'
|
43
|
-
require 'spree/testing_support/flash'
|
44
|
-
require 'spree/testing_support/url_helpers'
|
45
|
-
require 'spree/testing_support/order_walkthrough'
|
46
|
-
require 'spree/testing_support/caching'
|
47
|
-
|
48
|
-
require 'paperclip/matchers'
|
49
|
-
|
50
|
-
if ENV['WEBDRIVER'] == 'accessible'
|
51
|
-
require 'capybara/accessible'
|
52
|
-
Capybara.javascript_driver = :accessible
|
53
|
-
else
|
54
|
-
require 'capybara/poltergeist'
|
55
|
-
Capybara.javascript_driver = :poltergeist
|
56
|
-
end
|
57
|
-
|
58
|
-
RSpec.configure do |config|
|
59
|
-
config.color = true
|
60
|
-
config.infer_spec_type_from_file_location!
|
61
|
-
config.mock_with :rspec
|
62
|
-
|
63
|
-
config.fixture_path = File.join(File.expand_path(File.dirname(__FILE__)), "fixtures")
|
64
|
-
|
65
|
-
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
66
|
-
# examples within a transaction, comment the following line or assign false
|
67
|
-
# instead of true.
|
68
|
-
config.use_transactional_fixtures = false
|
69
|
-
|
70
|
-
if ENV['WEBDRIVER'] == 'accessible'
|
71
|
-
config.around(:each, :inaccessible => true) do |example|
|
72
|
-
Capybara::Accessible.skip_audit { example.run }
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
config.before(:suite) do
|
77
|
-
DatabaseCleaner.clean_with :truncation
|
78
|
-
end
|
79
|
-
|
80
|
-
config.before(:each) do
|
81
|
-
Rails.cache.clear
|
82
|
-
reset_spree_preferences
|
83
|
-
WebMock.disable!
|
84
|
-
if RSpec.current_example.metadata[:js]
|
85
|
-
DatabaseCleaner.strategy = :truncation
|
86
|
-
else
|
87
|
-
DatabaseCleaner.strategy = :transaction
|
88
|
-
end
|
89
|
-
DatabaseCleaner.start
|
90
|
-
end
|
91
|
-
|
92
|
-
config.after(:each) do
|
93
|
-
DatabaseCleaner.clean
|
94
|
-
end
|
95
|
-
|
96
|
-
config.after(:each, :type => :feature) do |example|
|
97
|
-
missing_translations = page.body.scan(/translation missing: #{I18n.locale}\.(.*?)[\s<\"&]/)
|
98
|
-
if missing_translations.any?
|
99
|
-
puts "Found missing translations: #{missing_translations.inspect}"
|
100
|
-
puts "In spec: #{example.location}"
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
|
-
|
105
|
-
config.include FactoryGirl::Syntax::Methods
|
106
|
-
|
107
|
-
config.include Spree::TestingSupport::Preferences
|
108
|
-
config.include Spree::TestingSupport::UrlHelpers
|
109
|
-
config.include Spree::TestingSupport::ControllerRequests, type: :controller
|
110
|
-
config.include Spree::TestingSupport::Flash
|
111
|
-
|
112
|
-
config.include Paperclip::Shoulda::Matchers
|
113
|
-
|
114
|
-
config.fail_fast = ENV['FAIL_FAST'] || false
|
115
|
-
|
116
|
-
config.example_status_persistence_file_path = "./spec/examples.txt"
|
117
|
-
|
118
|
-
config.order = :random
|
119
|
-
|
120
|
-
Kernel.srand config.seed
|
121
|
-
end
|
@@ -1,9 +0,0 @@
|
|
1
|
-
shared_context 'checkout setup' do
|
2
|
-
let!(:country) { create(:country, states_required: true) }
|
3
|
-
let!(:state) { create(:state, country: country) }
|
4
|
-
let!(:shipping_method) { create(:shipping_method) }
|
5
|
-
let!(:stock_location) { create(:stock_location) }
|
6
|
-
let!(:mug) { create(:product, name: "RoR Mug") }
|
7
|
-
let!(:payment_method) { create(:check_payment_method) }
|
8
|
-
let!(:zone) { create(:zone) }
|
9
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
shared_context "custom products" do
|
2
|
-
before(:each) do
|
3
|
-
taxonomy = FactoryGirl.create(:taxonomy, :name => 'Categories')
|
4
|
-
root = taxonomy.root
|
5
|
-
clothing_taxon = FactoryGirl.create(:taxon, :name => 'Clothing', :parent_id => root.id)
|
6
|
-
bags_taxon = FactoryGirl.create(:taxon, :name => 'Bags', :parent_id => root.id)
|
7
|
-
mugs_taxon = FactoryGirl.create(:taxon, :name => 'Mugs', :parent_id => root.id)
|
8
|
-
|
9
|
-
taxonomy = FactoryGirl.create(:taxonomy, :name => 'Brands')
|
10
|
-
root = taxonomy.root
|
11
|
-
apache_taxon = FactoryGirl.create(:taxon, :name => 'Apache', :parent_id => root.id)
|
12
|
-
rails_taxon = FactoryGirl.create(:taxon, :name => 'Ruby on Rails', :parent_id => root.id)
|
13
|
-
ruby_taxon = FactoryGirl.create(:taxon, :name => 'Ruby', :parent_id => root.id)
|
14
|
-
|
15
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Ringer T-Shirt', :price => '19.99', :taxons => [rails_taxon, clothing_taxon])
|
16
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Mug', :price => '15.99', :taxons => [rails_taxon, mugs_taxon])
|
17
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Tote', :price => '15.99', :taxons => [rails_taxon, bags_taxon])
|
18
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Bag', :price => '22.99', :taxons => [rails_taxon, bags_taxon])
|
19
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Baseball Jersey', :price => '19.99', :taxons => [rails_taxon, clothing_taxon])
|
20
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Stein', :price => '16.99', :taxons => [rails_taxon, mugs_taxon])
|
21
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby on Rails Jr. Spaghetti', :price => '19.99', :taxons => [rails_taxon, clothing_taxon])
|
22
|
-
FactoryGirl.create(:custom_product, :name => 'Ruby Baseball Jersey', :price => '19.99', :taxons => [ruby_taxon, clothing_taxon])
|
23
|
-
FactoryGirl.create(:custom_product, :name => 'Apache Baseball Jersey', :price => '19.99', :taxons => [apache_taxon, clothing_taxon])
|
24
|
-
end
|
25
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
shared_context "product prototype" do
|
2
|
-
|
3
|
-
def build_option_type_with_values(name, values)
|
4
|
-
ot = FactoryGirl.create(:option_type, :name => name)
|
5
|
-
values.each do |val|
|
6
|
-
ot.option_values.create(:name => val.downcase, :presentation => val)
|
7
|
-
end
|
8
|
-
ot
|
9
|
-
end
|
10
|
-
|
11
|
-
let(:product_attributes) do
|
12
|
-
# FactoryGirl.attributes_for is un-deprecated!
|
13
|
-
# https://github.com/thoughtbot/factory_girl/issues/274#issuecomment-3592054
|
14
|
-
FactoryGirl.attributes_for(:base_product)
|
15
|
-
end
|
16
|
-
|
17
|
-
let(:prototype) do
|
18
|
-
size = build_option_type_with_values("size", %w(Small Medium Large))
|
19
|
-
FactoryGirl.create(:prototype, :name => "Size", :option_types => [ size ])
|
20
|
-
end
|
21
|
-
|
22
|
-
let(:option_values_hash) do
|
23
|
-
hash = {}
|
24
|
-
prototype.option_types.each do |i|
|
25
|
-
hash[i.id.to_s] = i.option_value_ids
|
26
|
-
end
|
27
|
-
hash
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe "spree/checkout/_summary.html.erb", :type => :view do
|
4
|
-
# Regression spec for #4223
|
5
|
-
it "does not use the @order instance variable" do
|
6
|
-
order = stub_model(Spree::Order)
|
7
|
-
expect do
|
8
|
-
render :partial => "spree/checkout/summary", :locals => {:order => order}
|
9
|
-
end.not_to raise_error
|
10
|
-
end
|
11
|
-
end
|