Merge pull request #2581 from my-git9/utversion5

add ut for pkg/version/version.go
This commit is contained in:
karmada-bot 2022-09-28 08:51:56 +08:00 committed by GitHub
commit fc196abf89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
package version
import (
"testing"
)
func TestInfo_String(t *testing.T) {
tests := []struct {
name string
info Info
want string
}{
{
name: "test1",
info: Info{
GitVersion: "1.3.0",
GitCommit: "da070e68f3318410c8c70ed8186a2bc4736dacbd",
GitTreeState: "clean",
BuildDate: "2022-08-31T13:09:22Z",
GoVersion: "go1.18.3",
Compiler: "gc",
Platform: "linux/amd64",
},
want: `version.Info{GitVersion:"1.3.0", GitCommit:"da070e68f3318410c8c70ed8186a2bc4736dacbd", GitTreeState:"clean", BuildDate:"2022-08-31T13:09:22Z", GoVersion:"go1.18.3", Compiler:"gc", Platform:"linux/amd64"}`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.info.String(); got != tt.want {
t.Errorf("Info.String() = %v, want %v", got, tt.want)
}
})
}
}