2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
require "isolation/abstract_unit"
|
2017-07-25 02:01:33 -04:00
|
|
|
require "console_helpers"
|
2009-10-05 10:41:08 -04:00
|
|
|
|
2012-01-05 20:30:17 -05:00
|
|
|
class ConsoleTest < ActiveSupport::TestCase
|
2011-06-06 08:54:05 -04:00
|
|
|
include ActiveSupport::Testing::Isolation
|
2009-10-05 10:41:08 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
build_app
|
2010-02-26 06:09:39 -05:00
|
|
|
end
|
2009-10-05 10:41:08 -04:00
|
|
|
|
2011-06-06 06:43:22 -04:00
|
|
|
def teardown
|
2011-06-06 08:54:05 -04:00
|
|
|
teardown_app
|
2011-06-06 06:43:22 -04:00
|
|
|
end
|
|
|
|
|
2011-05-04 10:39:01 -04:00
|
|
|
def load_environment(sandbox = false)
|
2009-10-05 10:41:08 -04:00
|
|
|
require "#{rails_root}/config/environment"
|
2011-05-24 19:37:55 -04:00
|
|
|
Rails.application.sandbox = sandbox
|
|
|
|
Rails.application.load_console
|
2009-10-05 10:41:08 -04:00
|
|
|
end
|
|
|
|
|
2011-11-03 15:50:53 -04:00
|
|
|
def irb_context
|
2011-11-09 01:42:19 -05:00
|
|
|
Object.new.extend(Rails::ConsoleMethods)
|
2011-11-03 15:50:53 -04:00
|
|
|
end
|
|
|
|
|
2009-10-05 10:41:08 -04:00
|
|
|
def test_app_method_should_return_integration_session
|
2018-12-20 11:39:18 -05:00
|
|
|
TestHelpers::Rack.remove_method :app
|
2010-02-26 06:09:39 -05:00
|
|
|
load_environment
|
2011-11-03 15:50:53 -04:00
|
|
|
console_session = irb_context.app
|
2010-09-24 20:15:52 -04:00
|
|
|
assert_instance_of ActionDispatch::Integration::Session, console_session
|
2009-10-05 10:41:08 -04:00
|
|
|
end
|
|
|
|
|
2015-06-05 03:30:54 -04:00
|
|
|
def test_app_can_access_path_helper_method
|
2016-08-06 13:16:09 -04:00
|
|
|
app_file "config/routes.rb", <<-RUBY
|
2015-06-05 03:30:54 -04:00
|
|
|
Rails.application.routes.draw do
|
|
|
|
get 'foo', to: 'foo#index'
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
load_environment
|
|
|
|
console_session = irb_context.app
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "/foo", console_session.foo_path
|
2015-06-05 03:30:54 -04:00
|
|
|
end
|
|
|
|
|
2009-10-05 10:41:08 -04:00
|
|
|
def test_new_session_should_return_integration_session
|
2010-02-26 06:09:39 -05:00
|
|
|
load_environment
|
2011-11-03 15:50:53 -04:00
|
|
|
session = irb_context.new_session
|
2010-09-24 20:15:52 -04:00
|
|
|
assert_instance_of ActionDispatch::Integration::Session, session
|
2009-10-05 10:41:08 -04:00
|
|
|
end
|
|
|
|
|
2010-12-19 18:58:58 -05:00
|
|
|
def test_reload_should_fire_preparation_and_cleanup_callbacks
|
2010-02-26 06:09:39 -05:00
|
|
|
load_environment
|
2009-10-05 10:41:08 -04:00
|
|
|
a = b = c = nil
|
|
|
|
|
|
|
|
# TODO: These should be defined on the initializer
|
2016-02-21 20:25:52 -05:00
|
|
|
ActiveSupport::Reloader.to_complete { a = b = c = 1 }
|
|
|
|
ActiveSupport::Reloader.to_complete { b = c = 2 }
|
|
|
|
ActiveSupport::Reloader.to_prepare { c = 3 }
|
2009-10-05 10:41:08 -04:00
|
|
|
|
2016-02-21 20:25:52 -05:00
|
|
|
irb_context.reload!(false)
|
2009-10-05 10:41:08 -04:00
|
|
|
|
|
|
|
assert_equal 1, a
|
|
|
|
assert_equal 2, b
|
|
|
|
assert_equal 3, c
|
|
|
|
end
|
|
|
|
|
2010-02-26 06:09:39 -05:00
|
|
|
def test_reload_should_reload_constants
|
|
|
|
app_file "app/models/user.rb", <<-MODEL
|
|
|
|
class User
|
|
|
|
attr_accessor :name
|
|
|
|
end
|
|
|
|
MODEL
|
|
|
|
|
|
|
|
load_environment
|
2018-01-24 21:14:10 -05:00
|
|
|
assert_respond_to User.new, :name
|
2011-12-12 16:51:33 -05:00
|
|
|
|
2010-02-26 06:09:39 -05:00
|
|
|
app_file "app/models/user.rb", <<-MODEL
|
|
|
|
class User
|
|
|
|
attr_accessor :name, :age
|
|
|
|
end
|
|
|
|
MODEL
|
|
|
|
|
2018-01-24 21:14:10 -05:00
|
|
|
assert_not_respond_to User.new, :age
|
2016-02-21 20:25:52 -05:00
|
|
|
irb_context.reload!(false)
|
2018-01-24 21:14:10 -05:00
|
|
|
assert_respond_to User.new, :age
|
2010-02-26 06:09:39 -05:00
|
|
|
end
|
|
|
|
|
2009-10-05 10:41:08 -04:00
|
|
|
def test_access_to_helpers
|
2010-02-26 06:09:39 -05:00
|
|
|
load_environment
|
2011-11-03 15:50:53 -04:00
|
|
|
helper = irb_context.helper
|
2009-10-05 10:41:08 -04:00
|
|
|
assert_not_nil helper
|
|
|
|
assert_instance_of ActionView::Base, helper
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_equal "Once upon a time in a world...",
|
|
|
|
helper.truncate("Once upon a time in a world far far away")
|
2009-10-05 10:41:08 -04:00
|
|
|
end
|
2013-03-08 08:34:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class FullStackConsoleTest < ActiveSupport::TestCase
|
2017-07-25 02:01:33 -04:00
|
|
|
include ConsoleHelpers
|
|
|
|
|
2013-03-08 08:34:58 -05:00
|
|
|
def setup
|
2017-07-25 02:01:33 -04:00
|
|
|
skip "PTY unavailable" unless available_pty?
|
2011-05-04 10:39:01 -04:00
|
|
|
|
2013-03-08 08:34:58 -05:00
|
|
|
build_app
|
2016-08-06 13:16:09 -04:00
|
|
|
app_file "app/models/post.rb", <<-CODE
|
2013-03-08 08:34:58 -05:00
|
|
|
class Post < ActiveRecord::Base
|
|
|
|
end
|
|
|
|
CODE
|
|
|
|
system "#{app_path}/bin/rails runner 'Post.connection.create_table :posts'"
|
|
|
|
|
2018-09-10 16:29:43 -04:00
|
|
|
@primary, @replica = PTY.open
|
2013-03-08 08:34:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
teardown_app
|
|
|
|
end
|
|
|
|
|
2013-03-08 10:10:00 -05:00
|
|
|
def write_prompt(command, expected_output = nil)
|
2018-09-10 16:29:43 -04:00
|
|
|
@primary.puts command
|
|
|
|
assert_output command, @primary
|
|
|
|
assert_output expected_output, @primary if expected_output
|
|
|
|
assert_output "> ", @primary
|
2013-03-08 08:34:58 -05:00
|
|
|
end
|
|
|
|
|
2019-03-23 03:47:26 -04:00
|
|
|
def spawn_console(options, wait_for_prompt: true)
|
|
|
|
pid = Process.spawn(
|
2017-05-05 02:54:38 -04:00
|
|
|
"#{app_path}/bin/rails console #{options}",
|
2018-09-10 16:29:43 -04:00
|
|
|
in: @replica, out: @replica, err: @replica
|
2013-03-08 08:34:58 -05:00
|
|
|
)
|
|
|
|
|
2019-03-23 03:47:26 -04:00
|
|
|
if wait_for_prompt
|
|
|
|
assert_output "> ", @primary, 30
|
|
|
|
end
|
|
|
|
|
|
|
|
pid
|
2013-03-08 08:34:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_sandbox
|
2021-02-04 23:04:29 -05:00
|
|
|
options = "--sandbox -- --singleline --nocolorize"
|
2019-12-23 18:24:33 -05:00
|
|
|
spawn_console(options)
|
2013-03-08 08:34:58 -05:00
|
|
|
|
2013-03-08 10:10:00 -05:00
|
|
|
write_prompt "Post.count", "=> 0"
|
2013-03-08 08:34:58 -05:00
|
|
|
write_prompt "Post.create"
|
2013-03-08 10:10:00 -05:00
|
|
|
write_prompt "Post.count", "=> 1"
|
2018-09-10 16:29:43 -04:00
|
|
|
@primary.puts "quit"
|
2013-03-08 08:34:58 -05:00
|
|
|
|
2019-12-23 18:24:33 -05:00
|
|
|
spawn_console(options)
|
2013-03-08 08:34:58 -05:00
|
|
|
|
2013-03-08 10:10:00 -05:00
|
|
|
write_prompt "Post.count", "=> 0"
|
|
|
|
write_prompt "Post.transaction { Post.create; raise }"
|
|
|
|
write_prompt "Post.count", "=> 0"
|
2018-09-10 16:29:43 -04:00
|
|
|
@primary.puts "quit"
|
2011-05-04 10:39:01 -04:00
|
|
|
end
|
2017-05-05 02:54:38 -04:00
|
|
|
|
2019-03-23 03:47:26 -04:00
|
|
|
def test_sandbox_when_sandbox_is_disabled
|
|
|
|
add_to_config <<-RUBY
|
|
|
|
config.disable_sandbox = true
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
output = `#{app_path}/bin/rails console --sandbox`
|
|
|
|
|
|
|
|
assert_includes output, "sandbox mode is disabled"
|
|
|
|
assert_equal 1, $?.exitstatus
|
|
|
|
end
|
|
|
|
|
2017-05-05 02:54:38 -04:00
|
|
|
def test_environment_option_and_irb_option
|
2021-02-04 23:04:29 -05:00
|
|
|
options = "-e test -- --verbose --singleline --nocolorize"
|
2019-12-23 18:24:33 -05:00
|
|
|
spawn_console(options)
|
2017-05-05 02:54:38 -04:00
|
|
|
|
|
|
|
write_prompt "a = 1", "a = 1"
|
|
|
|
write_prompt "puts Rails.env", "puts Rails.env\r\ntest"
|
2018-09-10 16:29:43 -04:00
|
|
|
@primary.puts "quit"
|
2017-05-05 02:54:38 -04:00
|
|
|
end
|
2009-10-05 10:41:08 -04:00
|
|
|
end
|