2022-09-05 09:06:08 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-04-13 13:01:38 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-06-30 15:24:36 +02:00
|
|
|
"testing"
|
2022-04-13 13:01:38 +02:00
|
|
|
|
2022-12-07 11:48:54 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd"
|
2023-04-14 14:15:07 +02:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
2024-01-24 15:10:15 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
2022-09-21 13:47:57 +02:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2023-02-24 11:36:41 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
2023-10-31 12:46:40 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
2023-12-08 16:27:04 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constellation/state"
|
2022-06-30 15:24:36 +02:00
|
|
|
"go.uber.org/goleak"
|
2022-04-13 13:01:38 +02:00
|
|
|
)
|
|
|
|
|
2022-06-30 15:24:36 +02:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
goleak.VerifyTestMain(m,
|
|
|
|
// https://github.com/census-instrumentation/opencensus-go/issues/1262
|
|
|
|
goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"),
|
2024-01-16 17:45:35 +01:00
|
|
|
goleak.IgnoreAnyFunction("github.com/bazelbuild/rules_go/go/tools/bzltestutil.RegisterTimeoutHandler.func1"),
|
2022-06-30 15:24:36 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-04-13 13:01:38 +02:00
|
|
|
type stubCloudCreator struct {
|
2023-11-20 11:17:16 +01:00
|
|
|
state state.Infrastructure
|
|
|
|
planCalled bool
|
|
|
|
planDiff bool
|
|
|
|
planErr error
|
|
|
|
applyCalled bool
|
|
|
|
applyErr error
|
|
|
|
restoreErr error
|
|
|
|
workspaceIsEmpty bool
|
|
|
|
workspaceIsEmptyErr error
|
2022-04-13 13:01:38 +02:00
|
|
|
}
|
|
|
|
|
2023-10-31 12:46:40 +01:00
|
|
|
func (c *stubCloudCreator) Plan(_ context.Context, _ *config.Config) (bool, error) {
|
|
|
|
c.planCalled = true
|
2023-11-20 11:17:16 +01:00
|
|
|
return c.planDiff, c.planErr
|
2023-10-31 12:46:40 +01:00
|
|
|
}
|
|
|
|
|
2024-01-24 15:10:15 +01:00
|
|
|
func (c *stubCloudCreator) Apply(_ context.Context, _ cloudprovider.Provider, _ variant.Variant, _ cloudcmd.RollbackBehavior) (state.Infrastructure, error) {
|
2023-10-31 12:46:40 +01:00
|
|
|
c.applyCalled = true
|
|
|
|
return c.state, c.applyErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubCloudCreator) RestoreWorkspace() error {
|
2023-11-20 11:17:16 +01:00
|
|
|
return c.restoreErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubCloudCreator) WorkingDirIsEmpty() (bool, error) {
|
|
|
|
return c.workspaceIsEmpty, c.workspaceIsEmptyErr
|
2022-04-13 13:01:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type stubCloudTerminator struct {
|
|
|
|
called bool
|
|
|
|
terminateErr error
|
|
|
|
}
|
|
|
|
|
2023-08-04 13:53:51 +02:00
|
|
|
func (c *stubCloudTerminator) Terminate(_ context.Context, _ string, _ terraform.LogLevel) error {
|
2022-04-13 13:01:38 +02:00
|
|
|
c.called = true
|
|
|
|
return c.terminateErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubCloudTerminator) Called() bool {
|
|
|
|
return c.called
|
|
|
|
}
|
2022-12-07 11:48:54 +01:00
|
|
|
|
|
|
|
type stubIAMCreator struct {
|
|
|
|
createCalled bool
|
2023-08-08 12:06:22 +02:00
|
|
|
id cloudcmd.IAMOutput
|
2022-12-07 11:48:54 +01:00
|
|
|
createErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubIAMCreator) Create(
|
2023-03-20 11:03:36 +01:00
|
|
|
_ context.Context,
|
2022-12-07 11:48:54 +01:00
|
|
|
provider cloudprovider.Provider,
|
2023-04-14 14:15:07 +02:00
|
|
|
_ *cloudcmd.IAMConfigOptions,
|
2023-08-08 12:06:22 +02:00
|
|
|
) (cloudcmd.IAMOutput, error) {
|
2022-12-07 11:48:54 +01:00
|
|
|
c.createCalled = true
|
|
|
|
c.id.CloudProvider = provider
|
|
|
|
return c.id, c.createErr
|
|
|
|
}
|
2023-02-24 11:36:41 +01:00
|
|
|
|
|
|
|
type stubIAMDestroyer struct {
|
|
|
|
destroyCalled bool
|
2023-08-04 13:53:51 +02:00
|
|
|
getTfStateKeyCalled bool
|
2023-02-24 11:36:41 +01:00
|
|
|
gcpSaKey gcpshared.ServiceAccountKey
|
|
|
|
destroyErr error
|
2023-08-04 13:53:51 +02:00
|
|
|
getTfStateKeyErr error
|
2023-02-24 11:36:41 +01:00
|
|
|
}
|
|
|
|
|
2023-08-04 13:53:51 +02:00
|
|
|
func (d *stubIAMDestroyer) DestroyIAMConfiguration(_ context.Context, _ string, _ terraform.LogLevel) error {
|
2023-02-24 11:36:41 +01:00
|
|
|
d.destroyCalled = true
|
|
|
|
return d.destroyErr
|
|
|
|
}
|
|
|
|
|
2023-08-04 13:53:51 +02:00
|
|
|
func (d *stubIAMDestroyer) GetTfStateServiceAccountKey(_ context.Context, _ string) (gcpshared.ServiceAccountKey, error) {
|
|
|
|
d.getTfStateKeyCalled = true
|
|
|
|
return d.gcpSaKey, d.getTfStateKeyErr
|
2023-02-24 11:36:41 +01:00
|
|
|
}
|