mirror of https://github.com/knative/client.git
91 lines
2.7 KiB
Go
91 lines
2.7 KiB
Go
// Copyright © 2019 The Knative 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 cronjob
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
corev1 "k8s.io/api/core/v1"
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"knative.dev/eventing/pkg/apis/legacysources/v1alpha1"
|
|
"knative.dev/pkg/apis/duck/v1beta1"
|
|
|
|
v1alpha12 "knative.dev/client/pkg/eventing/legacysources/v1alpha1"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestSimpleDescribe(t *testing.T) {
|
|
cronjobClient := v1alpha12.NewMockKnCronJobSourceClient(t, "mynamespace")
|
|
|
|
cronJobRecorder := cronjobClient.Recorder()
|
|
cronJobRecorder.GetCronJobSource("testsource", getCronJobSource(), nil)
|
|
|
|
out, err := executeCronJobSourceCommand(cronjobClient, nil, "describe", "testsource")
|
|
assert.NilError(t, err)
|
|
util.ContainsAll(out, "1 2 3 4 5", "honeymoon", "myservicenamespace", "mysvc", "Service", "testsource")
|
|
util.ContainsAll(out, "myaccount", "100m", "128Mi", "200m", "256Mi")
|
|
|
|
cronJobRecorder.Validate()
|
|
|
|
}
|
|
|
|
func TestDescribeError(t *testing.T) {
|
|
cronjobClient := v1alpha12.NewMockKnCronJobSourceClient(t, "mynamespace")
|
|
|
|
cronJobRecorder := cronjobClient.Recorder()
|
|
cronJobRecorder.GetCronJobSource("testsource", nil, errors.New("no cronjob source testsource"))
|
|
|
|
out, err := executeCronJobSourceCommand(cronjobClient, nil, "describe", "testsource")
|
|
assert.ErrorContains(t, err, "testsource")
|
|
util.ContainsAll(out, "Usage", "testsource")
|
|
|
|
cronJobRecorder.Validate()
|
|
|
|
}
|
|
|
|
func getCronJobSource() *v1alpha1.CronJobSource {
|
|
return &v1alpha1.CronJobSource{
|
|
TypeMeta: v1.TypeMeta{},
|
|
ObjectMeta: v1.ObjectMeta{
|
|
Name: "testsource",
|
|
},
|
|
Spec: v1alpha1.CronJobSourceSpec{
|
|
Schedule: "1 2 3 4 5",
|
|
Data: "honeymoon",
|
|
Sink: &v1beta1.Destination{
|
|
Ref: &corev1.ObjectReference{
|
|
Kind: "Service",
|
|
Namespace: "myservicenamespace",
|
|
Name: "mysvc",
|
|
},
|
|
},
|
|
ServiceAccountName: "myaccount",
|
|
Resources: v1alpha1.CronJobResourceSpec{
|
|
Requests: v1alpha1.CronJobRequestsSpec{
|
|
ResourceCPU: "100m",
|
|
ResourceMemory: "128Mi",
|
|
},
|
|
Limits: v1alpha1.CronJobLimitsSpec{
|
|
ResourceCPU: "200m",
|
|
ResourceMemory: "256Mi",
|
|
},
|
|
},
|
|
},
|
|
Status: v1alpha1.CronJobSourceStatus{},
|
|
}
|
|
}
|