Files
pinniped/internal/pversion/version_test.go
2025-05-13 11:56:03 -07:00

143 lines
4.1 KiB
Go

// Copyright 2023-2025 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package pversion
import (
"fmt"
"runtime"
"runtime/debug"
"testing"
"github.com/stretchr/testify/require"
apimachineryversion "k8s.io/apimachinery/pkg/version"
utilversion "k8s.io/component-base/compatibility"
)
func TestGet(t *testing.T) {
originalGitVersion := gitVersion
t.Cleanup(func() {
gitVersion = originalGitVersion
readBuildInfo = debug.ReadBuildInfo
})
tests := []struct {
name string
gitVersion string
readBuildInfo func() (info *debug.BuildInfo, ok bool)
wantInfo apimachineryversion.Info
}{
{
name: "when readBuildInfo() returns not ok",
gitVersion: "",
readBuildInfo: func() (info *debug.BuildInfo, ok bool) {
return nil, false
},
wantInfo: apimachineryversion.Info{
Major: "0",
Minor: "0",
GitVersion: "v0.0.0",
GitTreeState: "dirty",
GoVersion: runtime.Version(),
Compiler: runtime.Compiler,
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
},
},
{
name: "when readBuildInfo() returns ok",
gitVersion: "9.8.7",
readBuildInfo: func() (info *debug.BuildInfo, ok bool) {
buildInfo := debug.BuildInfo{
Settings: []debug.BuildSetting{
{Key: "vcs.revision", Value: "revision-value"},
{Key: "vcs.time", Value: "time-value"},
{Key: "vcs.modified", Value: "anything but 'true'"},
{Key: "other", Value: "ignored"},
},
}
return &buildInfo, true
},
wantInfo: apimachineryversion.Info{
Major: "9",
Minor: "8",
GitVersion: "9.8.7",
GitCommit: "revision-value",
GitTreeState: "dirty",
BuildDate: "time-value",
GoVersion: runtime.Version(),
Compiler: runtime.Compiler,
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
},
},
{
name: "when readBuildInfo() returns ok but gitVersion is not provided",
gitVersion: "",
readBuildInfo: func() (info *debug.BuildInfo, ok bool) {
buildInfo := debug.BuildInfo{
Settings: []debug.BuildSetting{
{Key: "vcs.revision", Value: "384850953501b7d66d466b4ca4d13a81bc54a7c3"},
{Key: "vcs.time", Value: "time-value"},
{Key: "vcs.modified", Value: "anything but 'true'"},
{Key: "other", Value: "ignored"},
},
}
return &buildInfo, true
},
wantInfo: apimachineryversion.Info{
Major: "0",
Minor: "0",
GitVersion: "v0.0.0-38485095-dirty",
GitCommit: "384850953501b7d66d466b4ca4d13a81bc54a7c3",
GitTreeState: "dirty",
BuildDate: "time-value",
GoVersion: runtime.Version(),
Compiler: runtime.Compiler,
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
},
},
{
name: "when gitVersion is complex",
gitVersion: "v1.2.3-abc123",
readBuildInfo: func() (info *debug.BuildInfo, ok bool) {
buildInfo := debug.BuildInfo{
Settings: []debug.BuildSetting{
{Key: "vcs.revision", Value: "abc123"},
{Key: "vcs.time", Value: "time-value"},
{Key: "vcs.modified", Value: "false"},
{Key: "other", Value: "ignored"},
},
}
return &buildInfo, true
},
wantInfo: apimachineryversion.Info{
Major: "1",
Minor: "2",
GitVersion: "v1.2.3-abc123",
GitCommit: "abc123",
GitTreeState: "clean",
BuildDate: "time-value",
GoVersion: runtime.Version(),
Compiler: runtime.Compiler,
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
},
},
}
// These tests cannot be done in Parallel due to side effects
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
gitVersion = test.gitVersion
readBuildInfo = test.readBuildInfo
require.Equal(t, test.wantInfo, Get())
})
}
}
func TestThatPVersionIsCompatibleWithEffectiveVersion(t *testing.T) {
version := Get().String()
effectiveVersion := utilversion.NewEffectiveVersionFromString(version, "", "")
require.NotNil(t, effectiveVersion)
require.Equal(t, version, "v"+effectiveVersion.BinaryVersion().String())
}