refactor(gotests): use correct config, change way how deps required, fix some typos

This commit is contained in:
Smirnov Oleksandr 2023-07-19 20:23:14 +03:00
parent 55b7304ec6
commit af3321f7ea

View file

@ -1,17 +1,20 @@
local c = require("gopher.config").commands
local u = require "gopher._utils" local u = require "gopher._utils"
local M = {} local ts_utils = require "gopher._utils.ts"
local Job = require "plenary.job"
local gotests = {}
---@param cmd_args table ---@param cmd_args table
local function run(cmd_args) local function run(cmd_args)
local Job = require "plenary.job"
local c = require("gopher.config").config.commands
Job:new({ Job:new({
command = c.gotests, command = c.gotests,
args = cmd_args, args = cmd_args,
on_exit = function(_, retval) on_exit = function(_, retval)
if retval ~= 0 then if retval ~= 0 then
u.notify("command 'go " .. unpack(cmd_args) .. "' exited with code " .. retval, "error") u.notify(
"command '" .. c.gotests .. " " .. unpack(cmd_args) .. "' exited with code " .. retval,
"error"
)
return return
end end
@ -30,9 +33,7 @@ end
---generate unit test for one function ---generate unit test for one function
---@param parallel boolean ---@param parallel boolean
function M.func_test(parallel) function gotests.func_test(parallel)
local ts_utils = require "gopher._utils.ts"
local ns = ts_utils.get_func_method_node_at_pos(unpack(vim.api.nvim_win_get_cursor(0))) local ns = ts_utils.get_func_method_node_at_pos(unpack(vim.api.nvim_win_get_cursor(0)))
if ns == nil or ns.name == nil then if ns == nil or ns.name == nil then
u.notify("cursor on func/method and execute the command again", "info") u.notify("cursor on func/method and execute the command again", "info")
@ -49,7 +50,7 @@ end
---generate unit tests for all functions in current file ---generate unit tests for all functions in current file
---@param parallel boolean ---@param parallel boolean
function M.all_tests(parallel) function gotests.all_tests(parallel)
local cmd_args = { "-all" } local cmd_args = { "-all" }
if parallel then if parallel then
table.insert(cmd_args, "-parallel") table.insert(cmd_args, "-parallel")
@ -60,7 +61,7 @@ end
---generate unit tests for all exported functions ---generate unit tests for all exported functions
---@param parallel boolean ---@param parallel boolean
function M.all_exported_tests(parallel) function gotests.all_exported_tests(parallel)
local cmd_args = {} local cmd_args = {}
if parallel then if parallel then
table.insert(cmd_args, "-parallel") table.insert(cmd_args, "-parallel")
@ -70,4 +71,4 @@ function M.all_exported_tests(parallel)
add_test(cmd_args) add_test(cmd_args)
end end
return M return gotests