mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-21 21:55:27 -05:00
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
package config
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
||
|
"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: "v0.1.0",
|
||
|
target: "v0.0.0",
|
||
|
},
|
||
|
"short path works": {
|
||
|
cli: "v0.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)
|
||
|
|
||
|
constants.VersionInfo = tc.cli
|
||
|
err := validateVersionCompatibilityHelper("Image", tc.target)
|
||
|
if tc.wantError {
|
||
|
assert.Error(err)
|
||
|
return
|
||
|
}
|
||
|
assert.NoError(err)
|
||
|
})
|
||
|
}
|
||
|
}
|