mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
fc0efb6309
* Remove confidentialVM option from azure provider config * Fix cloudcmd creator test --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
50 lines
1.0 KiB
Go
50 lines
1.0 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package config
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// TestValidateVersionCompatibilityHelper checks that basic version and image short paths are correctly validated.
|
|
func TestValidateVersionCompatibilityHelper(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
cli string
|
|
target string
|
|
wantError bool
|
|
}{
|
|
"full version works": {
|
|
cli: "0.1.0",
|
|
target: "v0.0.0",
|
|
},
|
|
"short path works": {
|
|
cli: "0.1.0",
|
|
target: "ref/main/stream/debug/v0.0.0-pre.0.20230109121528-d24fac00f018",
|
|
},
|
|
"minor version difference > 1": {
|
|
cli: "0.0.0",
|
|
target: "ref/main/stream/debug/v0.2.0-pre.0.20230109121528-d24fac00f018",
|
|
wantError: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
err := validateVersionCompatibilityHelper(tc.cli, "image", tc.target)
|
|
if tc.wantError {
|
|
assert.Error(err)
|
|
return
|
|
}
|
|
assert.NoError(err)
|
|
})
|
|
}
|
|
}
|