mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 20:59:11 +00:00
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`.
77 lines
2.1 KiB
Lua
77 lines
2.1 KiB
Lua
-- vim: set foldmethod=marker foldmarker=[[,]] :
|
|
-- Test whether glob()/globpath() return correct results with certain escaped
|
|
-- characters.
|
|
|
|
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local describe, it, setup, teardown = t.describe, t.it, t.setup, t.teardown
|
|
local clear = n.clear
|
|
local command, expect = n.command, n.expect
|
|
|
|
describe('glob() and globpath()', function()
|
|
setup(clear)
|
|
|
|
setup(function()
|
|
if t.is_os('win') then
|
|
os.execute('md sautest\\autoload')
|
|
os.execute('.>sautest\\autoload\\Test104.vim 2>nul')
|
|
os.execute('.>sautest\\autoload\\footest.vim 2>nul')
|
|
else
|
|
os.execute('mkdir -p sautest/autoload')
|
|
os.execute('touch sautest/autoload/Test104.vim')
|
|
os.execute('touch sautest/autoload/footest.vim')
|
|
end
|
|
end)
|
|
|
|
it('is working', function()
|
|
-- Make sure glob() doesn't use the shell
|
|
command('set shell=doesnotexist')
|
|
|
|
-- Consistent sorting of file names
|
|
command('set nofileignorecase')
|
|
|
|
if t.is_os('win') then
|
|
command([[$put =glob('Xxx{')]])
|
|
command([[$put =glob('Xxx$')]])
|
|
|
|
command('silent w! Xxx{')
|
|
command([[w! Xxx$]])
|
|
command([[$put =glob('Xxx{')]])
|
|
command([[$put =glob('Xxx$')]])
|
|
|
|
command([[$put =string(globpath('sautest\autoload', '*.vim'))]])
|
|
command([[$put =string(globpath('sautest\autoload', '*.vim', 0, 1))]])
|
|
else
|
|
command([[$put =glob('Xxx\{')]])
|
|
command([[$put =glob('Xxx\$')]])
|
|
|
|
command('silent w! Xxx\\{')
|
|
command([[w! Xxx\$]])
|
|
command([[$put =glob('Xxx\{')]])
|
|
command([[$put =glob('Xxx\$')]])
|
|
|
|
command("$put =string(globpath('sautest/autoload', '*.vim'))")
|
|
command("$put =string(globpath('sautest/autoload', '*.vim', 0, 1))")
|
|
end
|
|
expect([=[
|
|
|
|
|
|
|
|
Xxx{
|
|
Xxx$
|
|
'sautest/autoload/Test104.vim
|
|
sautest/autoload/footest.vim'
|
|
['sautest/autoload/Test104.vim', 'sautest/autoload/footest.vim']]=])
|
|
end)
|
|
|
|
teardown(function()
|
|
if t.is_os('win') then
|
|
os.execute('del /q/f Xxx{ Xxx$')
|
|
os.execute('rd /q /s sautest')
|
|
else
|
|
os.execute('rm -rf sautest Xxx{ Xxx$')
|
|
end
|
|
end)
|
|
end)
|