Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add E2E tests for CronJob source #599

Merged
merged 1 commit into from
Jan 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/e2e/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (test *e2eTest) DeleteTestNamespace(t *testing.T, namespace string) {
kubectl := kubectl{t, Logger{}}
out, err := kubectl.RunWithOpts([]string{"delete", "namespace", namespace}, runOpts{})
if err != nil {
t.Fatalf(fmt.Sprintf("Error executing 'kubectl delete namespace' command. Error: %s", err.Error()))
t.Fatalf("Error executing 'kubectl delete namespace' command. Error: %s", err.Error())
}

expectedOutputRegexp := fmt.Sprintf("namespace?.+%s.+deleted", namespace)
Expand All @@ -120,7 +120,7 @@ func (test *e2eTest) WaitForNamespaceDeleted(t *testing.T, namespace string) {
logger := Logger{}
deleted := checkNamespaceDeleted(t, namespace, MaxRetries, logger)
if !deleted {
t.Fatalf(fmt.Sprintf("Error deleting namespace %s, timed out", namespace))
t.Fatalf("Error deleting namespace %s, timed out", namespace)
}
}

Expand Down Expand Up @@ -216,7 +216,7 @@ func cmdCLIDesc(cli string, args []string) string {
func matchRegexp(t *testing.T, matchingRegexp, actual string) bool {
matched, err := regexp.MatchString(matchingRegexp, actual)
if err != nil {
t.Fatalf(fmt.Sprintf("Failed to match regexp '%s'. Error: '%s'", matchingRegexp, err.Error()))
t.Fatalf("Failed to match regexp '%s'. Error: '%s'", matchingRegexp, err.Error())
}
return matched
}
Expand Down
81 changes: 81 additions & 0 deletions test/e2e/cronjob_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
// Copyright 2019 The Knative Authors
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2020


// 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 im
// See the License for the specific language governing permissions and
// limitations under the License.

// +build e2e
// +build !serving

package e2e

import (
"testing"

"gotest.tools/assert"
"knative.dev/client/pkg/util"
)

func TestSourceCronJob(t *testing.T) {
t.Parallel()
test := NewE2eTest(t)
test.Setup(t)
defer test.Teardown(t)

test.serviceCreate(t, "testsvc0")

t.Run("create cronJob sources with a sink to a service", func(t *testing.T) {
test.cronJobSourceCreate(t, "testcronjobsource0", "* * * * */1", "ping", "svc:testsvc0")
})

t.Run("delete cronJob sources", func(t *testing.T) {
test.cronJobSourceDelete(t, "testcronjobsource0")
})

t.Run("create cronJob source with a missing sink service", func(t *testing.T) {
test.cronJobSourceCreateMissingSink(t, "testcronjobsource1", "* * * * */1", "ping", "svc:unknown")
})

t.Run("update cronJob source sink service", func(t *testing.T) {
test.cronJobSourceCreate(t, "testcronjobsource2", "* * * * */1", "ping", "svc:testsvc0")
test.serviceCreate(t, "testsvc1")
test.cronJobSourceUpdateSink(t, "testcronjobsource2", "svc:testsvc1")
jpSinkRefNameInSpec := "jsonpath={.spec.sink.ref.name}"
out, err := test.getResourceFieldsWithJSONPath(t, "cronjobsource", "testcronjobsource2", jpSinkRefNameInSpec)
assert.NilError(t, err)
assert.Equal(t, out, "testsvc1")
})
}

func (test *e2eTest) cronJobSourceCreate(t *testing.T, sourceName string, schedule string, data string, sink string) {
out, err := test.kn.RunWithOpts([]string{"source", "cronjob", "create", sourceName,
"--schedule", schedule, "--data", data, "--sink", sink}, runOpts{NoNamespace: false})
assert.NilError(t, err)
assert.Check(t, util.ContainsAllIgnoreCase(out, "cronjob", "source", sourceName, "created", "namespace", test.kn.namespace))
}

func (test *e2eTest) cronJobSourceDelete(t *testing.T, sourceName string) {
out, err := test.kn.RunWithOpts([]string{"source", "cronjob", "delete", sourceName}, runOpts{NoNamespace: false})
assert.NilError(t, err)
assert.Check(t, util.ContainsAllIgnoreCase(out, "cronjob", "source", sourceName, "deleted", "namespace", test.kn.namespace))
}

func (test *e2eTest) cronJobSourceCreateMissingSink(t *testing.T, sourceName string, schedule string, data string, sink string) {
_, err := test.kn.RunWithOpts([]string{"source", "cronjob", "create", sourceName,
"--schedule", schedule, "--data", data, "--sink", sink}, runOpts{NoNamespace: false, AllowError: true})
assert.ErrorContains(t, err, "services.serving.knative.dev", "not found")
}

func (test *e2eTest) cronJobSourceUpdateSink(t *testing.T, sourceName string, sink string) {
out, err := test.kn.RunWithOpts([]string{"source", "cronjob", "update", sourceName, "--sink", sink}, runOpts{})
assert.NilError(t, err)
assert.Check(t, util.ContainsAll(out, sourceName, "updated", "namespace", test.kn.namespace))
}