package ast_test import ( "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" "github.com/go-task/task/v3/taskfile/ast" ) func TestCmdParse(t *testing.T) { t.Parallel() const ( yamlCmd = `echo "a string command"` yamlDep = `"task-name"` yamlTaskCall = ` task: another-task vars: PARAM1: VALUE1 PARAM2: VALUE2 ` yamlDeferredCall = `defer: { task: some_task, vars: { PARAM1: "var" } }` yamlDeferredCmd = `defer: echo 'test'` ) tests := []struct { content string v any expected any }{ { yamlCmd, &ast.Cmd{}, &ast.Cmd{Cmd: `echo "a string command"`}, }, { yamlTaskCall, &ast.Cmd{}, &ast.Cmd{ Task: "another-task", Vars: ast.NewVars( &ast.VarElement{ Key: "PARAM1", Value: ast.Var{ Value: "VALUE1", }, }, &ast.VarElement{ Key: "PARAM2", Value: ast.Var{ Value: "VALUE2", }, }, ), }, }, { yamlDeferredCmd, &ast.Cmd{}, &ast.Cmd{Cmd: "echo 'test'", Defer: true}, }, { yamlDeferredCall, &ast.Cmd{}, &ast.Cmd{ Task: "some_task", Vars: ast.NewVars( &ast.VarElement{ Key: "PARAM1", Value: ast.Var{ Value: "var", }, }, ), Defer: true, }, }, { yamlDep, &ast.Dep{}, &ast.Dep{Task: "task-name"}, }, { yamlTaskCall, &ast.Dep{}, &ast.Dep{ Task: "another-task", Vars: ast.NewVars( &ast.VarElement{ Key: "PARAM1", Value: ast.Var{ Value: "VALUE1", }, }, &ast.VarElement{ Key: "PARAM2", Value: ast.Var{ Value: "VALUE2", }, }, ), }, }, } for _, test := range tests { err := yaml.Unmarshal([]byte(test.content), test.v) require.NoError(t, err) assert.Equal(t, test.expected, test.v) } }