2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-08-29 10:49:44 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"testing"
|
2022-12-19 10:52:15 -05:00
|
|
|
"time"
|
2022-08-29 10:49:44 -04:00
|
|
|
|
2023-05-03 05:11:53 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
2023-03-30 10:13:14 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/kubernetes"
|
2022-11-15 09:40:49 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
2023-02-09 09:54:12 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
2023-05-03 05:11:53 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/variant"
|
2022-08-29 10:49:44 -04:00
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2023-03-14 13:34:58 -04:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
2022-08-29 10:49:44 -04:00
|
|
|
)
|
|
|
|
|
2023-02-01 04:56:47 -05:00
|
|
|
func TestUpgradeApply(t *testing.T) {
|
2023-03-03 03:38:23 -05:00
|
|
|
someErr := errors.New("some error")
|
2022-08-29 10:49:44 -04:00
|
|
|
testCases := map[string]struct {
|
2023-03-03 03:38:23 -05:00
|
|
|
upgrader stubUpgrader
|
|
|
|
wantErr bool
|
2022-08-29 10:49:44 -04:00
|
|
|
}{
|
|
|
|
"success": {
|
2023-05-03 05:11:53 -04:00
|
|
|
upgrader: stubUpgrader{currentConfig: config.DefaultForAzureSEVSNP()},
|
2022-11-29 05:39:07 -05:00
|
|
|
},
|
2023-03-03 03:38:23 -05:00
|
|
|
"nodeVersion some error": {
|
2023-05-03 05:11:53 -04:00
|
|
|
upgrader: stubUpgrader{
|
|
|
|
currentConfig: config.DefaultForAzureSEVSNP(),
|
|
|
|
nodeVersionErr: someErr,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2023-03-03 03:38:23 -05:00
|
|
|
},
|
|
|
|
"nodeVersion in progress error": {
|
2023-05-03 05:11:53 -04:00
|
|
|
upgrader: stubUpgrader{
|
|
|
|
currentConfig: config.DefaultForAzureSEVSNP(),
|
|
|
|
nodeVersionErr: kubernetes.ErrInProgress,
|
|
|
|
},
|
2022-08-29 10:49:44 -04:00
|
|
|
},
|
2023-03-03 03:38:23 -05:00
|
|
|
"helm other error": {
|
2023-05-03 05:11:53 -04:00
|
|
|
upgrader: stubUpgrader{
|
|
|
|
currentConfig: config.DefaultForAzureSEVSNP(),
|
|
|
|
helmErr: someErr,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2022-08-29 10:49:44 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
2023-02-01 04:56:47 -05:00
|
|
|
cmd := newUpgradeApplyCmd()
|
2022-08-29 10:49:44 -04:00
|
|
|
cmd.Flags().String("config", constants.ConfigFilename, "") // register persistent flag manually
|
2023-01-31 05:45:31 -05:00
|
|
|
cmd.Flags().Bool("force", true, "") // register persistent flag manually
|
2022-08-29 10:49:44 -04:00
|
|
|
|
2023-03-14 13:34:58 -04:00
|
|
|
err := cmd.Flags().Set("yes", "true")
|
|
|
|
require.NoError(err)
|
|
|
|
|
2022-08-29 10:49:44 -04:00
|
|
|
handler := file.NewHandler(afero.NewMemMapFs())
|
2022-11-15 09:40:49 -05:00
|
|
|
cfg := defaultConfigWithExpectedMeasurements(t, config.Default(), cloudprovider.Azure)
|
|
|
|
require.NoError(handler.WriteYAML(constants.ConfigFilename, cfg))
|
2023-05-03 05:11:53 -04:00
|
|
|
require.NoError(handler.WriteJSON(constants.ClusterIDsFileName, clusterid.File{}))
|
2022-08-29 10:49:44 -04:00
|
|
|
|
2023-02-09 09:54:12 -05:00
|
|
|
upgrader := upgradeApplyCmd{upgrader: tc.upgrader, log: logger.NewTest(t)}
|
2023-03-14 13:34:58 -04:00
|
|
|
err = upgrader.upgradeApply(cmd, handler)
|
2022-08-29 10:49:44 -04:00
|
|
|
if tc.wantErr {
|
|
|
|
assert.Error(err)
|
|
|
|
} else {
|
|
|
|
assert.NoError(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type stubUpgrader struct {
|
2023-05-03 05:11:53 -04:00
|
|
|
currentConfig config.AttestationCfg
|
2023-03-03 03:38:23 -05:00
|
|
|
nodeVersionErr error
|
|
|
|
helmErr error
|
2022-08-29 10:49:44 -04:00
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (u stubUpgrader) UpgradeNodeVersion(_ context.Context, _ *config.Config) error {
|
2023-03-03 03:38:23 -05:00
|
|
|
return u.nodeVersionErr
|
2022-08-29 10:49:44 -04:00
|
|
|
}
|
2022-11-29 05:39:07 -05:00
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (u stubUpgrader) UpgradeHelmServices(_ context.Context, _ *config.Config, _ time.Duration, _ bool) error {
|
2022-12-19 10:52:15 -05:00
|
|
|
return u.helmErr
|
|
|
|
}
|
2023-03-14 13:34:58 -04:00
|
|
|
|
2023-05-03 05:11:53 -04:00
|
|
|
func (u stubUpgrader) UpdateAttestationConfig(_ context.Context, _ config.AttestationCfg) error {
|
2023-03-14 13:34:58 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-05-03 05:11:53 -04:00
|
|
|
func (u stubUpgrader) GetClusterAttestationConfig(_ context.Context, _ variant.Variant) (config.AttestationCfg, *corev1.ConfigMap, error) {
|
|
|
|
return u.currentConfig, &corev1.ConfigMap{}, nil
|
2023-03-14 13:34:58 -04:00
|
|
|
}
|