123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /*
- Copyright 2014 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 master
- import (
- "testing"
- "k8s.io/kubernetes/pkg/api"
- expapi "k8s.io/kubernetes/pkg/apis/extensions"
- "k8s.io/kubernetes/pkg/registry/thirdpartyresourcedata"
- "k8s.io/kubernetes/pkg/util/sets"
- )
- type FakeAPIInterface struct {
- removed []string
- installed []*expapi.ThirdPartyResource
- apis []string
- t *testing.T
- }
- func (f *FakeAPIInterface) RemoveThirdPartyResource(path string) error {
- f.removed = append(f.removed, path)
- return nil
- }
- func (f *FakeAPIInterface) InstallThirdPartyResource(rsrc *expapi.ThirdPartyResource) error {
- f.installed = append(f.installed, rsrc)
- _, group, _ := thirdpartyresourcedata.ExtractApiGroupAndKind(rsrc)
- f.apis = append(f.apis, makeThirdPartyPath(group))
- return nil
- }
- func (f *FakeAPIInterface) HasThirdPartyResource(rsrc *expapi.ThirdPartyResource) (bool, error) {
- if f.apis == nil {
- return false, nil
- }
- _, group, _ := thirdpartyresourcedata.ExtractApiGroupAndKind(rsrc)
- path := makeThirdPartyPath(group)
- for _, api := range f.apis {
- if api == path {
- return true, nil
- }
- }
- return false, nil
- }
- func (f *FakeAPIInterface) ListThirdPartyResources() []string {
- return f.apis
- }
- func TestSyncAPIs(t *testing.T) {
- resourcesNamed := func(names ...string) []expapi.ThirdPartyResource {
- result := []expapi.ThirdPartyResource{}
- for _, name := range names {
- result = append(result, expapi.ThirdPartyResource{ObjectMeta: api.ObjectMeta{Name: name}})
- }
- return result
- }
- tests := []struct {
- list *expapi.ThirdPartyResourceList
- apis []string
- expectedInstalled []string
- expectedRemoved []string
- name string
- }{
- {
- list: &expapi.ThirdPartyResourceList{
- Items: resourcesNamed("foo.example.com"),
- },
- expectedInstalled: []string{"foo.example.com"},
- name: "simple add",
- },
- {
- list: &expapi.ThirdPartyResourceList{
- Items: resourcesNamed("foo.example.com"),
- },
- apis: []string{
- "/apis/example.com",
- "/apis/example.com/v1",
- },
- name: "does nothing",
- },
- {
- list: &expapi.ThirdPartyResourceList{
- Items: resourcesNamed("foo.example.com"),
- },
- apis: []string{
- "/apis/example.com",
- "/apis/example.com/v1",
- "/apis/example.co",
- "/apis/example.co/v1",
- },
- name: "deletes substring API",
- expectedRemoved: []string{
- "/apis/example.co",
- "/apis/example.co/v1",
- },
- },
- {
- list: &expapi.ThirdPartyResourceList{
- Items: resourcesNamed("foo.example.com", "foo.company.com"),
- },
- apis: []string{
- "/apis/company.com",
- "/apis/company.com/v1",
- },
- expectedInstalled: []string{"foo.example.com"},
- name: "adds with existing",
- },
- {
- list: &expapi.ThirdPartyResourceList{
- Items: resourcesNamed("foo.example.com"),
- },
- apis: []string{
- "/apis/company.com",
- "/apis/company.com/v1",
- },
- expectedInstalled: []string{"foo.example.com"},
- expectedRemoved: []string{"/apis/company.com", "/apis/company.com/v1"},
- name: "removes with existing",
- },
- }
- for _, test := range tests {
- fake := FakeAPIInterface{
- apis: test.apis,
- t: t,
- }
- cntrl := ThirdPartyController{master: &fake}
- if err := cntrl.syncResourceList(test.list); err != nil {
- t.Errorf("[%s] unexpected error: %v", test.name, err)
- }
- if len(test.expectedInstalled) != len(fake.installed) {
- t.Errorf("[%s] unexpected installed APIs: %d, expected %d (%#v)", test.name, len(fake.installed), len(test.expectedInstalled), fake.installed[0])
- continue
- } else {
- names := sets.String{}
- for ix := range fake.installed {
- names.Insert(fake.installed[ix].Name)
- }
- for _, name := range test.expectedInstalled {
- if !names.Has(name) {
- t.Errorf("[%s] missing installed API: %s", test.name, name)
- }
- }
- }
- if len(test.expectedRemoved) != len(fake.removed) {
- t.Errorf("[%s] unexpected installed APIs: %d, expected %d", test.name, len(fake.removed), len(test.expectedRemoved))
- continue
- } else {
- names := sets.String{}
- names.Insert(fake.removed...)
- for _, name := range test.expectedRemoved {
- if !names.Has(name) {
- t.Errorf("[%s] missing removed API: %s (%s)", test.name, name, names)
- }
- }
- }
- }
- }
|