Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(tests): add tests for utils.fs and utils.current_file_path() #890

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/orgmode/org/mappings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function OrgMappings:set_tags(tags)
end)
end
if type(tags) == 'table' then
tags = string.format(':%s:', table.concat(tags, ':'))
tags = utils.tags_to_string(tags)
end

return tags
Expand Down
58 changes: 42 additions & 16 deletions tests/plenary/helpers.lua
Original file line number Diff line number Diff line change
@@ -1,19 +1,49 @@
local OrgFile = require('orgmode.files.file')
local orgmode = require('orgmode')

local function load_file(path)
vim.cmd(string.format('e %s', path))
local M = {}

---Temporarily change a variable.
---@param ctx table<string, any>
---@param name string
---@param value any
---@param inner fun()
function M.with_var(ctx, name, value, inner)
local old = ctx[name]
ctx[name] = value
local ok, err = pcall(inner)
ctx[name] = old
assert(ok, err)
end

---Temporarily change the working directory.
---@param new_path string
---@param inner fun()
function M.with_cwd(new_path, inner)
local old_path = vim.fn.getcwd()
vim.cmd.cd(new_path)
local ok, err = pcall(inner)
vim.cmd.cd(old_path)
assert(ok, err)
end

---@param path string
function M.load_file(path)
vim.cmd.edit(path)
return orgmode.files:get(path)
end

local function create_file(lines)
---@param lines string[]
function M.create_file(lines)
local fname = vim.fn.tempname() .. '.org'
vim.fn.writefile(lines or {}, fname)
return load_file(fname)
return M.load_file(fname)
end

---@param lines string[]
---@param config? table
---@return OrgFile
local function create_agenda_file(lines, config)
function M.create_agenda_file(lines, config)
local fname = vim.fn.tempname() .. '.org'
vim.fn.writefile(lines or {}, fname)

Expand All @@ -22,11 +52,13 @@ local function create_agenda_file(lines, config)
}, config or {})
local org = orgmode.setup(cfg)
org:init()
return load_file(fname)
return M.load_file(fname)
end

---@param lines string[]
---@param filename string
---@return OrgFile
local function create_file_instance(lines, filename)
function M.create_file_instance(lines, filename)
local file = OrgFile:new({
filename = filename or vim.fn.tempname() .. '.org',
lines = lines,
Expand All @@ -36,9 +68,9 @@ local function create_file_instance(lines, filename)
end

---@param fixtures {filename: string, content: string[] }[]
---@param config table?
---@param config? table
---@return table
local function create_agenda_files(fixtures, config)
function M.create_agenda_files(fixtures, config)
-- NOTE: content is only 1 line for 1 file
local temp_fname = vim.fn.tempname()
local temp_dir = vim.fn.fnamemodify(temp_fname, ':p:h')
Expand All @@ -65,10 +97,4 @@ local function create_agenda_files(fixtures, config)
return files
end

return {
load_file = load_file,
create_file = create_file,
create_file_instance = create_file_instance,
create_agenda_file = create_agenda_file,
create_agenda_files = create_agenda_files,
}
return M
88 changes: 88 additions & 0 deletions tests/plenary/utils/fs_spec.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
local fs_utils = require('orgmode.utils.fs')
local helpers = require('tests.plenary.helpers')

local uv = vim.uv or vim.loop
local file = helpers.create_file({})

describe('get_current_file_dir', function()
it('gives the dirname of current_file_path', function()
assert.are.same(vim.fs.dirname(file.filename), fs_utils.get_current_file_dir())
end)

it('always gives an absolute path', function()
local tempdir = vim.fs.dirname(file.filename)
helpers.with_cwd(tempdir, function()
assert.are.same('.', vim.fs.dirname(vim.fn.bufname()))
local dir = fs_utils.get_current_file_dir()
assert.are.same(dir .. '/', vim.fn.fnamemodify(dir, ':p'))
end)
end)
end)

describe('substitute_path', function()
it('leaves absolute paths untouched', function()
assert.are.same('/a/b/c', fs_utils.substitute_path('/a/b/c'))
end)

it('expands ~ to HOME', function()
local output
helpers.with_var(vim.env, 'HOME', '/home/org', function()
output = fs_utils.substitute_path('~/foobar')
end)
assert.are.same('/home/org/foobar', output)
end)

it('expands . to the current file dir', function()
local output = fs_utils.substitute_path('./a/b')
assert(output)
assert(vim.startswith(output, vim.fs.dirname(file.filename)))
end)

it('expands .. to the current file dir plus ..', function()
local output = fs_utils.substitute_path('../a/b')
assert(output)
assert(vim.startswith(output, vim.fs.dirname(file.filename)))
local normalized = vim.fs.normalize(output)
assert.are.Not.same(output, normalized, "normalize didn't remove ..")
end)

it('fails on all other relative paths', function()
assert.is.False(fs_utils.substitute_path('a/b/c'))
end)
end)

describe('get_real_path', function()
local link_name = nil

before_each(function()
if not link_name then
link_name = vim.fn.tempname()
assert(uv.fs_symlink(file.filename, link_name))
end
end)

it('resolves symlinks', function()
assert(link_name)
assert.are.same(file.filename, fs_utils.get_real_path(link_name))
end)

it('resolves relative paths', function()
assert(link_name)
local relpath = vim.fs.joinpath('.', vim.fs.basename(link_name))
assert.are.same(file.filename, fs_utils.get_real_path(relpath))
end)

it('keeps trailing slash if it is there', function()
local path = fs_utils.get_real_path('././')
assert.are.same(vim.fs.dirname(file.filename) .. '/', path)
end)

it('keeps trailing slash away if it is not there', function()
local path = fs_utils.get_real_path('./.')
assert.are.same(vim.fs.dirname(file.filename), path)
end)

it('fails on bare dot "."', function()
assert.is.False(fs_utils.get_real_path('.'))
end)
end)
46 changes: 35 additions & 11 deletions tests/plenary/utils_spec.lua
Original file line number Diff line number Diff line change
@@ -1,17 +1,41 @@
local utils = require('orgmode.utils')
local helpers = require('tests.plenary.helpers')

describe('Utils', function()
it('should properly reduce', function()
describe('Util', function()
describe('reduce', function()
local nums = { 1, 2, 3 }
local sum = utils.reduce(nums, function(acc, num)
return acc + num
end, 0)
assert.are.same(6, sum)

local multiplied = utils.reduce(nums, function(acc, num)
table.insert(acc, num * 2)
return acc
end, {})
assert.are.same({ 2, 4, 6 }, multiplied)
it('works on sums', function()
local sum = utils.reduce(nums, function(acc, num)
return acc + num
end, 0)
assert.are.same(6, sum)
end)

it('works on products', function()
local multiplied = utils.reduce(nums, function(acc, num)
table.insert(acc, num * 2)
return acc
end, {})
assert.are.same({ 2, 4, 6 }, multiplied)
end)
end)

describe('current_file_path', function()
it('returns the buffer name', function()
local file = helpers.create_file({})
assert.are.Not.same('', file.filename)
assert.are.same(file.filename, utils.current_file_path())
end)
it('always returns the full path', function()
local file = helpers.create_file({})
local dirname = vim.fs.dirname(file.filename)
helpers.with_cwd(dirname, function()
local relpath = vim.fn.bufname()
local abspath = utils.current_file_path()
assert(vim.endswith(abspath, relpath))
assert.are.Not.same(abspath, relpath)
end)
end)
end)
end)
Loading