2016-08-06 13:16:09 -04:00
|
|
|
require "isolation/abstract_unit"
|
|
|
|
require "env_helpers"
|
2010-06-22 09:14:46 -04:00
|
|
|
|
|
|
|
module ApplicationTests
|
2012-01-05 20:30:17 -05:00
|
|
|
class RunnerTest < ActiveSupport::TestCase
|
2010-06-22 09:14:46 -04:00
|
|
|
include ActiveSupport::Testing::Isolation
|
2012-12-06 07:05:45 -05:00
|
|
|
include EnvHelpers
|
2010-06-22 09:14:46 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
build_app
|
|
|
|
|
|
|
|
# Lets create a model so we have something to play with
|
|
|
|
app_file "app/models/user.rb", <<-MODEL
|
|
|
|
class User
|
|
|
|
def self.count
|
|
|
|
42
|
|
|
|
end
|
|
|
|
end
|
|
|
|
MODEL
|
|
|
|
end
|
|
|
|
|
2011-06-06 08:54:05 -04:00
|
|
|
def teardown
|
|
|
|
teardown_app
|
|
|
|
end
|
|
|
|
|
2011-06-10 09:16:27 -04:00
|
|
|
def test_should_include_runner_in_shebang_line_in_help_without_option
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "/rails runner", Dir.chdir(app_path) { `bin/rails runner` }
|
2011-06-10 09:16:27 -04:00
|
|
|
end
|
|
|
|
|
2010-09-16 00:02:33 -04:00
|
|
|
def test_should_include_runner_in_shebang_line_in_help
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "/rails runner", Dir.chdir(app_path) { `bin/rails runner --help` }
|
2010-09-16 00:02:33 -04:00
|
|
|
end
|
|
|
|
|
2010-06-22 09:14:46 -04:00
|
|
|
def test_should_run_ruby_statement
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "42", Dir.chdir(app_path) { `bin/rails runner "puts User.count"` }
|
2010-06-22 09:14:46 -04:00
|
|
|
end
|
|
|
|
|
2017-03-21 23:07:07 -04:00
|
|
|
def test_should_set_argv_when_running_code
|
|
|
|
output = Dir.chdir(app_path) {
|
|
|
|
# Both long and short args, at start and end of ARGV
|
|
|
|
`bin/rails runner "puts ARGV.join(',')" --foo a1 -b a2 a3 --moo`
|
|
|
|
}
|
|
|
|
assert_equal "--foo,a1,-b,a2,a3,--moo", output.chomp
|
|
|
|
end
|
|
|
|
|
2010-06-22 09:14:46 -04:00
|
|
|
def test_should_run_file
|
2013-01-09 16:59:07 -05:00
|
|
|
app_file "bin/count_users.rb", <<-SCRIPT
|
2010-06-22 09:14:46 -04:00
|
|
|
puts User.count
|
|
|
|
SCRIPT
|
|
|
|
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "42", Dir.chdir(app_path) { `bin/rails runner "bin/count_users.rb"` }
|
2010-06-22 09:14:46 -04:00
|
|
|
end
|
|
|
|
|
2016-10-21 14:27:26 -04:00
|
|
|
def test_no_minitest_loaded_in_production_mode
|
|
|
|
app_file "bin/print_features.rb", <<-SCRIPT
|
|
|
|
p $LOADED_FEATURES.grep(/minitest/)
|
|
|
|
SCRIPT
|
|
|
|
assert_match "[]", Dir.chdir(app_path) {
|
|
|
|
`RAILS_ENV=production bin/rails runner "bin/print_features.rb"`
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-06-22 09:14:46 -04:00
|
|
|
def test_should_set_dollar_0_to_file
|
2013-01-09 16:59:07 -05:00
|
|
|
app_file "bin/dollar0.rb", <<-SCRIPT
|
2010-06-22 09:14:46 -04:00
|
|
|
puts $0
|
|
|
|
SCRIPT
|
|
|
|
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "bin/dollar0.rb", Dir.chdir(app_path) { `bin/rails runner "bin/dollar0.rb"` }
|
2010-06-22 09:14:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_set_dollar_program_name_to_file
|
2013-01-09 16:59:07 -05:00
|
|
|
app_file "bin/program_name.rb", <<-SCRIPT
|
2010-06-22 09:14:46 -04:00
|
|
|
puts $PROGRAM_NAME
|
|
|
|
SCRIPT
|
|
|
|
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "bin/program_name.rb", Dir.chdir(app_path) { `bin/rails runner "bin/program_name.rb"` }
|
2010-06-22 09:14:46 -04:00
|
|
|
end
|
2012-05-29 10:31:27 -04:00
|
|
|
|
2016-11-20 10:02:39 -05:00
|
|
|
def test_passes_extra_args_to_file
|
|
|
|
app_file "bin/program_name.rb", <<-SCRIPT
|
|
|
|
p ARGV
|
|
|
|
SCRIPT
|
|
|
|
|
|
|
|
assert_match %w( a b ).to_s, Dir.chdir(app_path) { `bin/rails runner "bin/program_name.rb" a b` }
|
|
|
|
end
|
|
|
|
|
2012-05-29 10:31:27 -04:00
|
|
|
def test_with_hook
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
runner do |app|
|
|
|
|
app.config.ran = true
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "true", Dir.chdir(app_path) { `bin/rails runner "puts Rails.application.config.ran"` }
|
2012-05-29 10:31:27 -04:00
|
|
|
end
|
2012-12-05 12:05:33 -05:00
|
|
|
|
|
|
|
def test_default_environment
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "development", Dir.chdir(app_path) { `bin/rails runner "puts Rails.env"` }
|
2012-12-05 12:05:33 -05:00
|
|
|
end
|
|
|
|
|
2016-01-05 22:53:38 -05:00
|
|
|
def test_runner_detects_syntax_errors
|
2016-03-20 21:08:38 -04:00
|
|
|
output = Dir.chdir(app_path) { `bin/rails runner "puts 'hello world" 2>&1` }
|
|
|
|
assert_not $?.success?
|
2016-08-07 17:17:24 -04:00
|
|
|
assert_match "unterminated string meets end of file", output
|
2016-01-05 22:53:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_runner_detects_bad_script_name
|
2016-03-20 21:08:38 -04:00
|
|
|
output = Dir.chdir(app_path) { `bin/rails runner "iuiqwiourowe" 2>&1` }
|
|
|
|
assert_not $?.success?
|
2016-05-28 16:04:13 -04:00
|
|
|
assert_match "undefined local variable or method `iuiqwiourowe' for", output
|
2016-01-05 22:53:38 -05:00
|
|
|
end
|
|
|
|
|
2012-12-05 12:05:33 -05:00
|
|
|
def test_environment_with_rails_env
|
2012-12-06 07:05:45 -05:00
|
|
|
with_rails_env "production" do
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "production", Dir.chdir(app_path) { `bin/rails runner "puts Rails.env"` }
|
2012-12-06 07:05:45 -05:00
|
|
|
end
|
2012-12-05 12:05:33 -05:00
|
|
|
end
|
2015-03-20 11:14:11 -04:00
|
|
|
|
|
|
|
def test_environment_with_rack_env
|
|
|
|
with_rack_env "production" do
|
2015-06-30 05:19:01 -04:00
|
|
|
assert_match "production", Dir.chdir(app_path) { `bin/rails runner "puts Rails.env"` }
|
2015-03-20 11:14:11 -04:00
|
|
|
end
|
|
|
|
end
|
2010-06-22 09:14:46 -04:00
|
|
|
end
|
|
|
|
end
|