1
0
mirror of synced 2026-02-13 13:06:56 +00:00

add e2e test for check --pre with templating support

Signed-off-by: Chanwit Kaewkasi <chanwit@gmail.com>
This commit is contained in:
Chanwit Kaewkasi
2021-08-17 20:46:20 +07:00
parent a3ba9817a3
commit cc32c1be07
3 changed files with 73 additions and 3 deletions

40
cmd/flux/check_test.go Normal file
View File

@@ -0,0 +1,40 @@
// +build e2e
package main
import (
"context"
"encoding/json"
"strings"
"testing"
"github.com/fluxcd/flux2/internal/utils"
"k8s.io/apimachinery/pkg/version"
)
func TestCheckPre(t *testing.T) {
jsonOutput, err := utils.ExecKubectlCommand(context.TODO(), utils.ModeCapture, rootArgs.kubeconfig, rootArgs.kubecontext, "version", "--output", "json")
if err != nil {
t.Fatalf("Error running utils.ExecKubectlCommand: %v", err.Error())
}
var versions map[string]version.Info
if err := json.Unmarshal([]byte(jsonOutput), &versions); err != nil {
t.Fatalf("Error unmarshalling: %v", err.Error())
}
clientVersion := strings.TrimPrefix(versions["clientVersion"].GitVersion, "v")
serverVersion := strings.TrimPrefix(versions["serverVersion"].GitVersion, "v")
cmd := cmdTestCase{
args: "check --pre",
wantError: false,
testClusterMode: ExistingClusterMode,
templateValues: map[string]string{
"clientVersion": clientVersion,
"serverVersion": serverVersion,
},
goldenFile: "testdata/check/check_pre.golden",
}
cmd.runTestCmd(t)
}