mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
9b9f8dfcc4
Include the rest of the line and allow multiple {MATCH:} patterns.
80 lines
3.0 KiB
Lua
80 lines
3.0 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
|
|
local eq = helpers.eq
|
|
local clear = helpers.clear
|
|
local command = helpers.command
|
|
local exec_capture = helpers.exec_capture
|
|
local matches = helpers.matches
|
|
local pathsep = helpers.get_pathsep()
|
|
local is_os = helpers.is_os
|
|
local funcs = helpers.funcs
|
|
|
|
describe(':trust', function()
|
|
local xstate = 'Xstate'
|
|
|
|
setup(function()
|
|
helpers.mkdir_p(xstate .. pathsep .. (is_os('win') and 'nvim-data' or 'nvim'))
|
|
end)
|
|
|
|
teardown(function()
|
|
helpers.rmdir(xstate)
|
|
end)
|
|
|
|
before_each(function()
|
|
helpers.write_file('test_file', 'test')
|
|
clear{env={XDG_STATE_HOME=xstate}}
|
|
end)
|
|
|
|
after_each(function()
|
|
os.remove('test_file')
|
|
end)
|
|
|
|
it('trust then deny then remove a file using current buffer', function()
|
|
local cwd = funcs.getcwd()
|
|
local hash = funcs.sha256(helpers.read_file('test_file'))
|
|
|
|
command('edit test_file')
|
|
matches('^Allowed ".*test_file" in trust database%.$', exec_capture('trust'))
|
|
local trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format('%s %s', hash, cwd .. pathsep .. 'test_file'), vim.trim(trust))
|
|
|
|
matches('^Denied ".*test_file" in trust database%.$', exec_capture('trust ++deny'))
|
|
trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format('! %s', cwd .. pathsep .. 'test_file'), vim.trim(trust))
|
|
|
|
matches('^Removed ".*test_file" from trust database%.$', exec_capture('trust ++remove'))
|
|
trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format(''), vim.trim(trust))
|
|
end)
|
|
|
|
it('deny then trust then remove a file using current buffer', function()
|
|
local cwd = funcs.getcwd()
|
|
local hash = funcs.sha256(helpers.read_file('test_file'))
|
|
|
|
command('edit test_file')
|
|
matches('^Denied ".*test_file" in trust database%.$', exec_capture('trust ++deny'))
|
|
local trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format('! %s', cwd .. pathsep .. 'test_file'), vim.trim(trust))
|
|
|
|
matches('^Allowed ".*test_file" in trust database%.$', exec_capture('trust'))
|
|
trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format('%s %s', hash, cwd .. pathsep .. 'test_file'), vim.trim(trust))
|
|
|
|
matches('^Removed ".*test_file" from trust database%.$', exec_capture('trust ++remove'))
|
|
trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format(''), vim.trim(trust))
|
|
end)
|
|
|
|
it('deny then remove a file using file path', function()
|
|
local cwd = funcs.getcwd()
|
|
|
|
matches('^Denied ".*test_file" in trust database%.$', exec_capture('trust ++deny test_file'))
|
|
local trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format('! %s', cwd .. pathsep .. 'test_file'), vim.trim(trust))
|
|
|
|
matches('^Removed ".*test_file" from trust database%.$', exec_capture('trust ++remove test_file'))
|
|
trust = helpers.read_file(funcs.stdpath('state') .. pathsep .. 'trust')
|
|
eq(string.format(''), vim.trim(trust))
|
|
end)
|
|
end)
|