mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
9477999be2
* Clean up Terraform pkg * Add note to Terraform migration functions expecting to be run on initialized workspace --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
332 lines
8.1 KiB
Go
332 lines
8.1 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package upgrade
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"io"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
|
"github.com/spf13/afero"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCheckTerraformMigrations(t *testing.T) {
|
|
workspace := func(existingFiles []string) file.Handler {
|
|
fs := afero.NewMemMapFs()
|
|
for _, f := range existingFiles {
|
|
require.NoError(t, afero.WriteFile(fs, f, []byte{}, 0o644))
|
|
}
|
|
|
|
return file.NewHandler(fs)
|
|
}
|
|
|
|
testCases := map[string]struct {
|
|
upgradeID string
|
|
workspace file.Handler
|
|
wantErr bool
|
|
}{
|
|
"success": {
|
|
upgradeID: "1234",
|
|
workspace: workspace(nil),
|
|
},
|
|
"terraform backup dir already exists": {
|
|
upgradeID: "1234",
|
|
workspace: workspace([]string{filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeBackupDir)}),
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
u := NewTerraformUpgrader(&stubTerraformClient{}, bytes.NewBuffer(nil), tc.workspace, tc.upgradeID)
|
|
|
|
err := u.CheckTerraformMigrations(constants.UpgradeDir)
|
|
if tc.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestPlanTerraformMigrations(t *testing.T) {
|
|
workspace := func(existingFiles []string) file.Handler {
|
|
fs := afero.NewMemMapFs()
|
|
for _, f := range existingFiles {
|
|
require.NoError(t, afero.WriteFile(fs, f, []byte{}, 0o644))
|
|
}
|
|
|
|
return file.NewHandler(fs)
|
|
}
|
|
|
|
testCases := map[string]struct {
|
|
upgradeID string
|
|
tf tfResourceClient
|
|
workspace file.Handler
|
|
want bool
|
|
wantErr bool
|
|
}{
|
|
"success no diff": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{},
|
|
workspace: workspace([]string{}),
|
|
},
|
|
"success diff": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{
|
|
hasDiff: true,
|
|
},
|
|
workspace: workspace([]string{}),
|
|
want: true,
|
|
},
|
|
"prepare workspace error": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{
|
|
prepareWorkspaceErr: assert.AnError,
|
|
},
|
|
workspace: workspace([]string{}),
|
|
wantErr: true,
|
|
},
|
|
"plan error": {
|
|
tf: &stubTerraformClient{
|
|
planErr: assert.AnError,
|
|
},
|
|
workspace: workspace([]string{}),
|
|
wantErr: true,
|
|
},
|
|
"show plan error no diff": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{
|
|
showErr: assert.AnError,
|
|
},
|
|
workspace: workspace([]string{}),
|
|
},
|
|
"show plan error diff": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{
|
|
showErr: assert.AnError,
|
|
hasDiff: true,
|
|
},
|
|
workspace: workspace([]string{}),
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
require := require.New(t)
|
|
|
|
u := NewTerraformUpgrader(tc.tf, bytes.NewBuffer(nil), tc.workspace, tc.upgradeID)
|
|
|
|
opts := TerraformUpgradeOptions{
|
|
LogLevel: terraform.LogLevelDebug,
|
|
CSP: cloudprovider.Unknown,
|
|
Vars: &terraform.QEMUVariables{},
|
|
}
|
|
|
|
diff, err := u.PlanTerraformMigrations(context.Background(), opts)
|
|
if tc.wantErr {
|
|
require.Error(err)
|
|
} else {
|
|
require.NoError(err)
|
|
require.Equal(tc.want, diff)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestApplyTerraformMigrations(t *testing.T) {
|
|
fileHandler := func(upgradeID string, existingFiles ...string) file.Handler {
|
|
fh := file.NewHandler(afero.NewMemMapFs())
|
|
|
|
require.NoError(t,
|
|
fh.Write(
|
|
filepath.Join(constants.UpgradeDir, upgradeID, constants.TerraformUpgradeWorkingDir, "someFile"),
|
|
[]byte("some content"),
|
|
))
|
|
for _, f := range existingFiles {
|
|
require.NoError(t, fh.Write(f, []byte("some content")))
|
|
}
|
|
return fh
|
|
}
|
|
|
|
testCases := map[string]struct {
|
|
upgradeID string
|
|
tf tfResourceClient
|
|
policyPatcher stubPolicyPatcher
|
|
fs file.Handler
|
|
wantErr bool
|
|
}{
|
|
"success": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{},
|
|
fs: fileHandler("1234"),
|
|
policyPatcher: stubPolicyPatcher{},
|
|
},
|
|
"create cluster error": {
|
|
upgradeID: "1234",
|
|
tf: &stubTerraformClient{
|
|
CreateClusterErr: assert.AnError,
|
|
},
|
|
fs: fileHandler("1234"),
|
|
policyPatcher: stubPolicyPatcher{},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
require := require.New(t)
|
|
|
|
u := NewTerraformUpgrader(tc.tf, bytes.NewBuffer(nil), tc.fs, tc.upgradeID)
|
|
|
|
opts := TerraformUpgradeOptions{
|
|
LogLevel: terraform.LogLevelDebug,
|
|
CSP: cloudprovider.Unknown,
|
|
Vars: &terraform.QEMUVariables{},
|
|
TFWorkspace: "test",
|
|
UpgradeWorkspace: constants.UpgradeDir,
|
|
}
|
|
|
|
_, err := u.ApplyTerraformMigrations(context.Background(), opts)
|
|
if tc.wantErr {
|
|
require.Error(err)
|
|
} else {
|
|
require.NoError(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCleanUpTerraformMigrations(t *testing.T) {
|
|
workspace := func(existingFiles []string) file.Handler {
|
|
fs := afero.NewMemMapFs()
|
|
for _, f := range existingFiles {
|
|
require.NoError(t, afero.WriteFile(fs, f, []byte{}, 0o644))
|
|
}
|
|
|
|
return file.NewHandler(fs)
|
|
}
|
|
|
|
testCases := map[string]struct {
|
|
upgradeID string
|
|
workspaceFiles []string
|
|
wantFiles []string
|
|
wantErr bool
|
|
}{
|
|
"no files": {
|
|
upgradeID: "1234",
|
|
workspaceFiles: nil,
|
|
wantFiles: []string{},
|
|
},
|
|
"clean backup dir": {
|
|
upgradeID: "1234",
|
|
workspaceFiles: []string{
|
|
filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeBackupDir),
|
|
},
|
|
wantFiles: []string{},
|
|
},
|
|
"clean working dir": {
|
|
upgradeID: "1234",
|
|
workspaceFiles: []string{
|
|
filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeWorkingDir),
|
|
},
|
|
wantFiles: []string{},
|
|
},
|
|
"clean all": {
|
|
upgradeID: "1234",
|
|
workspaceFiles: []string{
|
|
filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeBackupDir),
|
|
filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeWorkingDir),
|
|
filepath.Join(constants.UpgradeDir, "1234", "abc"),
|
|
},
|
|
wantFiles: []string{},
|
|
},
|
|
"leave other files": {
|
|
upgradeID: "1234",
|
|
workspaceFiles: []string{
|
|
filepath.Join(constants.UpgradeDir, "1234", constants.TerraformUpgradeBackupDir),
|
|
filepath.Join(constants.UpgradeDir, "other"),
|
|
},
|
|
wantFiles: []string{
|
|
filepath.Join(constants.UpgradeDir, "other"),
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
require := require.New(t)
|
|
|
|
workspace := workspace(tc.workspaceFiles)
|
|
u := NewTerraformUpgrader(&stubTerraformClient{}, bytes.NewBuffer(nil), workspace, tc.upgradeID)
|
|
|
|
err := u.CleanUpTerraformMigrations(constants.UpgradeDir)
|
|
if tc.wantErr {
|
|
require.Error(err)
|
|
return
|
|
}
|
|
|
|
require.NoError(err)
|
|
|
|
for _, haveFile := range tc.workspaceFiles {
|
|
for _, wantFile := range tc.wantFiles {
|
|
if haveFile == wantFile {
|
|
_, err := workspace.Stat(wantFile)
|
|
require.NoError(err, "file %s should exist", wantFile)
|
|
} else {
|
|
_, err := workspace.Stat(haveFile)
|
|
require.Error(err, "file %s should not exist", haveFile)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
type stubTerraformClient struct {
|
|
hasDiff bool
|
|
prepareWorkspaceErr error
|
|
showErr error
|
|
planErr error
|
|
CreateClusterErr error
|
|
}
|
|
|
|
func (u *stubTerraformClient) PrepareUpgradeWorkspace(_, _, _, _ string, _ terraform.Variables) error {
|
|
return u.prepareWorkspaceErr
|
|
}
|
|
|
|
func (u *stubTerraformClient) ShowPlan(_ context.Context, _ terraform.LogLevel, _ io.Writer) error {
|
|
return u.showErr
|
|
}
|
|
|
|
func (u *stubTerraformClient) Plan(_ context.Context, _ terraform.LogLevel) (bool, error) {
|
|
return u.hasDiff, u.planErr
|
|
}
|
|
|
|
func (u *stubTerraformClient) ApplyCluster(_ context.Context, _ cloudprovider.Provider, _ terraform.LogLevel) (terraform.ApplyOutput, error) {
|
|
return terraform.ApplyOutput{}, u.CreateClusterErr
|
|
}
|
|
|
|
type stubPolicyPatcher struct {
|
|
patchErr error
|
|
}
|
|
|
|
func (p *stubPolicyPatcher) PatchPolicy(_ context.Context, _ string) error {
|
|
return p.patchErr
|
|
}
|