mirror of https://github.com/knative/client.git
improves(e2e): Updates concurrency tests (#302)
- updates the validation of concurrency limits/targets with upcoming change to `service describe` output - validation commands now returns specific field in output than returning complete output - Renames service name used from hello to svc1 - Provision in tests for jsonpath to lookup old and new fields - Consolidate once used helper method into test itself, as its checking for very specific test-case
This commit is contained in:
parent
03ecb36440
commit
152305f334
|
|
@ -17,7 +17,6 @@
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/knative/client/pkg/util"
|
"github.com/knative/client/pkg/util"
|
||||||
|
|
@ -29,65 +28,69 @@ func TestServiceOptions(t *testing.T) {
|
||||||
test.Setup(t)
|
test.Setup(t)
|
||||||
defer test.Teardown(t)
|
defer test.Teardown(t)
|
||||||
|
|
||||||
t.Run("create hello service with concurrency options and returns no error", func(t *testing.T) {
|
t.Run("create and validate service with concurrency options", func(t *testing.T) {
|
||||||
test.serviceCreateWithOptions(t, "hello", []string{"--concurrency-limit", "250", "--concurrency-target", "300"})
|
test.serviceCreateWithOptions(t, "svc1", []string{"--concurrency-limit", "250", "--concurrency-target", "300"})
|
||||||
|
test.validateServiceConcurrencyTarget(t, "svc1", "300")
|
||||||
|
test.validateServiceConcurrencyLimit(t, "svc1", "250")
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("returns valid concurrency options for hello service", func(t *testing.T) {
|
t.Run("update and validate service with concurrency limit", func(t *testing.T) {
|
||||||
test.serviceDescribeConcurrencyLimit(t, "hello", "250")
|
test.serviceUpdate(t, "svc1", []string{"--concurrency-limit", "300"})
|
||||||
test.serviceDescribeConcurrencyTarget(t, "hello", "300")
|
test.validateServiceConcurrencyLimit(t, "svc1", "300")
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("update concurrency limit for hello service and returns no error", func(t *testing.T) {
|
t.Run("update concurrency options with invalid values for service", func(t *testing.T) {
|
||||||
test.serviceUpdate(t, "hello", []string{"--concurrency-limit", "300"})
|
command := []string{"service", "update", "svc1", "--concurrency-limit", "-1", "--concurrency-target", "0"}
|
||||||
|
_, err := test.kn.RunWithOpts(command, runOpts{NoNamespace: false, AllowError: true})
|
||||||
|
assert.ErrorContains(t, err, "Invalid")
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("returns correct concurrency limit for hello service", func(t *testing.T) {
|
t.Run("returns steady concurrency options for service", func(t *testing.T) {
|
||||||
test.serviceDescribeConcurrencyLimit(t, "hello", "300")
|
test.validateServiceConcurrencyLimit(t, "svc1", "300")
|
||||||
|
test.validateServiceConcurrencyTarget(t, "svc1", "300")
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("update concurrency options with invalid value for hello service and returns error", func(t *testing.T) {
|
t.Run("delete service", func(t *testing.T) {
|
||||||
test.serviceUpdateWithInvalidValue(t, "hello", []string{"--concurrency-limit", "-1", "--concurrency-target", "0"})
|
test.serviceDelete(t, "svc1")
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("returns steady concurrency options for hello service", func(t *testing.T) {
|
|
||||||
test.serviceDescribeConcurrencyLimit(t, "hello", "300")
|
|
||||||
test.serviceDescribeConcurrencyTarget(t, "hello", "300")
|
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("delete hello service and returns no error", func(t *testing.T) {
|
|
||||||
test.serviceDelete(t, "hello")
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Private
|
|
||||||
|
|
||||||
func (test *e2eTest) serviceCreateWithOptions(t *testing.T, serviceName string, options []string) {
|
func (test *e2eTest) serviceCreateWithOptions(t *testing.T, serviceName string, options []string) {
|
||||||
command := []string{"service", "create", serviceName, "--image", KnDefaultTestImage}
|
command := []string{"service", "create", serviceName, "--image", KnDefaultTestImage}
|
||||||
command = append(command, options...)
|
command = append(command, options...)
|
||||||
out, err := test.kn.RunWithOpts(command, runOpts{NoNamespace: false})
|
out, err := test.kn.RunWithOpts(command, runOpts{NoNamespace: false})
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
||||||
assert.Check(t, util.ContainsAll(out, "Service", serviceName, "successfully created in namespace", test.kn.namespace, "OK"))
|
assert.Check(t, util.ContainsAll(out, "Service", serviceName, "successfully created in namespace", test.kn.namespace, "OK"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (test *e2eTest) serviceDescribeConcurrencyLimit(t *testing.T, serviceName, concurrencyLimit string) {
|
func (test *e2eTest) validateServiceConcurrencyLimit(t *testing.T, serviceName, concurrencyLimit string) {
|
||||||
out, err := test.kn.RunWithOpts([]string{"service", "describe", serviceName}, runOpts{NoNamespace: false})
|
jsonpath := "jsonpath={.items[0].spec.template.spec.containerConcurrency}"
|
||||||
|
out, err := test.kn.RunWithOpts([]string{"service", "list", serviceName, "-o", jsonpath}, runOpts{})
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
if out != "" {
|
||||||
expectedOutput := fmt.Sprintf("containerConcurrency: %s", concurrencyLimit)
|
assert.Equal(t, out, concurrencyLimit)
|
||||||
assert.Check(t, util.ContainsAll(out, expectedOutput))
|
} else {
|
||||||
}
|
// case where server returns fields like spec.runLatest.configuration.revisionTemplate.spec.containerConcurrency
|
||||||
|
// TODO: Remove this case when `runLatest` field is deprecated altogether / v1beta1
|
||||||
func (test *e2eTest) serviceDescribeConcurrencyTarget(t *testing.T, serviceName, concurrencyTarget string) {
|
jsonpath = "jsonpath={.items[0].spec.runLatest.configuration.revisionTemplate.spec.containerConcurrency}"
|
||||||
out, err := test.kn.RunWithOpts([]string{"service", "describe", serviceName}, runOpts{NoNamespace: false})
|
out, err := test.kn.RunWithOpts([]string{"service", "list", serviceName, "-o", jsonpath}, runOpts{})
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
assert.Equal(t, out, concurrencyLimit)
|
||||||
expectedOutput := fmt.Sprintf("autoscaling.knative.dev/target: \"%s\"", concurrencyTarget)
|
}
|
||||||
assert.Check(t, util.ContainsAll(out, expectedOutput))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (test *e2eTest) serviceUpdateWithInvalidValue(t *testing.T, serviceName string, args []string) {
|
func (test *e2eTest) validateServiceConcurrencyTarget(t *testing.T, serviceName, concurrencyTarget string) {
|
||||||
_, err := test.kn.RunWithOpts(append([]string{"service", "update", serviceName}, args...), runOpts{NoNamespace: false, AllowError: true})
|
jsonpath := "jsonpath={.items[0].spec.template.metadata.annotations.autoscaling\\.knative\\.dev/target}"
|
||||||
assert.ErrorContains(t, err, "Invalid")
|
out, err := test.kn.RunWithOpts([]string{"service", "list", serviceName, "-o", jsonpath}, runOpts{})
|
||||||
|
assert.NilError(t, err)
|
||||||
|
if out != "" {
|
||||||
|
assert.Equal(t, out, concurrencyTarget)
|
||||||
|
} else {
|
||||||
|
// case where server returns fields like spec.runLatest.configuration.revisionTemplate.spec.containerConcurrency
|
||||||
|
// TODO: Remove this case when `runLatest` field is deprecated altogether / v1beta1
|
||||||
|
jsonpath = "jsonpath={.items[0].spec.runLatest.configuration.revisionTemplate.metadata.annotations.autoscaling\\.knative\\.dev/target}"
|
||||||
|
out, err := test.kn.RunWithOpts([]string{"service", "list", serviceName, "-o", jsonpath}, runOpts{})
|
||||||
|
assert.NilError(t, err)
|
||||||
|
assert.Equal(t, out, concurrencyTarget)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue