-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Command registration should take both strings and symbols as names (#932
) This will save users some heads scratching when they try to register a command with a string name and found that it doesn't work. I also rewrote converted custom command tests into integration tests to make test setup/cleanup easier.
- Loading branch information
Showing
4 changed files
with
129 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# frozen_string_literal: true | ||
require "irb" | ||
|
||
require_relative "../helper" | ||
|
||
module TestIRB | ||
class CustomCommandIntegrationTest < TestIRB::IntegrationTestCase | ||
def test_command_regsitration_can_happen_after_irb_require | ||
write_ruby <<~RUBY | ||
require "irb" | ||
require "irb/command" | ||
class PrintCommand < IRB::Command::Base | ||
category 'CommandTest' | ||
description 'print_command' | ||
def execute(*) | ||
puts "Hello from PrintCommand" | ||
nil | ||
end | ||
end | ||
IRB::Command.register(:print!, PrintCommand) | ||
binding.irb | ||
RUBY | ||
|
||
output = run_ruby_file do | ||
type "print!\n" | ||
type "exit" | ||
end | ||
|
||
assert_include(output, "Hello from PrintCommand") | ||
end | ||
|
||
def test_command_regsitration_accepts_string_too | ||
write_ruby <<~RUBY | ||
require "irb/command" | ||
class PrintCommand < IRB::Command::Base | ||
category 'CommandTest' | ||
description 'print_command' | ||
def execute(*) | ||
puts "Hello from PrintCommand" | ||
nil | ||
end | ||
end | ||
IRB::Command.register("print!", PrintCommand) | ||
binding.irb | ||
RUBY | ||
|
||
output = run_ruby_file do | ||
type "print!\n" | ||
type "exit" | ||
end | ||
|
||
assert_include(output, "Hello from PrintCommand") | ||
end | ||
|
||
def test_arguments_propogation | ||
write_ruby <<~RUBY | ||
require "irb/command" | ||
class PrintArgCommand < IRB::Command::Base | ||
category 'CommandTest' | ||
description 'print_command_arg' | ||
def execute(arg) | ||
$nth_execution ||= 0 | ||
puts "\#{$nth_execution} arg=\#{arg.inspect}" | ||
$nth_execution += 1 | ||
nil | ||
end | ||
end | ||
IRB::Command.register(:print_arg, PrintArgCommand) | ||
binding.irb | ||
RUBY | ||
|
||
output = run_ruby_file do | ||
type "print_arg\n" | ||
type "print_arg \n" | ||
type "print_arg a r g\n" | ||
type "print_arg a r g \n" | ||
type "exit" | ||
end | ||
|
||
assert_include(output, "0 arg=\"\"") | ||
assert_include(output, "1 arg=\"\"") | ||
assert_include(output, "2 arg=\"a r g\"") | ||
assert_include(output, "3 arg=\"a r g\"") | ||
end | ||
|
||
def test_def_extend_command_still_works | ||
write_ruby <<~RUBY | ||
require "irb" | ||
class FooBarCommand < IRB::Command::Base | ||
category 'FooBarCategory' | ||
description 'foobar_description' | ||
def execute(*) | ||
$nth_execution ||= 1 | ||
puts "\#{$nth_execution} FooBar executed" | ||
$nth_execution += 1 | ||
nil | ||
end | ||
end | ||
IRB::ExtendCommandBundle.def_extend_command(:foobar, FooBarCommand, nil, [:fbalias, IRB::Command::OVERRIDE_ALL]) | ||
binding.irb | ||
RUBY | ||
|
||
output = run_ruby_file do | ||
type "foobar" | ||
type "fbalias" | ||
type "help foobar" | ||
type "exit" | ||
end | ||
|
||
assert_include(output, "1 FooBar executed") | ||
assert_include(output, "2 FooBar executed") | ||
assert_include(output, "foobar_description") | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters