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