Skip to content

Commit c4e751d

Browse files
authoredMar 7, 2025
ci(tests): run tests on multiple OS (#921)
1 parent 2aa966f commit c4e751d

File tree

6 files changed

+48
-24
lines changed

6 files changed

+48
-24
lines changed
 

‎.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,17 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27+
os:
28+
- ubuntu-latest
29+
- windows-latest
30+
- macos-latest
2731
version:
2832
- v0.10.1
2933
- v0.10.2
3034
- v0.10.3
3135
- v0.10.4
3236
- nightly
33-
runs-on: ubuntu-latest
37+
runs-on: ${{ matrix.os }}
3438
steps:
3539
- uses: actions/checkout@v4
3640
- name: Install Neovim

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test:
44
nvim --headless --clean -u tests/test.lua "$(FILE)"
55
# Re-run CI tests 3 times before failing, to avoid reporting false negatives
66
test-ci:
7-
for i in {1..3}; do nvim --headless --clean -u tests/test.lua && break || sleep 1; done
7+
for i in {1..3}; do nvim --headless --clean -u tests/test.lua && s=0 && break || s=$$? && sleep 1; done; exit $$s
88
vim_docs:
99
./scripts/build_docs.sh
1010
api_docs:

‎docs/contributing.org

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ specific spec you want to test. Example:
9191
make test FILE=./tests/plenary/api/api_spec.lua
9292
#+end_example
9393

94+
📝 NOTE: Tests are currently not working on Windows. Test run will only verify if tree-sitter grammar
95+
can be installed, and exit with a success message.
96+
9497
**** Parser
9598
:PROPERTIES:
9699
:CUSTOM_ID: parser

‎lua/orgmode/utils/treesitter/install.lua

+17-15
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,22 @@ local required_version = '2.0.0'
1010
function M.install()
1111
local version_info = M.get_version_info()
1212
if not version_info.installed then
13-
M.run('install')
14-
return true
13+
return M.run('install')
1514
end
1615

1716
-- Parser found but in invalid location
1817
if not version_info.install_location then
19-
M.run('install')
18+
local result = M.run('install')
2019
M.notify_conflicting_parsers(version_info.conflicting_parsers)
21-
return true
20+
return result
2221
end
2322

2423
if version_info.outdated then
25-
M.run('update')
26-
return true
24+
return M.run('update')
2725
end
2826

2927
if version_info.version_mismatch then
30-
M.reinstall()
31-
return true
28+
return M.reinstall()
3229
end
3330

3431
M.notify_conflicting_parsers(version_info.conflicting_parsers)
@@ -93,7 +90,9 @@ function M.get_version_info()
9390
end
9491

9592
function M.get_parser_locations()
96-
local installed_org_parsers = vim.api.nvim_get_runtime_file('parser/org.so', true)
93+
local installed_org_parsers = vim.tbl_map(function(item)
94+
return vim.fn.fnamemodify(item, ':p')
95+
end, vim.api.nvim_get_runtime_file('parser/org.so', true))
9796
local parser_path = M.get_parser_path()
9897
local install_location = nil
9998
local conflicting_parsers = {}
@@ -229,6 +228,7 @@ function M.get_path(url, type)
229228
end
230229

231230
---@param type? 'install' | 'update' | 'reinstall''
231+
---@return OrgPromise<boolean>
232232
function M.run(type)
233233
local url = 'https://github.com/nvim-orgmode/tree-sitter-org'
234234
local compiler = vim.tbl_filter(function(exe)
@@ -241,6 +241,7 @@ function M.run(type)
241241

242242
local compiler_args = M.select_compiler_args(compiler)
243243
local path = nil
244+
local lock_file = M.get_lock_file()
244245

245246
return M.get_path(url, type)
246247
:next(function(directory)
@@ -250,17 +251,18 @@ function M.run(type)
250251
cwd = directory,
251252
})
252253
end)
253-
:next(vim.schedule_wrap(function(code)
254+
:next(function(code)
254255
if code ~= 0 then
255256
error('[orgmode] Failed to compile parser', 0)
256257
end
257258
local source = vim.fs.joinpath(path, 'parser.so')
258-
local destination = M.get_parser_path()
259-
local renamed = vim.fn.rename(source, destination)
260-
if renamed ~= 0 then
261-
error('[orgmode] Failed to move generated tree-sitter parser to runtime folder', 0)
259+
local copied, err = vim.uv.fs_copyfile(source, M.get_parser_path())
260+
if not copied then
261+
error('[orgmode] Failed to copy generated tree-sitter parser to runtime folder: ' .. err, 0)
262262
end
263-
utils.writefile(M.get_lock_file(), vim.json.encode({ version = required_version })):wait()
263+
return utils.writefile(lock_file, vim.json.encode({ version = required_version }))
264+
end)
265+
:next(vim.schedule_wrap(function()
264266
local msg = { 'Tree-sitter grammar installed!' }
265267

266268
if type == 'update' then

‎tests/plenary/capture/capture_spec.lua

+7-7
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ describe('Refile', function()
146146
destination_file = destination_file,
147147
})
148148
:wait()
149-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
149+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
150150
assert.are.same({
151151
'* foo',
152152
}, vim.api.nvim_buf_get_lines(0, 0, -1, false))
@@ -177,7 +177,7 @@ describe('Refile', function()
177177
source_headline = item,
178178
})
179179
:wait()
180-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
180+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
181181
assert.are.same({
182182
'* foobar',
183183
'* baz',
@@ -208,7 +208,7 @@ describe('Refile', function()
208208
destination_headline = destination_file:get_headlines()[1],
209209
})
210210
:wait()
211-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
211+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
212212
assert.are.same({
213213
'* foobar',
214214
'** baz',
@@ -242,7 +242,7 @@ describe('Capture', function()
242242
},
243243
}),
244244
})
245-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
245+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
246246
assert.are.same({
247247
'',
248248
'',
@@ -279,7 +279,7 @@ describe('Capture', function()
279279
},
280280
}),
281281
})
282-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
282+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
283283
assert.are.same({
284284
'* foobar',
285285
'',
@@ -320,7 +320,7 @@ describe('Capture', function()
320320
},
321321
}),
322322
})
323-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
323+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
324324
assert.are.same({
325325
'* foobar',
326326
'',
@@ -356,7 +356,7 @@ describe('Capture', function()
356356
regexp = 'appendhere',
357357
}),
358358
})
359-
vim.cmd('edit' .. vim.fn.fnameescape(destination_file.filename))
359+
vim.cmd('edit ' .. vim.fn.fnameescape(destination_file.filename))
360360
assert.are.same({
361361
'#+title foo',
362362
'appendhere',

‎tests/test.lua

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
-- Ensure that tree-sitter grammar can be correctly installed, exit early on error
2+
vim.opt.runtimepath:prepend(vim.fn.fnamemodify(debug.getinfo(1, 'S').source:sub(2), ':p:h:h'))
3+
local ok, err = pcall(function()
4+
return require('orgmode.utils.treesitter.install').install()
5+
end)
6+
if not ok then
7+
print(vim.inspect(err), '\n')
8+
return os.exit(1)
9+
end
10+
11+
-- Do not run tests on Windows, just ensure that tree-sitter grammar can be installed.
12+
if vim.fn.has('win32') > 0 then
13+
return os.exit(0)
14+
end
15+
116
require('tests.minimal_init')
217
---@type string
318
local test_file = vim.v.argv[#vim.v.argv]

0 commit comments

Comments
 (0)