123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*
- Copyright 2016 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 storage
- import (
- "testing"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/fields"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apiserver/pkg/registry/generic"
- genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing"
- etcdtesting "k8s.io/apiserver/pkg/storage/etcd/testing"
- "k8s.io/kubernetes/pkg/apis/batch"
- api "k8s.io/kubernetes/pkg/apis/core"
- "k8s.io/kubernetes/pkg/registry/registrytest"
- )
- // TODO: allow for global factory override
- func newStorage(t *testing.T) (*REST, *StatusREST, *etcdtesting.EtcdTestServer) {
- etcdStorage, server := registrytest.NewEtcdStorageForResource(t, batch.SchemeGroupVersion.WithResource("cronjobs").GroupResource())
- restOptions := generic.RESTOptions{
- StorageConfig: etcdStorage,
- Decorator: generic.UndecoratedStorage,
- DeleteCollectionWorkers: 1,
- ResourcePrefix: "cronjobs",
- }
- storage, statusStorage := NewREST(restOptions)
- return storage, statusStorage, server
- }
- func validNewCronJob() *batch.CronJob {
- return &batch.CronJob{
- ObjectMeta: metav1.ObjectMeta{
- Name: "foo",
- Namespace: metav1.NamespaceDefault,
- },
- Spec: batch.CronJobSpec{
- Schedule: "* * * * ?",
- ConcurrencyPolicy: batch.AllowConcurrent,
- JobTemplate: batch.JobTemplateSpec{
- Spec: batch.JobSpec{
- Template: api.PodTemplateSpec{
- Spec: api.PodSpec{
- RestartPolicy: api.RestartPolicyOnFailure,
- DNSPolicy: api.DNSClusterFirst,
- Containers: []api.Container{{
- Name: "abc", Image: "image",
- ImagePullPolicy: api.PullIfNotPresent,
- TerminationMessagePolicy: api.TerminationMessageReadFile,
- }},
- },
- },
- },
- },
- },
- }
- }
- func TestCreate(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- validCronJob := validNewCronJob()
- validCronJob.ObjectMeta = metav1.ObjectMeta{}
- test.TestCreate(
- // valid
- validCronJob,
- // invalid (empty spec)
- &batch.CronJob{
- Spec: batch.CronJobSpec{},
- },
- )
- }
- func TestUpdate(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- schedule := "1 1 1 1 ?"
- test.TestUpdate(
- // valid
- validNewCronJob(),
- // updateFunc
- func(obj runtime.Object) runtime.Object {
- object := obj.(*batch.CronJob)
- object.Spec.Schedule = schedule
- return object
- },
- // invalid updateFunc
- func(obj runtime.Object) runtime.Object {
- object := obj.(*batch.CronJob)
- object.Spec.Schedule = "* * *"
- return object
- },
- )
- }
- func TestDelete(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- test.TestDelete(validNewCronJob())
- }
- func TestGet(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- test.TestGet(validNewCronJob())
- }
- func TestList(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- test.TestList(validNewCronJob())
- }
- func TestWatch(t *testing.T) {
- storage, _, server := newStorage(t)
- defer server.Terminate(t)
- defer storage.Store.DestroyFunc()
- test := genericregistrytest.New(t, storage.Store)
- test.TestWatch(
- validNewCronJob(),
- // matching labels
- []labels.Set{},
- // not matching labels
- []labels.Set{
- {"x": "y"},
- },
- // matching fields
- []fields.Set{},
- // not matching fields
- []fields.Set{
- {"metadata.name": "xyz"},
- {"name": "foo"},
- },
- )
- }
- // TODO: test update /status
|