mirror of https://github.com/knative/client.git
161 lines
4.9 KiB
Go
161 lines
4.9 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 route
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strings"
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
"k8s.io/apimachinery/pkg/api/equality"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
clienttesting "k8s.io/client-go/testing"
|
|
servingv1 "knative.dev/serving/pkg/apis/serving/v1"
|
|
"sigs.k8s.io/yaml"
|
|
|
|
"knative.dev/client/pkg/kn/commands"
|
|
"knative.dev/client/pkg/util"
|
|
"knative.dev/pkg/ptr"
|
|
)
|
|
|
|
func fakeRouteDescribe(args []string, response *servingv1.Route) (action clienttesting.Action, output string, err error) {
|
|
knParams := &commands.KnParams{}
|
|
cmd, fakeRoute, buf := commands.CreateTestKnCommand(NewRouteCommand(knParams), knParams)
|
|
fakeRoute.AddReactor("*", "*",
|
|
func(a clienttesting.Action) (bool, runtime.Object, error) {
|
|
action = a
|
|
return true, response, nil
|
|
})
|
|
cmd.SetArgs(args)
|
|
err = cmd.Execute()
|
|
if err != nil {
|
|
return
|
|
}
|
|
output = buf.String()
|
|
return
|
|
}
|
|
|
|
func TestCompletion(t *testing.T) {
|
|
var expectedRoute servingv1.Route
|
|
|
|
setup := func(t *testing.T) {
|
|
expectedRoute = servingv1.Route{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: "Route",
|
|
APIVersion: "serving.knative.dev/v1",
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "foo",
|
|
Namespace: "default",
|
|
OwnerReferences: []metav1.OwnerReference{
|
|
{
|
|
Kind: "Service",
|
|
Name: "foo",
|
|
APIVersion: "serving.knative.dev/v1",
|
|
},
|
|
},
|
|
},
|
|
Status: servingv1.RouteStatus{
|
|
RouteStatusFields: servingv1.RouteStatusFields{
|
|
Traffic: []servingv1.TrafficTarget{
|
|
{
|
|
RevisionName: "foo-v2",
|
|
Tag: "v2",
|
|
Percent: ptr.Int64(90),
|
|
},
|
|
{
|
|
LatestRevision: ptr.Bool(true),
|
|
RevisionName: "foo-v3",
|
|
Tag: "latest",
|
|
Percent: ptr.Int64(10),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
t.Run("describe route without route name arg", func(t *testing.T) {
|
|
_, _, err := fakeRouteDescribe([]string{"route", "describe"}, &servingv1.Route{})
|
|
assert.Assert(t, err != nil)
|
|
assert.ErrorContains(t, err, "requires", "name", "route", "single", "argument")
|
|
})
|
|
|
|
t.Run("describe a route with human readable output", func(t *testing.T) {
|
|
setup(t)
|
|
|
|
action, output, err := fakeRouteDescribe([]string{"route", "describe", "foo"}, &expectedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, action != nil)
|
|
assert.Assert(t, action.Matches("get", "routes"))
|
|
|
|
assert.Check(t, util.ContainsAll(output,
|
|
"Name", "URL", "Service", "Traffic Targets", "Conditions",
|
|
"foo", "default", "90%", "foo-v2", "#v2", "10%", "@latest", "foo-v3"))
|
|
})
|
|
|
|
t.Run("describe a route with verbose output", func(t *testing.T) {
|
|
_, output, err := fakeRouteDescribe([]string{"route", "describe", "foo", "-v"}, &expectedRoute)
|
|
assert.Assert(t, err == nil)
|
|
|
|
assert.Check(t, util.ContainsAll(output, "foo", "default", "serving.knative.dev/v1"))
|
|
})
|
|
|
|
t.Run("describe a valid route with machine readable output", func(t *testing.T) {
|
|
t.Run("yaml", func(t *testing.T) {
|
|
setup(t)
|
|
|
|
action, output, err := fakeRouteDescribe([]string{"route", "describe", "foo", "-oyaml"}, &expectedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, action != nil)
|
|
assert.Assert(t, action.Matches("get", "routes"))
|
|
|
|
jsonData, err := yaml.YAMLToJSON([]byte(output))
|
|
assert.Assert(t, err == nil)
|
|
|
|
var returnedRoute servingv1.Route
|
|
err = json.Unmarshal(jsonData, &returnedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, equality.Semantic.DeepEqual(expectedRoute, returnedRoute))
|
|
})
|
|
|
|
t.Run("json", func(t *testing.T) {
|
|
setup(t)
|
|
|
|
action, output, err := fakeRouteDescribe([]string{"route", "describe", "foo", "-ojson"}, &expectedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, action != nil)
|
|
assert.Assert(t, action.Matches("get", "routes"))
|
|
|
|
var returnedRoute servingv1.Route
|
|
err = json.Unmarshal([]byte(output), &returnedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, equality.Semantic.DeepEqual(expectedRoute, returnedRoute))
|
|
})
|
|
|
|
t.Run("name", func(t *testing.T) {
|
|
setup(t)
|
|
|
|
action, output, err := fakeRouteDescribe([]string{"route", "describe", "foo", "-oname"}, &expectedRoute)
|
|
assert.Assert(t, err == nil)
|
|
assert.Assert(t, action != nil)
|
|
assert.Assert(t, action.Matches("get", "routes"))
|
|
assert.Assert(t, strings.Contains(output, expectedRoute.Name))
|
|
})
|
|
})
|
|
}
|