/* Copyright 2017 the Heptio Ark contributors. 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 server import ( "testing" "time" "github.com/stretchr/testify/assert" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "github.com/heptio/ark/pkg/apis/ark/v1" arktest "github.com/heptio/ark/pkg/util/test" ) func TestApplyConfigDefaults(t *testing.T) { var ( c = &v1.Config{} server = &server{ logger: arktest.NewLogger(), config: serverConfig{}, } ) // test defaulting server.applyConfigDefaults(c) assert.Equal(t, defaultBackupSyncPeriod, server.config.backupSyncPeriod) assert.Equal(t, defaultPodVolumeOperationTimeout, server.config.podVolumeOperationTimeout) assert.Equal(t, defaultRestorePriorities, server.config.restoreResourcePriorities) // // make sure defaulting doesn't overwrite real values server.config.backupSyncPeriod = 4 * time.Minute server.config.podVolumeOperationTimeout = 5 * time.Second server.config.restoreResourcePriorities = []string{"a", "b"} server.applyConfigDefaults(c) assert.Equal(t, 4*time.Minute, server.config.backupSyncPeriod) assert.Equal(t, 5*time.Second, server.config.podVolumeOperationTimeout) assert.Equal(t, []string{"a", "b"}, server.config.restoreResourcePriorities) } func TestArkResourcesExist(t *testing.T) { var ( fakeDiscoveryHelper = &arktest.FakeDiscoveryHelper{} server = &server{ logger: arktest.NewLogger(), discoveryHelper: fakeDiscoveryHelper, } ) // Ark API group doesn't exist in discovery: should error fakeDiscoveryHelper.ResourceList = []*metav1.APIResourceList{ { GroupVersion: "foo/v1", APIResources: []metav1.APIResource{ { Name: "Backups", Kind: "Backup", }, }, }, } assert.Error(t, server.arkResourcesExist()) // Ark API group doesn't contain any custom resources: should error arkAPIResourceList := &metav1.APIResourceList{ GroupVersion: v1.SchemeGroupVersion.String(), } fakeDiscoveryHelper.ResourceList = append(fakeDiscoveryHelper.ResourceList, arkAPIResourceList) assert.Error(t, server.arkResourcesExist()) // Ark API group contains all custom resources: should not error for kind := range v1.CustomResources() { arkAPIResourceList.APIResources = append(arkAPIResourceList.APIResources, metav1.APIResource{ Kind: kind, }) } assert.NoError(t, server.arkResourcesExist()) // Ark API group contains some but not all custom resources: should error arkAPIResourceList.APIResources = arkAPIResourceList.APIResources[:3] assert.Error(t, server.arkResourcesExist()) }