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"
|
2022-10-11 06:24:33 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
2022-12-07 05:48:54 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/iamid"
|
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-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
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
|
2022-10-11 06:24:33 -04:00
|
|
|
id clusterid.File
|
2022-04-13 07:01:38 -04:00
|
|
|
createErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *stubCloudCreator) Create(
|
2023-03-20 06:03:36 -04:00
|
|
|
_ context.Context,
|
2022-04-13 09:09:33 -04:00
|
|
|
provider cloudprovider.Provider,
|
2023-03-20 06:03:36 -04:00
|
|
|
_ *config.Config,
|
|
|
|
_ string,
|
|
|
|
_, _ int,
|
2022-10-11 06:24:33 -04:00
|
|
|
) (clusterid.File, error) {
|
2022-04-13 07:01:38 -04:00
|
|
|
c.createCalled = true
|
2022-10-11 06:24:33 -04:00
|
|
|
c.id.CloudProvider = provider
|
|
|
|
return c.id, c.createErr
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type stubCloudTerminator struct {
|
|
|
|
called bool
|
|
|
|
terminateErr error
|
|
|
|
}
|
|
|
|
|
2022-10-26 09:57:00 -04:00
|
|
|
func (c *stubCloudTerminator) Terminate(context.Context) 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
|
|
|
|
id iamid.File
|
|
|
|
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-03-20 06:03:36 -04:00
|
|
|
_ *cloudcmd.IAMConfig,
|
2022-12-07 05:48:54 -05:00
|
|
|
) (iamid.File, error) {
|
|
|
|
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
|
|
|
|
getTfstateKeyCalled bool
|
|
|
|
gcpSaKey gcpshared.ServiceAccountKey
|
|
|
|
destroyErr error
|
|
|
|
getTfstateKeyErr error
|
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (d *stubIAMDestroyer) DestroyIAMConfiguration(_ context.Context) error {
|
2023-02-24 05:36:41 -05:00
|
|
|
d.destroyCalled = true
|
|
|
|
return d.destroyErr
|
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (d *stubIAMDestroyer) GetTfstateServiceAccountKey(_ context.Context) (gcpshared.ServiceAccountKey, error) {
|
2023-02-24 05:36:41 -05:00
|
|
|
d.getTfstateKeyCalled = true
|
|
|
|
return d.gcpSaKey, d.getTfstateKeyErr
|
|
|
|
}
|