aboutsummaryrefslogtreecommitdiff
path: root/test/unit/tempfile_spec.lua
blob: cf0d78b7a78d985160dcd6f6457a1b3d09a77198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
local lfs = require 'lfs'
local helpers = require 'test.unit.helpers'

local os = helpers.cimport './src/nvim/os/os.h'
local tempfile = helpers.cimport './src/nvim/fileio.h'

describe('tempfile related functions', function()
  before_each(function()
    tempfile.vim_deltempdir()
  end)
  after_each(function()
    tempfile.vim_deltempdir()
  end)

  local vim_gettempdir = function()
    return helpers.ffi.string(tempfile.vim_gettempdir())
  end

  describe('vim_gettempdir', function()
    it('returns path to Neovim own temp directory', function()
      local dir = vim_gettempdir()
      assert.True(dir ~= nil and dir:len() > 0)
      -- os_file_is_writable returns 2 for a directory which we have rights
      -- to write into.
      assert.equals(os.os_file_is_writable(helpers.to_cstr(dir)), 2)
      for entry in lfs.dir(dir) do
        assert.True(entry == '.' or entry == '..')
      end
    end)

    it('returns the same directory on each call', function()
      local dir1 = vim_gettempdir()
      local dir2 = vim_gettempdir()
      assert.equals(dir1, dir2)
    end)
  end)

  describe('vim_tempname', function()
    local vim_tempname = function()
      return helpers.ffi.string(tempfile.vim_tempname())
    end

    it('generate name of non-existing file', function()
      local file = vim_tempname()
      assert.truthy(file)
      assert.False(os.os_path_exists(file))
    end)

    it('generate different names on each call', function()
      local fst = vim_tempname()
      local snd = vim_tempname()
      assert.not_equals(fst, snd)
    end)

    it('generate file name in Neovim own temp directory', function()
      local dir = vim_gettempdir()
      local file = vim_tempname()
      assert.truthy(file:find('^' .. dir .. '[^/]*$'))
    end)
  end)
end)