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"
|
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-09-27 03:22:29 -04:00
|
|
|
cleanUpWorkspaceCalled bool
|
|
|
|
removeInstallerCalled bool
|
|
|
|
destroyClusterCalled bool
|
|
|
|
createClusterErr error
|
|
|
|
destroyClusterErr error
|
2022-11-15 08:00:44 -05:00
|
|
|
prepareWorkspaceErr error
|
2022-09-27 03:22:29 -04:00
|
|
|
cleanUpWorkspaceErr error
|
2022-06-09 16:26:36 -04:00
|
|
|
}
|
|
|
|
|
2022-11-15 08:00:44 -05:00
|
|
|
func (c *stubTerraformClient) CreateCluster(ctx context.Context) (string, error) {
|
2022-10-11 06:24:33 -04:00
|
|
|
return c.ip, c.createClusterErr
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
|
|
|
|
2022-11-15 08:00:44 -05:00
|
|
|
func (c *stubTerraformClient) PrepareWorkspace(provider cloudprovider.Provider, input terraform.Variables) error {
|
|
|
|
return c.prepareWorkspaceErr
|
|
|
|
}
|
|
|
|
|
2022-09-27 03:22:29 -04:00
|
|
|
func (c *stubTerraformClient) DestroyCluster(ctx context.Context) error {
|
|
|
|
c.destroyClusterCalled = true
|
|
|
|
return c.destroyClusterErr
|
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
|
|
|
|
|
|
|
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
|
|
|
|
}
|