2016-08-06 13:16:09 -04:00
|
|
|
require "abstract_unit"
|
|
|
|
require "env_helpers"
|
2016-09-18 14:10:27 -04:00
|
|
|
require "rails/command"
|
|
|
|
require "rails/commands/server/server_command"
|
2012-03-20 19:28:30 -04:00
|
|
|
|
|
|
|
class Rails::ServerTest < ActiveSupport::TestCase
|
2012-12-06 07:05:45 -05:00
|
|
|
include EnvHelpers
|
2012-03-20 19:28:30 -04:00
|
|
|
|
|
|
|
def test_environment_with_server_option
|
2012-05-15 05:37:54 -04:00
|
|
|
args = ["thin", "-e", "production"]
|
2012-03-20 19:28:30 -04:00
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "production", options[:environment]
|
|
|
|
assert_equal "thin", options[:server]
|
2012-03-20 19:28:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_environment_without_server_option
|
2012-05-15 05:37:54 -04:00
|
|
|
args = ["-e", "production"]
|
2012-03-20 19:28:30 -04:00
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "production", options[:environment]
|
2012-03-20 19:28:30 -04:00
|
|
|
assert_nil options[:server]
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_server_option_without_environment
|
|
|
|
args = ["thin"]
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_nil options[:environment]
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "thin", options[:server]
|
2012-03-20 19:28:30 -04:00
|
|
|
end
|
2012-12-05 12:05:33 -05:00
|
|
|
|
|
|
|
def test_environment_with_rails_env
|
2015-03-20 11:14:11 -04:00
|
|
|
with_rack_env nil do
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rails_env "production" do
|
2015-03-20 11:14:11 -04:00
|
|
|
server = Rails::Server.new
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "production", server.options[:environment]
|
2015-03-20 11:14:11 -04:00
|
|
|
end
|
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
|
2013-10-12 14:27:13 -04:00
|
|
|
with_rails_env nil do
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rack_env "production" do
|
2015-03-20 11:14:11 -04:00
|
|
|
server = Rails::Server.new
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "production", server.options[:environment]
|
2015-03-20 11:14:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-03-19 05:06:28 -04:00
|
|
|
|
2015-08-17 14:02:35 -04:00
|
|
|
def test_environment_with_port
|
|
|
|
switch_env "PORT", "1234" do
|
|
|
|
server = Rails::Server.new
|
|
|
|
assert_equal 1234, server.options[:Port]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-04 14:36:39 -04:00
|
|
|
def test_environment_with_host
|
|
|
|
switch_env "HOST", "1.2.3.4" do
|
|
|
|
server = Rails::Server.new
|
|
|
|
assert_equal "1.2.3.4", server.options[:Host]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-20 23:35:20 -04:00
|
|
|
def test_caching_without_option
|
|
|
|
args = []
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
2016-03-20 04:08:57 -04:00
|
|
|
merged_options = Rails::Server.new.default_options.merge(options)
|
|
|
|
assert_equal nil, merged_options[:caching]
|
2015-07-20 23:35:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_caching_with_option
|
|
|
|
args = ["--dev-caching"]
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal true, options[:caching]
|
|
|
|
|
|
|
|
args = ["--no-dev-caching"]
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal false, options[:caching]
|
|
|
|
end
|
|
|
|
|
2015-03-20 11:14:11 -04:00
|
|
|
def test_log_stdout
|
|
|
|
with_rack_env nil do
|
|
|
|
with_rails_env nil do
|
2015-03-19 05:06:28 -04:00
|
|
|
args = []
|
2013-10-12 14:27:13 -04:00
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal true, options[:log_stdout]
|
|
|
|
|
2015-03-20 11:14:11 -04:00
|
|
|
args = ["-e", "development"]
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal true, options[:log_stdout]
|
|
|
|
|
|
|
|
args = ["-e", "production"]
|
2013-10-12 14:27:13 -04:00
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal false, options[:log_stdout]
|
2015-03-20 11:14:11 -04:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rack_env "development" do
|
2015-03-20 11:14:11 -04:00
|
|
|
args = []
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal true, options[:log_stdout]
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rack_env "production" do
|
2015-03-20 11:14:11 -04:00
|
|
|
args = []
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal false, options[:log_stdout]
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rails_env "development" do
|
2015-03-20 11:14:11 -04:00
|
|
|
args = []
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal true, options[:log_stdout]
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
with_rails_env "production" do
|
2015-03-20 11:14:11 -04:00
|
|
|
args = []
|
|
|
|
options = Rails::Server::Options.new.parse!(args)
|
|
|
|
assert_equal false, options[:log_stdout]
|
|
|
|
end
|
2013-10-12 14:27:13 -04:00
|
|
|
end
|
|
|
|
end
|
2013-06-18 16:24:00 -04:00
|
|
|
end
|
2016-01-11 05:12:32 -05:00
|
|
|
|
|
|
|
def test_default_options
|
|
|
|
server = Rails::Server.new
|
|
|
|
old_default_options = server.default_options
|
|
|
|
|
|
|
|
Dir.chdir("..") do
|
|
|
|
assert_equal old_default_options, server.default_options
|
|
|
|
end
|
|
|
|
end
|
2016-03-30 01:11:41 -04:00
|
|
|
|
|
|
|
def test_restart_command_contains_customized_options
|
|
|
|
original_args = ARGV.dup
|
|
|
|
args = ["-p", "4567"]
|
|
|
|
ARGV.replace args
|
|
|
|
|
|
|
|
options = Rails::Server::Options.new.parse! args
|
|
|
|
server = Rails::Server.new options
|
|
|
|
expected = "bin/rails server -p 4567"
|
|
|
|
|
|
|
|
assert_equal expected, server.default_options[:restart_cmd]
|
|
|
|
ensure
|
|
|
|
ARGV.replace original_args
|
|
|
|
end
|
2012-03-20 19:28:30 -04:00
|
|
|
end
|