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-09-25 10:19:43 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/state"
|
2023-04-14 08:15:07 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
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"
|
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"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-04-13 07:01:38 -04:00
|
|
|
type stubCloudCreator struct {
|
|
|
|
createCalled bool
|
2023-09-25 10:19:43 -04:00
|
|
|
state state.Infrastructure
|
2022-04-13 07:01:38 -04:00
|
|
|
createErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubCloudCreator) Create(
|
2023-03-20 06:03:36 -04:00
|
|
|
_ context.Context,
|
2023-09-25 10:19:43 -04:00
|
|
|
_ cloudcmd.CreateOptions,
|
|
|
|
) (state.Infrastructure, error) {
|
2022-04-13 07:01:38 -04:00
|
|
|
c.createCalled = true
|
2023-09-25 10:19:43 -04:00
|
|
|
return c.state, c.createErr
|
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
|
|
|
}
|