Merge pull request #1021 from Nalum/997-commit-in-version

Remove commit hash from Version string
This commit is contained in:
jetstack-bot 2018-10-29 19:56:03 +00:00 committed by GitHub
commit 86ef1db811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 100 additions and 2 deletions

View File

@ -19,7 +19,10 @@ go_library(
go_test(
name = "go_default_test",
srcs = ["util_test.go"],
srcs = [
"util_test.go",
"version_test.go",
],
embed = [":go_default_library"],
)

View File

@ -18,6 +18,7 @@ package util
import "fmt"
// This variable block holds information used to build up the version string
var (
AppGitState = ""
AppGitCommit = ""
@ -26,7 +27,7 @@ var (
func version() string {
v := AppVersion
if AppGitCommit != "" {
if AppVersion == "canary" && AppGitCommit != "" {
v += "-" + AppGitCommit
}
if AppGitState != "" {

94
pkg/util/version_test.go Normal file
View File

@ -0,0 +1,94 @@
/*
Copyright 2018 The Jetstack cert-manager contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package util
import (
"testing"
)
func TestVersion(t *testing.T) {
type testT struct {
appGitCommit string
appGitState string
appVersion string
expectedVersion string
description string
}
tests := []testT{
testT{
appVersion: "canary",
expectedVersion: "canary",
description: "canary version with no commit hash and no git state",
},
testT{
appVersion: "canary",
appGitCommit: "abc123",
expectedVersion: "canary-abc123",
description: "canary version with a commit hash and no git state",
},
testT{
appVersion: "canary",
appGitState: "dirty",
expectedVersion: "canary (dirty)",
description: "canary version with no commit hash and a git state",
},
testT{
appVersion: "canary",
appGitCommit: "abc123",
appGitState: "dirty",
expectedVersion: "canary-abc123 (dirty)",
description: "canary version with a commit hash and a git state",
},
testT{
appVersion: "v0.3.0",
expectedVersion: "v0.3.0",
description: "semver version with no commit hash and no git state",
},
testT{
appVersion: "v0.3.0",
appGitCommit: "abc123",
expectedVersion: "v0.3.0",
description: "semver version with a commit hash and no git state",
},
testT{
appVersion: "v0.3.0",
appGitState: "dirty",
expectedVersion: "v0.3.0 (dirty)",
description: "semver version with no commit hash and a git state",
},
testT{
appVersion: "v0.3.0",
appGitCommit: "abc123",
appGitState: "dirty",
expectedVersion: "v0.3.0 (dirty)",
description: "semver version with a commit hash and a git state",
},
}
for _, test := range tests {
t.Run(test.description, func(test testT) func(*testing.T) {
AppGitCommit = test.appGitCommit
AppGitState = test.appGitState
AppVersion = test.appVersion
return func(t *testing.T) {
if versionString := version(); versionString != test.expectedVersion {
t.Errorf("version() == %s but expected %s", versionString, test.expectedVersion)
}
}
}(test))
}
}