159 lines
5.4 KiB
Lua
159 lines
5.4 KiB
Lua
local eq = assert.are.same
|
|
local cur_dir = vim.fn.expand("%:p:h")
|
|
local busted = require("plenary/busted")
|
|
|
|
describe("should run func test", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 5, 11, 0 })
|
|
local cmd = require("go.gotest").test_func()
|
|
|
|
eq({ "go", "test", "-v", "-run", "^Test_branch", "./lua/tests/fixtures/coverage" }, cmd)
|
|
end)
|
|
it("should test function inside a source code", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 6, 11, 0 })
|
|
local cmd = require("go.gotest").test_func()
|
|
|
|
eq({ "go", "test", "-v", "-run", "^Test_branch", "./lua/tests/fixtures/coverage" }, cmd)
|
|
end)
|
|
end)
|
|
|
|
describe("should run test file", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
local status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 5, 11, 0 })
|
|
local cmd = require("go.gotest").test_file()
|
|
|
|
eq({ "go", "test", "-v", "-run", "'Test_branch|TestBranch'", "./lua/tests/fixtures/coverage" }, cmd)
|
|
end)
|
|
end)
|
|
|
|
describe("should run test file with flags", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
local status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 5, 11, 0 })
|
|
local cmd = require("go.gotest").test_file("-t", "tag1")
|
|
|
|
eq({ "go", "test", "-tags=tag1", "-v", "-run", "'Test_branch|TestBranch'", "./lua/tests/fixtures/coverage" }, cmd)
|
|
end)
|
|
end)
|
|
|
|
describe("should run test package", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
local status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 1, 1, 0 })
|
|
local cmd = require("go.gotest").test_package()
|
|
|
|
eq({ "go", "test", "-v", "./lua/tests/fixtures/coverage/..." }, cmd)
|
|
end)
|
|
end)
|
|
|
|
describe("should run test ", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
local status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 6, 1, 0 })
|
|
local cmd = require("go.gotest").test("-n", "-t", "tags1")
|
|
|
|
eq({ "go", "test", "-tags=tags1", "-v", "-run", "^Test_branch", "./lua/tests/fixtures/coverage" }, cmd)
|
|
end)
|
|
end)
|
|
|
|
-- test passed but the exit code is not 0
|
|
describe("should allow select test func", function()
|
|
-- vim.fn.readfile('minimal.vim')
|
|
-- vim.fn.writefile(vim.fn.readfile('fixtures/fmt/hello.go'), name)
|
|
local status = require("plenary.reload").reload_module("go.nvim")
|
|
it("should test function", function()
|
|
--
|
|
-- go.nvim may not auto loaded
|
|
vim.cmd([[packadd go.nvim]])
|
|
|
|
local path = cur_dir .. "/lua/tests/fixtures/coverage/branch_test.go" -- %:p:h ? %:p
|
|
require("go").setup({
|
|
trace = true,
|
|
lsp_cfg = true,
|
|
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
|
|
})
|
|
vim.cmd("silent exe 'e " .. path .. "'")
|
|
vim.fn.setpos(".", { 0, 1, 1, 0 })
|
|
local cmd = require("go.gotest").get_testfunc()
|
|
|
|
eq({ "Test_branch", "TestBranch" }, cmd)
|
|
end)
|
|
end)
|