mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local t = require('test.testutil')
 | 
						|
local n = require('test.functional.testnvim')()
 | 
						|
 | 
						|
local eq = t.eq
 | 
						|
local clear = n.clear
 | 
						|
local command = n.command
 | 
						|
local exec_capture = n.exec_capture
 | 
						|
local matches = t.matches
 | 
						|
local pathsep = n.get_pathsep()
 | 
						|
local is_os = t.is_os
 | 
						|
local fn = n.fn
 | 
						|
 | 
						|
describe(':trust', function()
 | 
						|
  local xstate = 'Xstate'
 | 
						|
 | 
						|
  setup(function()
 | 
						|
    n.mkdir_p(xstate .. pathsep .. (is_os('win') and 'nvim-data' or 'nvim'))
 | 
						|
  end)
 | 
						|
 | 
						|
  teardown(function()
 | 
						|
    n.rmdir(xstate)
 | 
						|
  end)
 | 
						|
 | 
						|
  before_each(function()
 | 
						|
    t.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 = fn.getcwd()
 | 
						|
    local hash = fn.sha256(t.read_file('test_file'))
 | 
						|
 | 
						|
    command('edit test_file')
 | 
						|
    matches('^Allowed ".*test_file" in trust database%.$', exec_capture('trust'))
 | 
						|
    local trust = t.read_file(fn.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 = t.read_file(fn.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 = t.read_file(fn.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 = fn.getcwd()
 | 
						|
    local hash = fn.sha256(t.read_file('test_file'))
 | 
						|
 | 
						|
    command('edit test_file')
 | 
						|
    matches('^Denied ".*test_file" in trust database%.$', exec_capture('trust ++deny'))
 | 
						|
    local trust = t.read_file(fn.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 = t.read_file(fn.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 = t.read_file(fn.stdpath('state') .. pathsep .. 'trust')
 | 
						|
    eq(string.format(''), vim.trim(trust))
 | 
						|
  end)
 | 
						|
 | 
						|
  it('deny then remove a file using file path', function()
 | 
						|
    local cwd = fn.getcwd()
 | 
						|
 | 
						|
    matches('^Denied ".*test_file" in trust database%.$', exec_capture('trust ++deny test_file'))
 | 
						|
    local trust = t.read_file(fn.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 = t.read_file(fn.stdpath('state') .. pathsep .. 'trust')
 | 
						|
    eq(string.format(''), vim.trim(trust))
 | 
						|
  end)
 | 
						|
end)
 |