Files
neovim/test/functional/legacy/breakindent_spec.lua
Justin M. Keyes 6d8c8b18d5 test(harness): migrate away from magic globals
Problem:
The magic globals `it`, `describe`, etc., are more trouble than they are
worth.

- Hooking into `after_each` requires `getfenv()` hacks.
- They confuse luals/emmylua, because the top-level `.luarc.json` isn't
  merged with `test/.luarc.json` (apparently a luals limitation?)
- They totally defeat discoverability because the user just has to
  "know" about the various magic symbols.

So they harm DX, which means they serve no purpose at all.

Solution:
- Expose the test API from `testutil`, so tests can call `t.it()`,
  `t.describe()`, etc., in the conventional way.
- Drop `getfenv()` hacks.
- Drop the `setfenv()` injection in `load_chunk`.
- Drop `test/_meta.lua`.
2026-07-21 13:22:39 +02:00

106 lines
5.1 KiB
Lua

local n = require('test.functional.testnvim')()
local t = require('test.testutil')
local Screen = require('test.functional.ui.screen')
local describe, it, before_each = t.describe, t.it, t.before_each
local clear = n.clear
local command = n.command
local exec = n.exec
local feed = n.feed
before_each(clear)
describe('breakindent', function()
-- oldtest: Test_cursor_position_with_showbreak()
it('cursor shown at correct position with showbreak', function()
local screen = Screen.new(75, 6)
exec([[
set listchars=eol:$
let &signcolumn = 'yes'
let &showbreak = '++'
let &breakindentopt = 'shift:2'
let leftcol = win_getid()->getwininfo()->get(0, {})->get('textoff')
eval repeat('x', &columns - leftcol - 1)->setline(1)
eval 'second line'->setline(2)
]])
feed('AX')
screen:expect([[
{7: }xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxX|
{7: }^second line |
{1:~ }|*3
{5:-- INSERT --} |
]])
-- No line wraps, so changing 'showbreak' should lead to the same screen.
command('setlocal showbreak=+')
screen:expect_unchanged()
-- No line wraps, so setting 'breakindent' should lead to the same screen.
command('setlocal breakindent')
screen:expect_unchanged()
-- The first line now wraps because of "eol" in 'listchars'.
command('setlocal list')
screen:expect([[
{7: }xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxX|
{7: } {1:+^$} |
{7: }second line{1:$} |
{1:~ }|*2
{5:-- INSERT --} |
]])
command('setlocal nobreakindent')
screen:expect([[
{7: }xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxX|
{7: }{1:+^$} |
{7: }second line{1:$} |
{1:~ }|*2
{5:-- INSERT --} |
]])
end)
-- oldtest: Test_visual_starts_before_skipcol()
it('Visual selection that starts before skipcol shows correctly', function()
local screen = Screen.new(75, 6)
exec([[
1new
setlocal breakindent
call setline(1, "\t" .. join(range(100)))
]])
feed('v$')
screen:expect([[
{1:<<<} {17: 93 94 95 96 97 98 99}^ |
{3:[No Name] [+] }|
|
{1:~ }|
{2:[No Name] }|
{5:-- VISUAL --} |
]])
command('setlocal showbreak=+++')
screen:expect([[
{1:+++}{17: 90 91 92 93 94 95 96 97 98 99}^ |
{3:[No Name] [+] }|
|
{1:~ }|
{2:[No Name] }|
{5:-- VISUAL --} |
]])
command('setlocal breakindentopt+=sbr')
screen:expect([[
{1:+++} {17: 93 94 95 96 97 98 99}^ |
{3:[No Name] [+] }|
|
{1:~ }|
{2:[No Name] }|
{5:-- VISUAL --} |
]])
command('setlocal nobreakindent')
screen:expect([[
{1:+++}{17: 98 99}^ |
{3:[No Name] [+] }|
|
{1:~ }|
{2:[No Name] }|
{5:-- VISUAL --} |
]])
end)
end)