0

Я довольно новичок в рельсах, поэтому для меня это немного загадка.Rails: тесты с огурцами (с JS) после добавления активов в CSS

Я добавил некоторые файлы шрифтов в app/assets/fonts и включил их в файл SCSS с помощью вспомогательного помощника asset-url. Однако сейчас я получаю ошибки, похожие на:

No route matches assets/9df317a3-a79e-422e-b4e2-35ccd29cd5b7 (ActionController::RoutingError)

(обратите внимание на недостающее расширение файла?)

на моих огурцах тестов, но только на тестах с @javascript флагом. Я попробовал следующее:

RAILS_ENV=test rake assets:precompile

и исправления в этой теме не получилось:

Capybara tests with :js=>true... Routing Error: No route matches [GET] "/assets"

Нить предполагает, что существует неправильный актив где-то, но это происходит даже если я удалю все файлы, кроме одного из моего CSS. Кроме того, приложение сообщает о 404s, а шрифты работают в dev env. Это единственные активы в приложении!

Я использую:

  • Rails 4
  • Огурцы
  • Капибара
  • Полтергейст (для испытаний JS)

Css:

@font-face{ 
    font-family:"l baskerville w01_n4"; 
    src:asset-url("8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix")format("eot") 
} 
etc... 

(файлы предоставляются fonts.com [отсюда ужасные имена файлов])

среды/test.rb:

Rails.application.configure do 
    # Settings specified here will take precedence over those in config/application.rb. 

    # The test environment is used exclusively to run your application's 
    # test suite. You never need to work with it otherwise. Remember that 
    # your test database is "scratch space" for the test suite and is wiped 
    # and recreated between test runs. Don't rely on the data there! 
    config.cache_classes = true 

    # Do not eager load code on boot. This avoids loading your whole application 
    # just for the purpose of running a single test. If you are using a tool that 
    # preloads Rails for running tests, you may have to set it to true. 
    config.eager_load = false 

    # Configure static file server for tests with Cache-Control for performance. 
    config.serve_static_files = true 
    config.static_cache_control = 'public, max-age=3600' 

    # Show full error reports and disable caching. 
    config.consider_all_requests_local  = true 
    config.action_controller.perform_caching = false 

    # Raise exceptions instead of rendering exception templates. 
    config.action_dispatch.show_exceptions = false 

    # Disable request forgery protection in test environment. 
    config.action_controller.allow_forgery_protection = false 

    # Tell Action Mailer not to deliver emails to the real world. 
    # The :test delivery method accumulates sent emails in the 
    # ActionMailer::Base.deliveries array. 
    config.action_mailer.delivery_method = :test 

    # Randomize the order test cases are executed. 
    config.active_support.test_order = :random 

    # Print deprecation notices to the stderr. 
    config.active_support.deprecation = :stderr 

    # Raises error for missing translations 
    # config.action_view.raise_on_missing_translations = true 
end 

Любая помощь будет оценена, я предполагаю, что это проблема с конвейер активов в тестовой и производственной среде. Но я не знаю, с чего начать.

Спасибо,

LM

ответ

0

Оказывается, ответ простой синтаксической ошибки:

src: asset-url("8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix")format("eot")

Должно быть:

src: font-url(url("8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix")) format("eot")

Надеюсь Тхи s полезен для некоторых других новичков, подобных мне.