-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
route.go
153 lines (134 loc) · 5.05 KB
/
route.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
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 v1
import (
"context"
"fmt"
"testing"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
"knative.dev/pkg/ptr"
"knative.dev/pkg/reconciler"
"knative.dev/pkg/test/logging"
v1 "knative.dev/serving/pkg/apis/serving/v1"
rtesting "knative.dev/serving/pkg/testing/v1"
"knative.dev/serving/test"
)
// Route returns a Route object in namespace using the route and configuration
// names in names.
func Route(names test.ResourceNames, fopt ...rtesting.RouteOption) *v1.Route {
route := &v1.Route{
ObjectMeta: metav1.ObjectMeta{
Name: names.Route,
},
Spec: v1.RouteSpec{
Traffic: []v1.TrafficTarget{{
Tag: names.TrafficTarget,
ConfigurationName: names.Config,
Percent: ptr.Int64(100),
}},
},
}
for _, opt := range fopt {
opt(route)
}
return route
}
// GetRoute gets a route by name
func GetRoute(clients *test.Clients, routeName string) (route *v1.Route, err error) {
return route, reconciler.RetryTestErrors(func(int) (err error) {
route, err = clients.ServingClient.Routes.Get(context.Background(), routeName, metav1.GetOptions{})
return err
})
}
// GetRoutes returns all the available routes
func GetRoutes(clients *test.Clients) (list *v1.RouteList, err error) {
return list, reconciler.RetryTestErrors(func(int) (err error) {
list, err = clients.ServingClient.Routes.List(context.Background(), metav1.ListOptions{})
return err
})
}
// CreateRoute creates a route in the given namespace using the route name in names
func CreateRoute(t testing.TB, clients *test.Clients, names test.ResourceNames, fopt ...rtesting.RouteOption) (rt *v1.Route, err error) {
route := Route(names, fopt...)
test.AddTestAnnotation(t, route.ObjectMeta)
LogResourceObject(t, ResourceObjects{Route: route})
return rt, reconciler.RetryTestErrors(func(int) (err error) {
rt, err = clients.ServingClient.Routes.Create(context.Background(), route, metav1.CreateOptions{})
return err
})
}
// WaitForRouteState polls the status of the Route called name from client every
// PollInterval until inState returns `true` indicating it is done, returns an
// error or timeout. desc will be used to name the metric that is emitted to
// track how long it took for name to get into the state checked by inState.
func WaitForRouteState(client *test.ServingClients, name string, inState func(r *v1.Route) (bool, error), desc string) error {
span := logging.GetEmitableSpan(context.Background(), fmt.Sprintf("WaitForRouteState/%s/%s", name, desc))
defer span.End()
var lastState *v1.Route
waitErr := wait.PollImmediate(test.PollInterval, test.PollTimeout, func() (bool, error) {
err := reconciler.RetryTestErrors(func(int) (err error) {
lastState, err = client.Routes.Get(context.Background(), name, metav1.GetOptions{})
return err
})
if err != nil {
return true, err
}
return inState(lastState)
})
if waitErr != nil {
return fmt.Errorf("route %q is not in desired state, got: %+v: %w", name, lastState, waitErr)
}
return nil
}
// CheckRouteState verifies the status of the Route called name from client
// is in a particular state by calling `inState` and expecting `true`.
// This is the non-polling variety of WaitForRouteState
func CheckRouteState(client *test.ServingClients, name string, inState func(r *v1.Route) (bool, error)) error {
var r *v1.Route
err := reconciler.RetryTestErrors(func(int) (err error) {
r, err = client.Routes.Get(context.Background(), name, metav1.GetOptions{})
return err
})
if err != nil {
return err
}
if done, err := inState(r); err != nil {
return err
} else if !done {
return fmt.Errorf("route %q is not in desired state, got: %+v", name, r)
}
return nil
}
// IsRouteReady will check the status conditions of the route and return true if the route is
// ready.
func IsRouteReady(r *v1.Route) (bool, error) {
return r.IsReady(), nil
}
// IsRouteFailed will check the status conditions of the route and return true if the route is
// not ready.
func IsRouteFailed(r *v1.Route) (bool, error) {
return r.IsFailed(), nil
}
// AllRouteTrafficAtRevision will check the revision that route r is routing
// traffic to and return true if 100% of the traffic is routing to revisionName.
func AllRouteTrafficAtRevision(names test.ResourceNames) func(r *v1.Route) (bool, error) {
return func(r *v1.Route) (bool, error) {
for _, tt := range r.Status.Traffic {
if tt.Percent != nil && *tt.Percent == 100 && tt.RevisionName == names.Revision && tt.Tag == names.TrafficTarget {
return true, nil
}
}
return false, nil
}
}