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 cloudcmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-11-22 12:47:08 -05:00
|
|
|
"io"
|
2022-06-30 09:24:36 -04:00
|
|
|
"testing"
|
2022-04-13 07:01:38 -04:00
|
|
|
|
2022-09-27 03:22:29 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
2022-10-26 09:57:00 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2022-11-22 12:47:08 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
2023-02-24 05:36:41 -05:00
|
|
|
tfjson "github.com/hashicorp/terraform-json"
|
2022-11-15 08:00:44 -05:00
|
|
|
|
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-09-27 03:22:29 -04:00
|
|
|
type stubTerraformClient struct {
|
2022-10-11 06:24:33 -04:00
|
|
|
ip string
|
2022-11-26 13:44:34 -05:00
|
|
|
initSecret string
|
2022-12-07 05:48:54 -05:00
|
|
|
iamOutput terraform.IAMOutput
|
2023-01-19 04:41:07 -05:00
|
|
|
uid string
|
2023-03-20 08:33:04 -04:00
|
|
|
attestationURL string
|
2023-02-24 05:36:41 -05:00
|
|
|
tfjsonState *tfjson.State
|
2022-09-27 03:22:29 -04:00
|
|
|
cleanUpWorkspaceCalled bool
|
|
|
|
removeInstallerCalled bool
|
2023-02-13 02:42:54 -05:00
|
|
|
destroyCalled bool
|
2023-02-24 05:36:41 -05:00
|
|
|
showCalled bool
|
2022-09-27 03:22:29 -04:00
|
|
|
createClusterErr error
|
2023-02-13 02:42:54 -05:00
|
|
|
destroyErr error
|
2022-11-15 08:00:44 -05:00
|
|
|
prepareWorkspaceErr error
|
2022-09-27 03:22:29 -04:00
|
|
|
cleanUpWorkspaceErr error
|
2022-12-07 05:48:54 -05:00
|
|
|
iamOutputErr error
|
2023-02-24 05:36:41 -05:00
|
|
|
showErr error
|
2022-06-09 16:26:36 -04:00
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubTerraformClient) CreateCluster(_ context.Context) (terraform.CreateOutput, error) {
|
2023-01-19 04:41:07 -05:00
|
|
|
return terraform.CreateOutput{
|
2023-03-20 08:33:04 -04:00
|
|
|
IP: c.ip,
|
|
|
|
Secret: c.initSecret,
|
|
|
|
UID: c.uid,
|
|
|
|
AttestationURL: c.attestationURL,
|
2023-01-19 04:41:07 -05:00
|
|
|
}, c.createClusterErr
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubTerraformClient) CreateIAMConfig(_ context.Context, _ cloudprovider.Provider) (terraform.IAMOutput, error) {
|
2022-12-07 05:48:54 -05:00
|
|
|
return c.iamOutput, c.iamOutputErr
|
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubTerraformClient) PrepareWorkspace(_ string, _ terraform.Variables) error {
|
2022-11-15 08:00:44 -05:00
|
|
|
return c.prepareWorkspaceErr
|
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubTerraformClient) Destroy(_ context.Context) error {
|
2023-02-13 02:42:54 -05:00
|
|
|
c.destroyCalled = true
|
|
|
|
return c.destroyErr
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
|
|
|
|
2022-09-27 03:22:29 -04:00
|
|
|
func (c *stubTerraformClient) CleanUpWorkspace() error {
|
|
|
|
c.cleanUpWorkspaceCalled = true
|
|
|
|
return c.cleanUpWorkspaceErr
|
2022-06-09 16:26:36 -04:00
|
|
|
}
|
|
|
|
|
2022-09-27 03:22:29 -04:00
|
|
|
func (c *stubTerraformClient) RemoveInstaller() {
|
|
|
|
c.removeInstallerCalled = true
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
2022-10-05 03:11:30 -04:00
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubTerraformClient) Show(_ context.Context) (*tfjson.State, error) {
|
2023-02-24 05:36:41 -05:00
|
|
|
c.showCalled = true
|
|
|
|
return c.tfjsonState, c.showErr
|
|
|
|
}
|
|
|
|
|
2022-10-05 03:11:30 -04:00
|
|
|
type stubLibvirtRunner struct {
|
|
|
|
startCalled bool
|
|
|
|
stopCalled bool
|
|
|
|
startErr error
|
|
|
|
stopErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *stubLibvirtRunner) Start(_ context.Context, _, _ string) error {
|
|
|
|
r.startCalled = true
|
|
|
|
return r.startErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *stubLibvirtRunner) Stop(context.Context) error {
|
|
|
|
r.stopCalled = true
|
|
|
|
return r.stopErr
|
|
|
|
}
|
2022-11-22 12:47:08 -05:00
|
|
|
|
|
|
|
type stubImageFetcher struct {
|
|
|
|
reference string
|
|
|
|
fetchReferenceErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *stubImageFetcher) FetchReference(_ context.Context, _ *config.Config) (string, error) {
|
|
|
|
return f.reference, f.fetchReferenceErr
|
|
|
|
}
|
|
|
|
|
|
|
|
type stubRawDownloader struct {
|
|
|
|
destination string
|
|
|
|
downloadErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *stubRawDownloader) Download(_ context.Context, _ io.Writer, _ bool, _ string, _ string) (string, error) {
|
|
|
|
return d.destination, d.downloadErr
|
|
|
|
}
|