aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-12-31 18:44:41 -0500
committerGitHub <noreply@github.com>2020-12-31 18:44:41 -0500
commitf3a8c930a4b901c5313701849e7010f098bf22e6 (patch)
tree125cace41e958056812accbeb5876e154a1be85d /test
parent74b343a6f23de43590ab79750848f66e2fa9a7f7 (diff)
parentb01a60b1aaaa6152b58af96c5054f697bbc3a31e (diff)
downloadrneovim-f3a8c930a4b901c5313701849e7010f098bf22e6.tar.gz
rneovim-f3a8c930a4b901c5313701849e7010f098bf22e6.tar.bz2
rneovim-f3a8c930a4b901c5313701849e7010f098bf22e6.zip
Merge pull request #13653 from janlazo/revert-10848
Revert #10848
Diffstat (limited to 'test')
-rw-r--r--test/functional/eval/null_spec.lua2
-rw-r--r--test/functional/eval/timer_spec.lua4
-rw-r--r--test/functional/ui/float_spec.lua43
-rw-r--r--test/functional/ui/screen.lua4
-rw-r--r--test/functional/ui/searchhl_spec.lua21
5 files changed, 16 insertions, 58 deletions
diff --git a/test/functional/eval/null_spec.lua b/test/functional/eval/null_spec.lua
index bef41e52d4..fa8f7d873f 100644
--- a/test/functional/eval/null_spec.lua
+++ b/test/functional/eval/null_spec.lua
@@ -121,7 +121,7 @@ describe('NULL', function()
null_test('does not make Neovim crash when v:oldfiles gets assigned to that', ':let v:oldfiles = L|oldfiles', 0)
null_expr_test('does not make complete() crash or error out',
'execute(":normal i\\<C-r>=complete(1, L)[-1]\\n")',
- 0, '', function()
+ '', '\n', function()
eq({''}, curbufmeths.get_lines(0, -1, false))
end)
null_expr_test('is accepted by setmatches()', 'setmatches(L)', 0, 0)
diff --git a/test/functional/eval/timer_spec.lua b/test/functional/eval/timer_spec.lua
index 3f57568b8e..9ee0735e40 100644
--- a/test/functional/eval/timer_spec.lua
+++ b/test/functional/eval/timer_spec.lua
@@ -130,12 +130,12 @@ describe('timers', function()
nvim_async("command", "call timer_start("..load_adjust(100)..", 'AddItem', {'repeat': -1})")
screen:expect([[
- ^ITEM 1 |
+ ITEM 1 |
ITEM 2 |
{1:~ }|
{1:~ }|
{1:~ }|
- |
+ ^ |
]])
nvim_async("command", "let g:cont = 1")
diff --git a/test/functional/ui/float_spec.lua b/test/functional/ui/float_spec.lua
index 8d654f6e5b..32f9ae030f 100644
--- a/test/functional/ui/float_spec.lua
+++ b/test/functional/ui/float_spec.lua
@@ -5344,45 +5344,6 @@ describe('floatwin', function()
-- at least. Also check invisible EndOfBuffer region blends correctly.
meths.buf_set_lines(buf, 0, -1, true, {" x x x xx", " x x x x"})
win = meths.open_win(buf, false, {relative='editor', width=12, height=3, row=0, col=11, style='minimal'})
- if multigrid then
- screen:expect{grid=[[
- ## grid 1
- [2:----------------------------------------]|
- [2:----------------------------------------]|
- [2:----------------------------------------]|
- [2:----------------------------------------]|
- [2:----------------------------------------]|
- [2:----------------------------------------]|
- [3:----------------------------------------]|
- ## grid 2
- # TODO: 测试字典信息的准确性 |
- # FIXME: 测试字典信息的准确^性 |
- {0:~ }|
- {0:~ }|
- {0:~ }|
- {0:~ }|
- ## grid 3
- |
- ## grid 6
- {1: x x x xx}|
- {1: x x x x}|
- {1: }|
- ]], float_pos={
- [6] = { {
- id = 1003
- }, "NW", 1, 0, 11, true }
- }}
- else
- screen:expect{grid=[[
- # TODO: 测 {1: x x x xx} 确性 |
- # FIXME: 测{1: x x x x}准确^性 |
- {0:~ }{1: }{0: }|
- {0:~ }|
- {0:~ }|
- {0:~ }|
- |
- ]]}
- end
meths.win_set_option(win, 'winblend', 30)
screen:set_default_attr_ids({
[1] = {foreground = tonumber('0xb282b2'), background = tonumber('0xffcfff')},
@@ -5420,7 +5381,7 @@ describe('floatwin', function()
}, "NW", 1, 0, 11, true }
}}
else
- screen:expect{grid=[[
+ screen:expect([[
# TODO: 测 {2: x x x}{1:息}{2: xx} 确性 |
# FIXME: 测{1:试}{2:x x x}{1:息}{2: x}准确^性 |
{3:~ }{4: }{3: }|
@@ -5428,7 +5389,7 @@ describe('floatwin', function()
{3:~ }|
{3:~ }|
|
- ]]}
+ ]])
end
meths.win_set_config(win, {relative='editor', row=0, col=12})
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index 5104c58796..8fa9fcc42f 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -807,9 +807,7 @@ function Screen:_handle_mouse_off()
end
function Screen:_handle_mode_change(mode, idx)
- if self._mode_info ~= nil then
- assert(mode == self._mode_info[idx+1].name)
- end
+ assert(mode == self._mode_info[idx+1].name)
self.mode = mode
end
diff --git a/test/functional/ui/searchhl_spec.lua b/test/functional/ui/searchhl_spec.lua
index 740126df31..656f613c6a 100644
--- a/test/functional/ui/searchhl_spec.lua
+++ b/test/functional/ui/searchhl_spec.lua
@@ -20,7 +20,6 @@ describe('search highlighting', function()
[2] = {background = colors.Yellow}, -- Search
[3] = {reverse = true},
[4] = {foreground = colors.Red}, -- Message
- [5] = {bold = true, reverse = true},
[6] = {foreground = Screen.colors.Blue4, background = Screen.colors.LightGrey}, -- Folded
})
end)
@@ -176,15 +175,7 @@ describe('search highlighting', function()
]])
feed('/foo')
helpers.poke_eventloop()
- screen:expect{grid=[[
- {3:foo} bar baz {3:│} |
- bar baz {2:foo} {3:│} |
- bar {2:foo} baz {3:│} |
- {3:│} |
- {1:~ }{3:│} |
- {5:[No Name] [+] }{3:term }|
- /foo^ |
- ]]}
+ screen:expect_unchanged()
end)
it('works with incsearch', function()
@@ -483,7 +474,15 @@ describe('search highlighting', function()
-- check hilights work also in folds
feed("zf4j")
command("%foldopen")
- screen:expect_unchanged()
+ screen:expect([[
+ very {5:spec^ial}{2: te}{6:xt} |
+ |
+ {1:~ }|
+ {1:~ }|
+ {1:~ }|
+ {1:~ }|
+ {4:search hit BOTTOM, continuing at TOP} |
+ ]])
feed_command("call clearmatches()")
screen:expect([[