constellation/cli/internal/cloudcmd/clients_test.go

102 lines
2.5 KiB
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
2022-04-13 11:01:38 +00:00
package cloudcmd
import (
"context"
"io"
"testing"
2022-04-13 11:01:38 +00:00
2022-09-27 07:22:29 +00:00
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
"github.com/edgelesssys/constellation/v2/internal/config"
"go.uber.org/goleak"
2022-04-13 11:01:38 +00: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 07:22:29 +00:00
type stubTerraformClient struct {
2022-10-11 10:24:33 +00:00
ip string
2022-11-26 18:44:34 +00:00
initSecret string
iamOutput terraform.IAMOutput
2022-09-27 07:22:29 +00:00
cleanUpWorkspaceCalled bool
removeInstallerCalled bool
destroyClusterCalled bool
createClusterErr error
destroyClusterErr error
prepareWorkspaceErr error
2022-09-27 07:22:29 +00:00
cleanUpWorkspaceErr error
iamOutputErr error
2022-06-09 20:26:36 +00:00
}
2022-11-26 18:44:34 +00:00
func (c *stubTerraformClient) CreateCluster(ctx context.Context) (string, string, error) {
return c.ip, c.initSecret, c.createClusterErr
2022-04-13 11:01:38 +00:00
}
func (c *stubTerraformClient) CreateIAMConfig(ctx context.Context, provider cloudprovider.Provider) (terraform.IAMOutput, error) {
return c.iamOutput, c.iamOutputErr
}
func (c *stubTerraformClient) PrepareWorkspace(path string, input terraform.Variables) error {
return c.prepareWorkspaceErr
}
2022-09-27 07:22:29 +00:00
func (c *stubTerraformClient) DestroyCluster(ctx context.Context) error {
c.destroyClusterCalled = true
return c.destroyClusterErr
2022-04-13 11:01:38 +00:00
}
2022-09-27 07:22:29 +00:00
func (c *stubTerraformClient) CleanUpWorkspace() error {
c.cleanUpWorkspaceCalled = true
return c.cleanUpWorkspaceErr
2022-06-09 20:26:36 +00:00
}
2022-09-27 07:22:29 +00:00
func (c *stubTerraformClient) RemoveInstaller() {
c.removeInstallerCalled = true
2022-04-13 11:01:38 +00: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
}
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
}