|
| 1 | +/* |
| 2 | +Copyright 2024 The Kubernetes Authors. |
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +
|
| 8 | +Unless required by applicable law or agreed to in writing, software |
| 9 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +
|
| 12 | +See the License for the specific language governing permissions and |
| 13 | +
|
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package version |
| 18 | + |
| 19 | +import ( |
| 20 | + "runtime/debug" |
| 21 | + |
| 22 | + . "github.com/onsi/ginkgo/v2" |
| 23 | + . "github.com/onsi/gomega" |
| 24 | +) |
| 25 | + |
| 26 | +var _ = Describe("TestVersion", func() { |
| 27 | + |
| 28 | + info, ok := debug.ReadBuildInfo() |
| 29 | + Expect(ok).To(BeTrue()) |
| 30 | + tests := map[string]struct { |
| 31 | + version string |
| 32 | + expected string |
| 33 | + }{ |
| 34 | + "empty returns build info": { |
| 35 | + version: "", |
| 36 | + expected: info.Main.Version, |
| 37 | + }, |
| 38 | + "set to a value returns it": { |
| 39 | + version: "1.2.3", |
| 40 | + expected: "1.2.3", |
| 41 | + }, |
| 42 | + } |
| 43 | + for name, tc := range tests { |
| 44 | + It("Version set to "+name, func() { |
| 45 | + versionBackup := version |
| 46 | + defer func() { |
| 47 | + version = versionBackup |
| 48 | + }() |
| 49 | + version = tc.version |
| 50 | + result := Version() |
| 51 | + Expect(result).To(Equal(tc.expected)) |
| 52 | + }) |
| 53 | + } |
| 54 | +}) |
0 commit comments