-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab42e03
commit 5cbf842
Showing
6 changed files
with
142 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
Copyright 2021 The Kubernetes Authors. | ||
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 nfs | ||
|
||
import ( | ||
"fmt" | ||
"runtime" | ||
"strings" | ||
|
||
"sigs.k8s.io/yaml" | ||
) | ||
|
||
// These are set during build time via -ldflags | ||
var ( | ||
driverVersion = "N/A" | ||
gitCommit = "N/A" | ||
buildDate = "N/A" | ||
) | ||
|
||
// VersionInfo holds the version information of the driver | ||
type VersionInfo struct { | ||
DriverName string `json:"Driver Name"` | ||
DriverVersion string `json:"Driver Version"` | ||
GitCommit string `json:"Git Commit"` | ||
BuildDate string `json:"Build Date"` | ||
GoVersion string `json:"Go Version"` | ||
Compiler string `json:"Compiler"` | ||
Platform string `json:"Platform"` | ||
} | ||
|
||
// GetVersion returns the version information of the driver | ||
func GetVersion() VersionInfo { | ||
return VersionInfo{ | ||
DriverName: DriverName, | ||
DriverVersion: driverVersion, | ||
GitCommit: gitCommit, | ||
BuildDate: buildDate, | ||
GoVersion: runtime.Version(), | ||
Compiler: runtime.Compiler, | ||
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH), | ||
} | ||
} | ||
|
||
// GetVersionYAML returns the version information of the driver | ||
// in YAML format | ||
func GetVersionYAML() (string, error) { | ||
info := GetVersion() | ||
marshalled, err := yaml.Marshal(&info) | ||
if err != nil { | ||
return "", err | ||
} | ||
return strings.TrimSpace(string(marshalled)), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
Copyright 2021 The Kubernetes Authors. | ||
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 nfs | ||
|
||
import ( | ||
"fmt" | ||
"reflect" | ||
"runtime" | ||
"strings" | ||
"testing" | ||
|
||
"sigs.k8s.io/yaml" | ||
) | ||
|
||
func TestGetVersion(t *testing.T) { | ||
version := GetVersion() | ||
|
||
expected := VersionInfo{ | ||
DriverName: DriverName, | ||
DriverVersion: "N/A", | ||
GitCommit: "N/A", | ||
BuildDate: "N/A", | ||
GoVersion: runtime.Version(), | ||
Compiler: runtime.Compiler, | ||
Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH), | ||
} | ||
|
||
if !reflect.DeepEqual(version, expected) { | ||
t.Errorf("Unexpected error. \n Expected: %v \n Found: %v", expected, version) | ||
} | ||
|
||
} | ||
|
||
func TestGetVersionYAML(t *testing.T) { | ||
resp, err := GetVersionYAML() | ||
if err != nil { | ||
t.Fatalf("Unexpected error: %v", err) | ||
} | ||
versionInfo := GetVersion() | ||
marshalled, _ := yaml.Marshal(&versionInfo) | ||
expected := strings.TrimSpace(string(marshalled)) | ||
|
||
if resp != expected { | ||
t.Fatalf("Unexpected error. \n Expected:%v\nFound:%v", expected, resp) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters