Files
neovim/test/functional/legacy/097_glob_path_spec.lua
tao f130922744 fix(path): normalize path slashes on Windows #37729
Problem:
On Windows, path separators may become inconsistent for various reasons,
which makes normalization quite painful.

Solution:
Normalize paths to `/` at the entry boundaries and always use it
internally, converting back only in rare cases where `\` is really
needed (e.g. cmd.exe/bat scripts?).

This is the first commit in a series of incremental steps.

Note:
* some funcs won't respect shellslash. e.g. `expand/fnamemodify`
* some funcs still respect shellslash, but will be updated in a follow
  PR. e.g. `ex_pwd/f_chdir/f_getcwd`
* uv's built-in funcs always return `\`. e.g. `uv.cwd/uv.exepath`

Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
2026-04-24 13:20:25 -04:00

76 lines
2.0 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 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)