2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-04-26 03:36:13 -04:00
|
|
|
require "isolation/abstract_unit"
|
2017-09-03 12:55:26 -04:00
|
|
|
require "env_helpers"
|
2010-04-26 03:36:13 -04:00
|
|
|
|
|
|
|
module ApplicationTests
|
2012-01-05 20:30:17 -05:00
|
|
|
class RakeTest < ActiveSupport::TestCase
|
2017-09-03 12:55:26 -04:00
|
|
|
include ActiveSupport::Testing::Isolation, EnvHelpers
|
2010-04-26 03:36:13 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
build_app
|
|
|
|
end
|
2010-06-19 11:51:29 -04:00
|
|
|
|
2011-06-06 08:54:05 -04:00
|
|
|
def teardown
|
|
|
|
teardown_app
|
|
|
|
end
|
|
|
|
|
2010-04-26 03:36:13 -04:00
|
|
|
def test_gems_tasks_are_loaded_first_than_application_ones
|
|
|
|
app_file "lib/tasks/app.rake", <<-RUBY
|
|
|
|
$task_loaded = Rake::Task.task_defined?("db:create:all")
|
|
|
|
RUBY
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-04-26 03:36:13 -04:00
|
|
|
require "#{app_path}/config/environment"
|
|
|
|
::Rails.application.load_tasks
|
|
|
|
assert $task_loaded
|
|
|
|
end
|
2010-04-29 02:39:44 -04:00
|
|
|
|
2020-08-30 12:34:26 -04:00
|
|
|
test "framework tasks are evaluated only once" do
|
|
|
|
assert_equal ["Rails version"], rails("about").scan(/^Rails version/)
|
|
|
|
end
|
|
|
|
|
2020-09-06 15:40:14 -04:00
|
|
|
test "tasks can invoke framework tasks via Rails::Command.invoke" do
|
|
|
|
add_to_config <<~RUBY
|
|
|
|
rake_tasks do
|
|
|
|
task :invoke_about do
|
|
|
|
Rails::Command.invoke :about
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
assert_match(/^Rails version/, rails("invoke_about"))
|
|
|
|
end
|
|
|
|
|
2021-02-14 13:30:05 -05:00
|
|
|
test "help arguments describe rake tasks" do
|
|
|
|
task_description = <<~DESC
|
|
|
|
rails db:migrate
|
|
|
|
Migrate the database (options: VERSION=x, VERBOSE=false, SCOPE=blog).
|
|
|
|
DESC
|
|
|
|
|
|
|
|
assert_match task_description, rails("db:migrate", "-h")
|
|
|
|
end
|
|
|
|
|
2020-06-04 21:13:52 -04:00
|
|
|
test "task backtrace is silenced" do
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
rake_tasks do
|
|
|
|
task :boom do
|
|
|
|
raise "boom"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
backtrace = rails("boom", allow_failure: true).lines.grep(/:\d+:in /)
|
|
|
|
app_lines, framework_lines = backtrace.partition { |line| line.start_with?(app_path) }
|
|
|
|
|
|
|
|
assert_not_empty app_lines
|
|
|
|
assert_empty framework_lines
|
|
|
|
end
|
|
|
|
|
2016-03-04 20:37:30 -05:00
|
|
|
test "task is protected when previous migration was production" do
|
2017-09-03 12:55:26 -04:00
|
|
|
with_rails_env "production" do
|
|
|
|
rails "generate", "model", "product", "name:string"
|
|
|
|
rails "db:create", "db:migrate"
|
|
|
|
output = rails("db:test:prepare", allow_failure: true)
|
2015-08-14 12:31:33 -04:00
|
|
|
|
2016-01-10 22:31:12 -05:00
|
|
|
assert_match(/ActiveRecord::ProtectedEnvironmentError/, output)
|
2015-08-14 12:31:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_not_protected_when_previous_migration_was_not_production
|
2017-09-03 12:55:26 -04:00
|
|
|
with_rails_env "test" do
|
|
|
|
rails "generate", "model", "product", "name:string"
|
|
|
|
rails "db:create", "db:migrate"
|
2017-09-14 04:43:56 -04:00
|
|
|
output = rails("db:test:prepare", "test")
|
2015-08-14 12:31:33 -04:00
|
|
|
|
2018-04-03 21:34:51 -04:00
|
|
|
assert_no_match(/ActiveRecord::ProtectedEnvironmentError/, output)
|
2015-08-14 12:31:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-29 02:39:44 -04:00
|
|
|
def test_environment_is_required_in_rake_tasks
|
|
|
|
app_file "config/environment.rb", <<-RUBY
|
|
|
|
SuperMiddleware = Struct.new(:app)
|
|
|
|
|
2013-06-09 22:47:07 -04:00
|
|
|
Rails.application.configure do
|
2010-04-29 02:39:44 -04:00
|
|
|
config.middleware.use SuperMiddleware
|
|
|
|
end
|
|
|
|
|
2013-06-03 23:57:01 -04:00
|
|
|
Rails.application.initialize!
|
2010-04-29 02:39:44 -04:00
|
|
|
RUBY
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
assert_match("SuperMiddleware", rails("middleware"))
|
2010-04-29 02:39:44 -04:00
|
|
|
end
|
2010-09-24 09:06:35 -04:00
|
|
|
|
2010-11-18 11:19:29 -05:00
|
|
|
def test_initializers_are_executed_in_rake_tasks
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
initializer "do_something" do
|
|
|
|
puts "Doing something..."
|
|
|
|
end
|
|
|
|
|
|
|
|
rake_tasks do
|
2012-10-14 06:03:39 -04:00
|
|
|
task do_nothing: :environment do
|
2010-11-18 11:19:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
output = rails("do_nothing")
|
2010-11-18 11:19:29 -05:00
|
|
|
assert_match "Doing something...", output
|
|
|
|
end
|
|
|
|
|
2013-07-09 16:36:50 -04:00
|
|
|
def test_does_not_explode_when_accessing_a_model
|
2012-08-01 09:07:01 -04:00
|
|
|
add_to_config <<-RUBY
|
|
|
|
rake_tasks do
|
2012-10-14 06:03:39 -04:00
|
|
|
task do_nothing: :environment do
|
2012-08-01 09:07:01 -04:00
|
|
|
Hello.new.world
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
app_file "app/models/hello.rb", <<-RUBY
|
2013-07-09 16:36:50 -04:00
|
|
|
class Hello
|
|
|
|
def world
|
|
|
|
puts 'Hello world'
|
|
|
|
end
|
2012-08-01 09:07:01 -04:00
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
output = rails("do_nothing")
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_match "Hello world", output
|
2012-08-01 09:07:01 -04:00
|
|
|
end
|
|
|
|
|
2017-02-27 16:55:30 -05:00
|
|
|
def test_should_not_eager_load_model_for_rake_when_rake_eager_load_is_false
|
2013-04-11 06:10:54 -04:00
|
|
|
add_to_config <<-RUBY
|
|
|
|
rake_tasks do
|
|
|
|
task do_nothing: :environment do
|
2017-09-14 05:28:57 -04:00
|
|
|
puts 'There is nothing'
|
2013-04-11 06:10:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
add_to_env_config "production", <<-RUBY
|
2013-07-09 16:36:50 -04:00
|
|
|
config.eager_load = true
|
2013-04-11 06:10:54 -04:00
|
|
|
RUBY
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
app_file "app/models/hello.rb", <<-RUBY
|
2013-07-09 16:36:50 -04:00
|
|
|
raise 'should not be pre-required for rake even eager_load=true'
|
|
|
|
RUBY
|
|
|
|
|
2017-09-14 05:28:57 -04:00
|
|
|
output = rails("do_nothing", "RAILS_ENV=production")
|
|
|
|
assert_match "There is nothing", output
|
2013-04-11 06:10:54 -04:00
|
|
|
end
|
|
|
|
|
2017-02-27 16:55:30 -05:00
|
|
|
def test_should_eager_load_model_for_rake_when_rake_eager_load_is_true
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
rake_tasks do
|
|
|
|
task do_something: :environment do
|
|
|
|
puts "Answer: " + Hello::TEST.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
add_to_env_config "production", <<-RUBY
|
|
|
|
config.rake_eager_load = true
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
app_file "app/models/hello.rb", <<-RUBY
|
|
|
|
class Hello
|
|
|
|
TEST = 42
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
output = Dir.chdir(app_path) { `bin/rails do_something RAILS_ENV=production` }
|
|
|
|
assert_equal "Answer: 42\n", output
|
|
|
|
end
|
|
|
|
|
2021-10-07 11:47:28 -04:00
|
|
|
def test_code_statistics
|
2021-08-26 04:39:36 -04:00
|
|
|
assert_match "Code LOC: 61 Test LOC: 3 Code to Test Ratio: 1:0.0",
|
2017-09-03 12:55:26 -04:00
|
|
|
rails("stats")
|
2010-09-24 09:06:35 -04:00
|
|
|
end
|
2010-11-09 00:10:39 -05:00
|
|
|
|
2011-05-05 16:51:29 -04:00
|
|
|
def test_logger_is_flushed_when_exiting_production_rake_tasks
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
rake_tasks do
|
2012-10-14 06:03:39 -04:00
|
|
|
task log_something: :environment do
|
2011-05-05 16:51:29 -04:00
|
|
|
Rails.logger.error("Sample log message")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "log_something", "RAILS_ENV=production"
|
|
|
|
assert_match "Sample log message", File.read("#{app_path}/log/production.log")
|
2011-05-05 16:51:29 -04:00
|
|
|
end
|
|
|
|
|
2011-01-12 18:18:45 -05:00
|
|
|
def test_loading_specific_fixtures
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "model", "user", "username:string", "password:string"
|
|
|
|
rails "generate", "model", "product", "name:string"
|
|
|
|
rails "db:migrate"
|
2011-01-12 18:18:45 -05:00
|
|
|
|
|
|
|
require "#{rails_root}/config/environment"
|
2011-06-06 08:54:05 -04:00
|
|
|
|
2011-01-12 18:18:45 -05:00
|
|
|
# loading a specific fixture
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "db:fixtures:load", "FIXTURES=products"
|
2011-01-12 18:18:45 -05:00
|
|
|
|
2019-02-11 15:44:25 -05:00
|
|
|
assert_equal 2, Product.count
|
|
|
|
assert_equal 0, User.count
|
2011-01-12 18:18:45 -05:00
|
|
|
end
|
2011-07-07 17:58:04 -04:00
|
|
|
|
2012-06-16 13:37:00 -04:00
|
|
|
def test_loading_only_yml_fixtures
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "db:migrate"
|
2012-06-16 13:37:00 -04:00
|
|
|
|
|
|
|
app_file "test/fixtures/products.csv", ""
|
|
|
|
|
|
|
|
require "#{rails_root}/config/environment"
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "db:fixtures:load"
|
2012-06-16 13:37:00 -04:00
|
|
|
end
|
|
|
|
|
2011-07-07 17:58:04 -04:00
|
|
|
def test_scaffold_tests_pass_by_default
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "scaffold", "user", "username:string", "password:string"
|
2018-11-22 04:20:28 -05:00
|
|
|
with_rails_env("test") do
|
|
|
|
rails("db:migrate")
|
|
|
|
end
|
2017-09-14 05:28:57 -04:00
|
|
|
output = rails("test")
|
2011-07-07 17:58:04 -04:00
|
|
|
|
2016-05-28 16:26:45 -04:00
|
|
|
assert_match(/7 runs, 9 assertions, 0 failures, 0 errors/, output)
|
2012-03-14 13:36:15 -04:00
|
|
|
assert_no_match(/Errors running/, output)
|
|
|
|
end
|
|
|
|
|
2015-04-19 18:22:14 -04:00
|
|
|
def test_api_scaffold_tests_pass_by_default
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
config.api_only = true
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
app_file "app/controllers/application_controller.rb", <<-RUBY
|
|
|
|
class ApplicationController < ActionController::API
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "scaffold", "user", "username:string", "password:string"
|
2017-09-14 05:28:57 -04:00
|
|
|
with_rails_env("test") { rails("db:migrate") }
|
|
|
|
output = rails("test")
|
2015-04-19 18:22:14 -04:00
|
|
|
|
2015-06-11 19:24:39 -04:00
|
|
|
assert_match(/5 runs, 7 assertions, 0 failures, 0 errors/, output)
|
2015-04-19 18:22:14 -04:00
|
|
|
assert_no_match(/Errors running/, output)
|
|
|
|
end
|
|
|
|
|
2016-02-05 22:15:28 -05:00
|
|
|
def test_scaffold_with_references_columns_tests_pass_by_default
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "model", "Product"
|
|
|
|
rails "generate", "model", "Cart"
|
|
|
|
rails "generate", "scaffold", "LineItems", "product:references", "cart:belongs_to"
|
2018-11-07 22:21:25 -05:00
|
|
|
with_rails_env("test") do
|
|
|
|
rails("db:migrate")
|
|
|
|
end
|
2017-09-14 05:28:57 -04:00
|
|
|
output = rails("test")
|
2012-12-09 22:35:03 -05:00
|
|
|
|
2016-05-28 16:26:45 -04:00
|
|
|
assert_match(/7 runs, 9 assertions, 0 failures, 0 errors/, output)
|
2012-12-09 22:35:03 -05:00
|
|
|
assert_no_match(/Errors running/, output)
|
|
|
|
end
|
|
|
|
|
2012-06-25 13:40:06 -04:00
|
|
|
def test_db_test_prepare_when_using_sql_format
|
|
|
|
add_to_config "config.active_record.schema_format = :sql"
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "scaffold", "user", "username:string"
|
|
|
|
rails "db:migrate"
|
2017-09-14 05:42:49 -04:00
|
|
|
output = rails("db:test:prepare", "--trace")
|
2020-05-28 15:36:05 -04:00
|
|
|
assert_match(/Execute db:test:load_schema/, output)
|
2012-06-25 13:40:06 -04:00
|
|
|
end
|
|
|
|
|
2011-12-18 14:43:36 -05:00
|
|
|
def test_rake_dump_structure_should_respect_db_structure_env_variable
|
2017-09-03 12:55:26 -04:00
|
|
|
# ensure we have a schema_migrations table to dump
|
|
|
|
rails "db:migrate", "db:structure:dump", "SCHEMA=db/my_structure.sql"
|
2016-08-06 13:16:09 -04:00
|
|
|
assert File.exist?(File.join(app_path, "db", "my_structure.sql"))
|
2011-12-18 14:43:36 -05:00
|
|
|
end
|
2012-02-29 11:01:12 -05:00
|
|
|
|
2012-03-17 00:57:10 -04:00
|
|
|
def test_rake_dump_structure_should_be_called_twice_when_migrate_redo
|
|
|
|
add_to_config "config.active_record.schema_format = :sql"
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "g", "model", "post", "title:string"
|
|
|
|
output = rails("db:migrate:redo", "--trace")
|
2012-03-17 00:57:10 -04:00
|
|
|
|
|
|
|
# expect only Invoke db:structure:dump (first_time)
|
|
|
|
assert_no_match(/^\*\* Invoke db:structure:dump\s+$/, output)
|
|
|
|
end
|
|
|
|
|
2012-02-29 11:01:12 -05:00
|
|
|
def test_rake_dump_schema_cache
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "generate", "model", "post", "title:string"
|
|
|
|
rails "generate", "model", "product", "name:string"
|
|
|
|
rails "db:migrate", "db:schema:cache:dump"
|
2016-11-13 22:18:14 -05:00
|
|
|
assert File.exist?(File.join(app_path, "db", "schema_cache.yml"))
|
2012-02-29 11:01:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_rake_clear_schema_cache
|
2017-09-03 12:55:26 -04:00
|
|
|
rails "db:schema:cache:dump", "db:schema:cache:clear"
|
2018-04-17 18:21:34 -04:00
|
|
|
assert_not File.exist?(File.join(app_path, "db", "schema_cache.yml"))
|
2012-02-29 11:01:12 -05:00
|
|
|
end
|
2012-05-28 11:10:04 -04:00
|
|
|
|
2012-06-10 10:26:55 -04:00
|
|
|
def test_copy_templates
|
2017-09-14 04:43:56 -04:00
|
|
|
rails "app:templates:copy"
|
|
|
|
%w(controller mailer scaffold).each do |dir|
|
|
|
|
assert File.exist?(File.join(app_path, "lib", "templates", "erb", dir))
|
|
|
|
end
|
2021-08-26 07:40:25 -04:00
|
|
|
%w(controller helper scaffold_controller).each do |dir|
|
2017-09-14 04:43:56 -04:00
|
|
|
assert File.exist?(File.join(app_path, "lib", "templates", "rails", dir))
|
2012-06-10 10:26:55 -04:00
|
|
|
end
|
|
|
|
end
|
2014-03-08 09:51:49 -05:00
|
|
|
|
|
|
|
def test_template_load_initializers
|
|
|
|
app_file "config/initializers/dummy.rb", "puts 'Hello, World!'"
|
|
|
|
app_file "template.rb", ""
|
|
|
|
|
2017-09-03 12:55:26 -04:00
|
|
|
output = rails("app:template", "LOCATION=template.rb")
|
2014-03-08 09:51:49 -05:00
|
|
|
assert_match(/Hello, World!/, output)
|
|
|
|
end
|
2010-04-26 03:36:13 -04:00
|
|
|
end
|
2011-09-09 21:50:32 -04:00
|
|
|
end
|