mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
kube-aggregator: split openapi tests
This commit is contained in:
parent
b9fa35fab7
commit
a48c9f2fb6
@ -26,7 +26,10 @@ go_library(
|
|||||||
|
|
||||||
go_test(
|
go_test(
|
||||||
name = "go_default_test",
|
name = "go_default_test",
|
||||||
srcs = ["aggregator_test.go"],
|
srcs = [
|
||||||
|
"downloader_test.go",
|
||||||
|
"priority_test.go",
|
||||||
|
],
|
||||||
embed = [":go_default_library"],
|
embed = [":go_default_library"],
|
||||||
deps = [
|
deps = [
|
||||||
"//staging/src/k8s.io/kube-aggregator/pkg/apis/apiregistration:go_default_library",
|
"//staging/src/k8s.io/kube-aggregator/pkg/apis/apiregistration:go_default_library",
|
||||||
|
@ -19,58 +19,12 @@ package aggregator
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"reflect"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/go-openapi/spec"
|
"github.com/go-openapi/spec"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
|
||||||
"k8s.io/kube-aggregator/pkg/apis/apiregistration"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func newAPIServiceForTest(name, group string, minGroupPriority, versionPriority int32) apiregistration.APIService {
|
|
||||||
r := apiregistration.APIService{}
|
|
||||||
r.Spec.Group = group
|
|
||||||
r.Spec.GroupPriorityMinimum = minGroupPriority
|
|
||||||
r.Spec.VersionPriority = versionPriority
|
|
||||||
r.Spec.Service = &apiregistration.ServiceReference{}
|
|
||||||
r.Name = name
|
|
||||||
return r
|
|
||||||
}
|
|
||||||
|
|
||||||
func assertSortedServices(t *testing.T, actual []openAPISpecInfo, expectedNames []string) {
|
|
||||||
actualNames := []string{}
|
|
||||||
for _, a := range actual {
|
|
||||||
actualNames = append(actualNames, a.apiService.Name)
|
|
||||||
}
|
|
||||||
if !reflect.DeepEqual(actualNames, expectedNames) {
|
|
||||||
t.Errorf("Expected %s got %s.", expectedNames, actualNames)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestAPIServiceSort(t *testing.T) {
|
|
||||||
list := []openAPISpecInfo{
|
|
||||||
{
|
|
||||||
apiService: newAPIServiceForTest("FirstService", "Group1", 10, 5),
|
|
||||||
spec: &spec.Swagger{},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
apiService: newAPIServiceForTest("SecondService", "Group2", 15, 3),
|
|
||||||
spec: &spec.Swagger{},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
apiService: newAPIServiceForTest("FirstServiceInternal", "Group1", 16, 3),
|
|
||||||
spec: &spec.Swagger{},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
apiService: newAPIServiceForTest("ThirdService", "Group3", 15, 3),
|
|
||||||
spec: &spec.Swagger{},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
sortByPriority(list)
|
|
||||||
assertSortedServices(t, list, []string{"FirstService", "FirstServiceInternal", "SecondService", "ThirdService"})
|
|
||||||
}
|
|
||||||
|
|
||||||
type handlerTest struct {
|
type handlerTest struct {
|
||||||
etag string
|
etag string
|
||||||
data []byte
|
data []byte
|
||||||
@ -136,7 +90,6 @@ func assertDownloadedSpec(actualSpec *spec.Swagger, actualEtag string, err error
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestDownloadOpenAPISpec(t *testing.T) {
|
func TestDownloadOpenAPISpec(t *testing.T) {
|
||||||
|
|
||||||
s := Downloader{}
|
s := Downloader{}
|
||||||
|
|
||||||
// Test with no eTag
|
// Test with no eTag
|
@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2017 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 aggregator
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/go-openapi/spec"
|
||||||
|
|
||||||
|
"k8s.io/kube-aggregator/pkg/apis/apiregistration"
|
||||||
|
)
|
||||||
|
|
||||||
|
func newAPIServiceForTest(name, group string, minGroupPriority, versionPriority int32) apiregistration.APIService {
|
||||||
|
r := apiregistration.APIService{}
|
||||||
|
r.Spec.Group = group
|
||||||
|
r.Spec.GroupPriorityMinimum = minGroupPriority
|
||||||
|
r.Spec.VersionPriority = versionPriority
|
||||||
|
r.Spec.Service = &apiregistration.ServiceReference{}
|
||||||
|
r.Name = name
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
func assertSortedServices(t *testing.T, actual []openAPISpecInfo, expectedNames []string) {
|
||||||
|
actualNames := []string{}
|
||||||
|
for _, a := range actual {
|
||||||
|
actualNames = append(actualNames, a.apiService.Name)
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(actualNames, expectedNames) {
|
||||||
|
t.Errorf("Expected %s got %s.", expectedNames, actualNames)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestAPIServiceSort(t *testing.T) {
|
||||||
|
list := []openAPISpecInfo{
|
||||||
|
{
|
||||||
|
apiService: newAPIServiceForTest("FirstService", "Group1", 10, 5),
|
||||||
|
spec: &spec.Swagger{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
apiService: newAPIServiceForTest("SecondService", "Group2", 15, 3),
|
||||||
|
spec: &spec.Swagger{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
apiService: newAPIServiceForTest("FirstServiceInternal", "Group1", 16, 3),
|
||||||
|
spec: &spec.Swagger{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
apiService: newAPIServiceForTest("ThirdService", "Group3", 15, 3),
|
||||||
|
spec: &spec.Swagger{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
sortByPriority(list)
|
||||||
|
assertSortedServices(t, list, []string{"FirstService", "FirstServiceInternal", "SecondService", "ThirdService"})
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user