aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2017-01-16 13:36:16 +0100
committerGitHub <noreply@github.com>2017-01-16 13:36:16 +0100
commit340f79b4b8f1021f4a3b88265ced2ce39d0e2e03 (patch)
tree71509fab0581f8454272493e38fd0018a32c3c5f /test
parentfa94c4c2d917b70df443ba0ebcd87da35dc1bb30 (diff)
parent1f7a119f5efc13fbce6446bf268c2e0f9d753147 (diff)
downloadrneovim-340f79b4b8f1021f4a3b88265ced2ce39d0e2e03.tar.gz
rneovim-340f79b4b8f1021f4a3b88265ced2ce39d0e2e03.tar.bz2
rneovim-340f79b4b8f1021f4a3b88265ced2ce39d0e2e03.zip
Merge #5928 'New event: DirChanged'
Diffstat (limited to 'test')
-rw-r--r--test/functional/autocmd/dirchanged_spec.lua88
1 files changed, 88 insertions, 0 deletions
diff --git a/test/functional/autocmd/dirchanged_spec.lua b/test/functional/autocmd/dirchanged_spec.lua
new file mode 100644
index 0000000000..30a460bc4c
--- /dev/null
+++ b/test/functional/autocmd/dirchanged_spec.lua
@@ -0,0 +1,88 @@
+local lfs = require('lfs')
+local h = require('test.functional.helpers')(after_each)
+
+local clear = h.clear
+local command = h.command
+local eq = h.eq
+local eval = h.eval
+local request = h.request
+
+describe('DirChanged ->', function()
+ local curdir = lfs.currentdir()
+ local dirs = {
+ curdir .. '/Xtest-functional-autocmd-dirchanged.dir1',
+ curdir .. '/Xtest-functional-autocmd-dirchanged.dir2',
+ curdir .. '/Xtest-functional-autocmd-dirchanged.dir3',
+ }
+
+ setup(function() for _, dir in pairs(dirs) do h.mkdir(dir) end end)
+ teardown(function() for _, dir in pairs(dirs) do h.rmdir(dir) end end)
+
+ before_each(function()
+ clear()
+ command('autocmd DirChanged * let g:event = copy(v:event)')
+ end)
+
+ it('"autocmd DirChanged *" sets v:event for all :cd variants', function()
+ command('lcd '..dirs[1])
+ eq({cwd=dirs[1], scope='window'}, eval('g:event'))
+
+ command('tcd '..dirs[2])
+ eq({cwd=dirs[2], scope='tab'}, eval('g:event'))
+
+ command('cd '..dirs[3])
+ eq({cwd=dirs[3], scope='global'}, eval('g:event'))
+ end)
+
+ it('"autocmd DirChanged *" does not trigger for failing :cd variants', function()
+ command('let g:event = {}')
+
+ local status1, err1 = pcall(function()
+ command('lcd '..dirs[1] .. '/doesnotexist')
+ end)
+ eq({}, eval('g:event'))
+
+ local status2, err2 = pcall(function()
+ command('lcd '..dirs[2] .. '/doesnotexist')
+ end)
+ eq({}, eval('g:event'))
+
+ local status3, err3 = pcall(function()
+ command('lcd '..dirs[3] .. '/doesnotexist')
+ end)
+ eq({}, eval('g:event'))
+
+ eq(false, status1)
+ eq(false, status2)
+ eq(false, status3)
+
+ eq('E344', string.match(err1, 'Vim.*:(.*):'))
+ eq('E344', string.match(err2, 'Vim.*:(.*):'))
+ eq('E344', string.match(err3, 'Vim.*:(.*):'))
+ end)
+
+ it("'autochdir' triggers DirChanged", function()
+ command('set autochdir')
+
+ command('split '..dirs[1]..'/foo')
+ eq({cwd=dirs[1], scope='window'}, eval('g:event'))
+
+ command('split '..dirs[2]..'/bar')
+ eq({cwd=dirs[2], scope='window'}, eval('g:event'))
+ end)
+
+ it('nvim_set_current_dir() triggers DirChanged', function()
+ request('nvim_set_current_dir', dirs[1])
+ eq({cwd=dirs[1], scope='global'}, eval('g:event'))
+
+ request('nvim_set_current_dir', dirs[2])
+ eq({cwd=dirs[2], scope='global'}, eval('g:event'))
+
+ local status, err = pcall(function()
+ request('nvim_set_current_dir', '/doesnotexist')
+ end)
+ eq(false, status)
+ eq('Failed to change directory', string.match(err, ': (.*)'))
+ eq({cwd=dirs[2], scope='global'}, eval('g:event'))
+ end)
+end)