mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-02 22:33:52 +00:00
move framework files to subdirectory for isolation
This commit is contained in:
56
pkg/util/metrics/framework/version_parser_test.go
Normal file
56
pkg/util/metrics/framework/version_parser_test.go
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
Copyright 2019 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 framework
|
||||
|
||||
import (
|
||||
apimachineryversion "k8s.io/apimachinery/pkg/version"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestVersionParsing(t *testing.T) {
|
||||
var tests = []struct {
|
||||
desc string
|
||||
versionString string
|
||||
expectedVersion string
|
||||
}{
|
||||
{
|
||||
"v1.15.0-alpha-1.12345",
|
||||
"v1.15.0-alpha-1.12345",
|
||||
"1.15.0",
|
||||
},
|
||||
{
|
||||
"Parse out defaulted string",
|
||||
"v0.0.0-master",
|
||||
"0.0.0",
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
t.Run(test.desc, func(t *testing.T) {
|
||||
version := apimachineryversion.Info{
|
||||
GitVersion: test.versionString,
|
||||
}
|
||||
parsedV, err := parseVersion(version)
|
||||
if err != nil {
|
||||
t.Fatalf("Should be able to parse %v", version)
|
||||
}
|
||||
if test.expectedVersion != *parsedV {
|
||||
t.Errorf("Got %v, wanted %v", *parsedV, test.expectedVersion)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user