2021-03-29 16:22:23 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type terraformExecuteMockUtils struct {
|
|
|
|
*mock.ExecMockRunner
|
|
|
|
*mock.FilesMock
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTerraformExecuteTestsUtils() terraformExecuteMockUtils {
|
|
|
|
utils := terraformExecuteMockUtils{
|
|
|
|
ExecMockRunner: &mock.ExecMockRunner{},
|
|
|
|
FilesMock: &mock.FilesMock{},
|
|
|
|
}
|
|
|
|
return utils
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunTerraformExecute(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
tt := []struct {
|
|
|
|
terraformExecuteOptions
|
2021-10-29 13:58:34 +02:00
|
|
|
expectedArgs []string
|
|
|
|
expectedEnvVars []string
|
2021-03-29 16:22:23 +02:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"apply", "-auto-approve"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
TerraformSecrets: "/tmp/test",
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"apply", "-auto-approve", "-var-file=/tmp/test"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "plan",
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"plan"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "plan",
|
|
|
|
TerraformSecrets: "/tmp/test",
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"plan", "-var-file=/tmp/test"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "plan",
|
|
|
|
TerraformSecrets: "/tmp/test",
|
|
|
|
AdditionalArgs: []string{"-arg1"},
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"plan", "-var-file=/tmp/test", "-arg1"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
TerraformSecrets: "/tmp/test",
|
|
|
|
AdditionalArgs: []string{"-arg1"},
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"apply", "-auto-approve", "-var-file=/tmp/test", "-arg1"}, []string{},
|
2021-03-29 16:22:23 +02:00
|
|
|
},
|
2021-10-28 16:20:14 +02:00
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
TerraformSecrets: "/tmp/test",
|
|
|
|
AdditionalArgs: []string{"-arg1"},
|
|
|
|
GlobalOptions: []string{"-chgdir=src"},
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"-chgdir=src", "apply", "-auto-approve", "-var-file=/tmp/test", "-arg1"}, []string{},
|
2021-10-28 16:20:14 +02:00
|
|
|
},
|
2021-10-29 12:06:06 +02:00
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
Init: true,
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"apply", "-auto-approve"}, []string{},
|
2021-10-29 12:06:06 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
GlobalOptions: []string{"-chgdir=src"},
|
|
|
|
Init: true,
|
2021-10-29 13:58:34 +02:00
|
|
|
}, []string{"-chgdir=src", "apply", "-auto-approve"}, []string{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
terraformExecuteOptions{
|
|
|
|
Command: "apply",
|
|
|
|
CliConfigFile: ".pipeline/.terraformrc",
|
|
|
|
}, []string{"apply", "-auto-approve"}, []string{"TF_CLI_CONFIG_FILE=.pipeline/.terraformrc"},
|
2021-10-29 12:06:06 +02:00
|
|
|
},
|
2021-03-29 16:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, test := range tt {
|
|
|
|
t.Run(fmt.Sprintf("That arguemtns are correct %d", i), func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
// init
|
|
|
|
config := test.terraformExecuteOptions
|
|
|
|
utils := newTerraformExecuteTestsUtils()
|
2021-10-29 13:58:34 +02:00
|
|
|
runner := utils.ExecMockRunner
|
2021-03-29 16:22:23 +02:00
|
|
|
|
|
|
|
// test
|
|
|
|
err := runTerraformExecute(&config, nil, utils)
|
|
|
|
|
|
|
|
// assert
|
|
|
|
assert.NoError(t, err)
|
2021-10-29 12:06:06 +02:00
|
|
|
|
|
|
|
if config.Init {
|
|
|
|
assert.Equal(t, mock.ExecCall{Exec: "terraform", Params: append(config.GlobalOptions, "init")}, utils.Calls[0])
|
|
|
|
assert.Equal(t, mock.ExecCall{Exec: "terraform", Params: test.expectedArgs}, utils.Calls[1])
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, mock.ExecCall{Exec: "terraform", Params: test.expectedArgs}, utils.Calls[0])
|
|
|
|
}
|
2021-10-29 13:58:34 +02:00
|
|
|
|
|
|
|
assert.Subset(t, runner.Env, test.expectedEnvVars)
|
2021-03-29 16:22:23 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|