加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 资产未在capybara / rspec规范期间加载

发布时间:2020-12-17 04:01:27 所属栏目:百科 来源:网络整理
导读:我正在使用rspec,capybara和launchy来测试我的Web应用程序. 这是我的规格: require 'spec_helper'describe "Routes" do describe "GET requests" do it "GET /root_path" do visit root_path page.should have_content("All of our statuses") click_link "
我正在使用rspec,capybara和launchy来测试我的Web应用程序.

这是我的规格:

require 'spec_helper'

describe "Routes" do
    describe "GET requests" do
        it "GET /root_path" do
            visit root_path
        page.should have_content("All of our statuses")
        click_link "Post a New Status"
        page.should have_content("New status")
        fill_in "status_name",with: "Jimmy balooney"
        fill_in "status_content",with: "Oh my god I am going insaaaaaaaaane!!!"
        click_button "Create Status"
        page.should have_content("Status was successfully created.")
        click_link "Statuses"
        page.should have_content("All of our statuses")
        page.should have_content("Jimmy balooney")
        page.should have_content("Oh my god I am going insaaaaaaaaane!!! ")
        save_and_open_page
        end
    end
end

我的.rspec

--color
--order default

和我的spec_helper.rb:

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment",__FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rspec'

# Requires supporting ruby files with custom matchers and macros,etc,# in spec/support/ and its subdirectories.
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.check_pending! if defined?(ActiveRecord::Migration)

RSpec.configure do |config|
  # ## Mock Framework
  #
  # If you prefer to use mocha,flexmock or RR,uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr
  config.before(:suite) do
    DatabaseCleaner.strategy = :transaction
    DatabaseCleaner.clean_with(:truncation)
  end

  config.before(:each) do
    DatabaseCleaner.start
    DatabaseCleaner.clean
  end

  config.after(:each) do
    DatabaseCleaner.clean
  end

  # 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

  # If true,the base class of anonymous controllers will be inferred
  # automatically. This will be the default behavior in future versions of
  # rspec-rails.
  config.infer_base_class_for_anonymous_controllers = false

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it,you can fix the order by providing
  # the seed,which is printed after each run.
  #     --seed 1234
  config.order = "random"
end

如果你回顾一下我的规范,你会看到一个使用capybara来浏览我的应用程序的rspec规范,并通过调用launchy gem的save_and_open_page方法在浏览器中打开这个最终页面来完成,供人看.但是,在最后一页,没有显示javascript或css,只有纯HTML.

有没有人有任何想法为什么会这样?我想测试javascript,如果加载了所有资产,我会更喜欢它.

解决方法

在config.before(:suite)里面做

加:

%x[bundle exec rake assets:precompile]

要预编译您的Rails资产,然后在test.rb环境文件中添加:

config.action_controller.asset_host = "file://#{::Rails.root}/public"
config.assets.prefix = 'assets_test'

指向预编译资产的位置.现在,您可以在运行Capybara时使用资产.注意:确保您使用git忽略该新文件夹.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读