mirror of
https://github.com/junegunn/fzf
synced 2024-11-10 13:10:44 +00:00
Add test case for --with-nth + --multi
This commit is contained in:
parent
5c0dc79ffa
commit
4c3ae847b6
@ -124,7 +124,7 @@ class TestGoFZF < MiniTest::Unit::TestCase
|
|||||||
assert_equal 'hello', File.read(tempname).chomp
|
assert_equal 'hello', File.read(tempname).chomp
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_fzf_prompt
|
def test_key_bindings
|
||||||
tmux.send_keys "fzf -q 'foo bar foo-bar'", :Enter
|
tmux.send_keys "fzf -q 'foo bar foo-bar'", :Enter
|
||||||
tmux.until { |lines| lines.last =~ /^>/ }
|
tmux.until { |lines| lines.last =~ /^>/ }
|
||||||
|
|
||||||
@ -190,7 +190,7 @@ class TestGoFZF < MiniTest::Unit::TestCase
|
|||||||
tmux.close
|
tmux.close
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_fzf_multi_order
|
def test_multi_order
|
||||||
tmux.send_keys "seq 1 10 | fzf --multi > #{tempname}", :Enter
|
tmux.send_keys "seq 1 10 | fzf --multi > #{tempname}", :Enter
|
||||||
tmux.until { |lines| lines.last =~ /^>/ }
|
tmux.until { |lines| lines.last =~ /^>/ }
|
||||||
|
|
||||||
@ -202,5 +202,31 @@ class TestGoFZF < MiniTest::Unit::TestCase
|
|||||||
assert_equal %w[3 2 5 6 8 7], File.read(tempname).split($/)
|
assert_equal %w[3 2 5 6 8 7], File.read(tempname).split($/)
|
||||||
tmux.close
|
tmux.close
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_with_nth
|
||||||
|
[true, false].each do |multi|
|
||||||
|
tmux.send_keys "(echo ' 1st 2nd 3rd/';
|
||||||
|
echo ' first second third/') |
|
||||||
|
fzf #{"--multi" if multi} -x --nth 2 --with-nth 2,-1,1 > #{tempname}",
|
||||||
|
:Enter
|
||||||
|
tmux.until { |lines| lines[-2] && lines[-2].include?('2/2') }
|
||||||
|
|
||||||
|
# Transformed list
|
||||||
|
lines = tmux.capture
|
||||||
|
assert_equal ' second third/first', lines[-4]
|
||||||
|
assert_equal '> 2nd 3rd/1st', lines[-3]
|
||||||
|
|
||||||
|
# However, the output must not be transformed
|
||||||
|
if multi
|
||||||
|
tmux.send_keys :BTab, :BTab, :Enter
|
||||||
|
assert_equal [' 1st 2nd 3rd/', ' first second third/'], File.read(tempname).split($/)
|
||||||
|
else
|
||||||
|
tmux.send_keys '^', '3'
|
||||||
|
tmux.until { |lines| lines[-2].include?('1/2') }
|
||||||
|
tmux.send_keys :Enter
|
||||||
|
assert_equal [' 1st 2nd 3rd/'], File.read(tempname).split($/)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user