-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename `ext/history.rb` to `ext/eval_history.rb` To confusion with `lib/irb/history.rb` * Add eval_history tests * Rename eval_history's History to EvalHistory to avoid confusion
- Loading branch information
Showing
4 changed files
with
74 additions
and
6 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
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,68 @@ | ||
# frozen_string_literal: true | ||
require "irb" | ||
|
||
require_relative "helper" | ||
|
||
module TestIRB | ||
class EvalHistoryTest < TestCase | ||
def setup | ||
save_encodings | ||
IRB.instance_variable_get(:@CONF).clear | ||
end | ||
|
||
def teardown | ||
restore_encodings | ||
end | ||
|
||
def execute_lines(*lines, conf: {}, main: self, irb_path: nil) | ||
IRB.init_config(nil) | ||
IRB.conf[:VERBOSE] = false | ||
IRB.conf[:PROMPT_MODE] = :SIMPLE | ||
IRB.conf.merge!(conf) | ||
input = TestInputMethod.new(lines) | ||
irb = IRB::Irb.new(IRB::WorkSpace.new(main), input) | ||
irb.context.return_format = "=> %s\n" | ||
irb.context.irb_path = irb_path if irb_path | ||
IRB.conf[:MAIN_CONTEXT] = irb.context | ||
capture_output do | ||
irb.eval_input | ||
end | ||
end | ||
|
||
def test_eval_history_is_diabled_by_default | ||
out, err = execute_lines( | ||
"a = 1", | ||
"__" | ||
) | ||
|
||
assert_empty(err) | ||
assert_match(/undefined local variable or method `__'/, out) | ||
end | ||
|
||
def test_eval_history_can_be_retrieved_with_double_underscore | ||
out, err = execute_lines( | ||
"a = 1", | ||
"__", | ||
conf: { EVAL_HISTORY: 5 } | ||
) | ||
|
||
assert_empty(err) | ||
assert_match("=> 1\n" + "=> 1 1\n", out) | ||
end | ||
|
||
def test_eval_history_respects_given_limit | ||
out, err = execute_lines( | ||
"'foo'\n", | ||
"'bar'\n", | ||
"'baz'\n", | ||
"'xyz'\n", | ||
"__", | ||
conf: { EVAL_HISTORY: 4 } | ||
) | ||
|
||
assert_empty(err) | ||
# Because eval_history injects `__` into the history AND decide to ignore it, we only get <limit> - 1 results | ||
assert_match("2 \"bar\"\n" + "3 \"baz\"\n" + "4 \"xyz\"\n", out) | ||
end | ||
end | ||
end |