mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
20ec1e922c
* Move `app/assets/manifest.js` to `app/assets/config/manifest.js`. Avoid the suggestion that you can/should deep-link `stylesheets/foo`. * Pull in all toplevel stylesheets and JavaScripts, not just `application.js` and `.css`. Demonstrate how to use `link_directory` with a specified `.js`/`.css` type. * Fix RAILS_ENV handling in assets tests. * Shush warnings spam from third-party libs that distract from tests.
73 lines
2.3 KiB
Ruby
73 lines
2.3 KiB
Ruby
require 'isolation/abstract_unit'
|
|
require 'rack/test'
|
|
|
|
module ApplicationTests
|
|
class AssetDebuggingTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
include Rack::Test::Methods
|
|
|
|
def setup
|
|
# FIXME: shush Sass warning spam, not relevant to testing Railties
|
|
Kernel.silence_warnings do
|
|
build_app(initializers: true)
|
|
end
|
|
|
|
app_file "app/assets/javascripts/application.js", "//= require_tree ."
|
|
app_file "app/assets/javascripts/xmlhr.js", "function f1() { alert(); }"
|
|
app_file "app/views/posts/index.html.erb", "<%= javascript_include_tag 'application' %>"
|
|
|
|
app_file "config/routes.rb", <<-RUBY
|
|
Rails.application.routes.draw do
|
|
get '/posts', to: "posts#index"
|
|
end
|
|
RUBY
|
|
|
|
app_file "app/controllers/posts_controller.rb", <<-RUBY
|
|
class PostsController < ActionController::Base
|
|
end
|
|
RUBY
|
|
|
|
ENV["RAILS_ENV"] = "production"
|
|
|
|
boot_rails
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
# FIXME: shush Sass warning spam, not relevant to testing Railties
|
|
def get(*)
|
|
Kernel.silence_warnings { super }
|
|
end
|
|
|
|
test "assets are concatenated when debug is off and compile is off either if debug_assets param is provided" do
|
|
# config.assets.debug and config.assets.compile are false for production environment
|
|
ENV["RAILS_ENV"] = "production"
|
|
output = Dir.chdir(app_path){ `bin/rake assets:precompile --trace 2>&1` }
|
|
assert $?.success?, output
|
|
|
|
# Load app env
|
|
app "production"
|
|
|
|
class ::PostsController < ActionController::Base ; end
|
|
|
|
# the debug_assets params isn't used if compile is off
|
|
get '/posts?debug_assets=true'
|
|
assert_match(/<script src="\/assets\/application-([0-z]+)\.js"><\/script>/, last_response.body)
|
|
assert_no_match(/<script src="\/assets\/xmlhr-([0-z]+)\.js"><\/script>/, last_response.body)
|
|
end
|
|
|
|
test "assets are served with sourcemaps when compile is true and debug_assets params is true" do
|
|
add_to_env_config "production", "config.assets.compile = true"
|
|
|
|
# Load app env
|
|
app "production"
|
|
|
|
class ::PostsController < ActionController::Base ; end
|
|
|
|
get '/posts?debug_assets=true'
|
|
assert_match(/<script src="\/assets\/application(\.debug)?-([0-z]+)\.js"><\/script>/, last_response.body)
|
|
end
|
|
end
|
|
end
|