-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
service.go
340 lines (297 loc) · 12.8 KB
/
service.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
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"
"encoding/json"
"fmt"
"testing"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/util/wait"
"knative.dev/pkg/apis/duck"
"knative.dev/pkg/reconciler"
pkgTest "knative.dev/pkg/test"
"knative.dev/pkg/test/logging"
v1 "knative.dev/serving/pkg/apis/serving/v1"
serviceresourcenames "knative.dev/serving/pkg/reconciler/service/resources/names"
rtesting "knative.dev/serving/pkg/testing/v1"
"knative.dev/serving/test"
)
func validateCreatedServiceStatus(clients *test.Clients, names *test.ResourceNames) error {
return CheckServiceState(clients.ServingClient, names.Service, func(s *v1.Service) (bool, error) {
if s.Status.URL == nil || s.Status.URL.Host == "" {
return false, fmt.Errorf("url is not present in Service status: %v", s)
}
names.URL = s.Status.URL.URL()
if s.Status.LatestCreatedRevisionName == "" {
return false, fmt.Errorf("lastCreatedRevision is not present in Service status: %v", s)
}
names.Revision = s.Status.LatestCreatedRevisionName
if s.Status.LatestReadyRevisionName == "" {
return false, fmt.Errorf("lastReadyRevision is not present in Service status: %v", s)
}
if s.Status.ObservedGeneration != 1 {
return false, fmt.Errorf("observedGeneration is not 1 in Service status: %v", s)
}
return true, nil
})
}
// GetServices gets a list of services.
func GetServices(clients *test.Clients) (list *v1.ServiceList, err error) {
return list, reconciler.RetryTestErrors(func(int) (err error) {
list, err = clients.ServingClient.Services.List(context.Background(), metav1.ListOptions{})
return err
})
}
// DeleteService deletes a service.
func DeleteService(clients *test.Clients, serviceName string) (err error) {
return reconciler.RetryTestErrors(func(int) (err error) {
return clients.ServingClient.Services.Delete(context.Background(), serviceName, metav1.DeleteOptions{})
})
}
// GetResourceObjects obtains the services resources from the k8s API server.
func GetResourceObjects(clients *test.Clients, names test.ResourceNames) (*ResourceObjects, error) {
routeObject, err := clients.ServingClient.Routes.Get(context.Background(), names.Route, metav1.GetOptions{})
if err != nil {
return nil, err
}
serviceObject, err := clients.ServingClient.Services.Get(context.Background(), names.Service, metav1.GetOptions{})
if err != nil {
return nil, err
}
configObject, err := clients.ServingClient.Configs.Get(context.Background(), names.Config, metav1.GetOptions{})
if err != nil {
return nil, err
}
revisionObject, err := clients.ServingClient.Revisions.Get(context.Background(), names.Revision, metav1.GetOptions{})
if err != nil {
return nil, err
}
return &ResourceObjects{
Route: routeObject,
Service: serviceObject,
Config: configObject,
Revision: revisionObject,
}, nil
}
// CreateServiceReady creates a new Service in state 'Ready'. This function expects Service and Image name
// passed in through 'names'. Names is updated with the Route and Configuration created by the Service
// and ResourceObjects is returned with the Service, Route, and Configuration objects.
// Returns error if the service does not come up correctly.
func CreateServiceReady(t testing.TB, clients *test.Clients, names *test.ResourceNames, fopt ...rtesting.ServiceOption) (*ResourceObjects, error) {
if names.Image == "" {
return nil, fmt.Errorf("expected non-empty Image name; got Image=%v", names.Image)
}
t.Log("Creating a new Service", "service", names.Service)
svc, err := CreateService(t, clients, *names, fopt...)
if err != nil {
return nil, err
}
return getResourceObjects(t, clients, names, svc)
}
func getResourceObjects(t testing.TB, clients *test.Clients, names *test.ResourceNames, svc *v1.Service) (*ResourceObjects, error) {
// Populate Route and Configuration Objects with name
names.Route = serviceresourcenames.Route(svc)
names.Config = serviceresourcenames.Configuration(svc)
// If the Service name was not specified, populate it
if names.Service == "" {
names.Service = svc.Name
}
t.Log("Waiting for Service to transition to Ready.", "service", names.Service)
if err := WaitForServiceState(clients.ServingClient, names.Service, IsServiceReady, "ServiceIsReady"); err != nil {
return nil, err
}
t.Log("Checking to ensure Service Status is populated for Ready service")
err := validateCreatedServiceStatus(clients, names)
if err != nil {
return nil, err
}
t.Log("Getting latest objects Created by Service")
resources, err := GetResourceObjects(clients, *names)
if err == nil {
t.Log("Successfully created Service", names.Service)
}
return resources, err
}
// CreateService creates a service in namespace with the name names.Service and names.Image
func CreateService(t testing.TB, clients *test.Clients, names test.ResourceNames, fopt ...rtesting.ServiceOption) (*v1.Service, error) {
svc := Service(names, fopt...)
return createService(t, clients, svc)
}
func createService(t testing.TB, clients *test.Clients, service *v1.Service) (svc *v1.Service, err error) {
test.AddTestAnnotation(t, service.ObjectMeta)
LogResourceObject(t, ResourceObjects{Service: service})
return svc, reconciler.RetryTestErrors(func(int) (err error) {
svc, err = clients.ServingClient.Services.Create(context.Background(), service, metav1.CreateOptions{})
return err
})
}
// UpdateService updates the existing service with name in names with the applied mutations.
// Returns the latest service object
func UpdateService(t testing.TB, clients *test.Clients, names test.ResourceNames, fopt ...rtesting.ServiceOption) (svc *v1.Service, err error) {
return svc, reconciler.RetryTestErrors(func(int) (err error) {
newSvc, err := clients.ServingClient.Services.Get(context.Background(), names.Service, metav1.GetOptions{})
if err != nil {
return err
}
for _, opt := range fopt {
opt(newSvc)
}
LogResourceObject(t, ResourceObjects{Service: newSvc})
svc, err = clients.ServingClient.Services.Update(context.Background(), newSvc, metav1.UpdateOptions{})
return err
})
}
// PatchService patches the existing service passed in with the applied mutations.
// Returns the latest service object
func PatchService(t testing.TB, clients *test.Clients, service *v1.Service, fopt ...rtesting.ServiceOption) (svc *v1.Service, err error) {
newSvc := service.DeepCopy()
for _, opt := range fopt {
opt(newSvc)
}
LogResourceObject(t, ResourceObjects{Service: newSvc})
patchBytes, err := duck.CreateBytePatch(service, newSvc)
if err != nil {
return nil, err
}
return svc, reconciler.RetryTestErrors(func(int) (err error) {
svc, err = clients.ServingClient.Services.Patch(context.Background(), service.ObjectMeta.Name, types.JSONPatchType, patchBytes, metav1.PatchOptions{})
return err
})
}
// PatchServiceRouteSpec patches a service to use the route name in names.
func PatchServiceRouteSpec(t testing.TB, clients *test.Clients, names test.ResourceNames, rs v1.RouteSpec) (svc *v1.Service, err error) {
patch := []map[string]interface{}{{
"op": "replace",
"path": "/spec/traffic",
"value": rs.Traffic,
}}
patchBytes, err := json.Marshal(patch)
if err != nil {
return nil, err
}
return svc, reconciler.RetryTestErrors(func(int) (err error) {
svc, err = clients.ServingClient.Services.Patch(context.Background(), names.Service, types.JSONPatchType, patchBytes, metav1.PatchOptions{})
return err
})
}
// WaitForServiceLatestRevision takes a revision in through names and compares it to the current state of LatestCreatedRevisionName in Service.
// Once an update is detected in the LatestCreatedRevisionName, the function waits for the created revision to be set in LatestReadyRevisionName
// before returning the name of the revision.
func WaitForServiceLatestRevision(clients *test.Clients, names test.ResourceNames) (string, error) {
var revisionName string
if err := WaitForServiceState(clients.ServingClient, names.Service, func(s *v1.Service) (bool, error) {
if s.Status.LatestCreatedRevisionName != names.Revision {
revisionName = s.Status.LatestCreatedRevisionName
return true, nil
}
return false, nil
}, "ServiceUpdatedWithRevision"); err != nil {
return "", fmt.Errorf("LatestCreatedRevisionName not updated: %w", err)
}
if err := WaitForServiceState(clients.ServingClient, names.Service, func(s *v1.Service) (bool, error) {
return s.Status.LatestReadyRevisionName == revisionName, nil
}, "ServiceReadyWithRevision"); err != nil {
return "", fmt.Errorf("LatestReadyRevisionName not updated with %s: %w", revisionName, err)
}
return revisionName, nil
}
// Service returns a Service object in namespace with the name names.Service
// that uses the image specified by names.Image.
func Service(names test.ResourceNames, fopt ...rtesting.ServiceOption) *v1.Service {
if names.Image != "" && len(names.Sidecars) == 0 {
a := append([]rtesting.ServiceOption{
rtesting.WithConfigSpec(ConfigurationSpec(pkgTest.ImagePath(names.Image))),
}, fopt...)
return rtesting.ServiceWithoutNamespace(names.Service, a...)
}
return rtesting.ServiceWithoutNamespace(names.Service, fopt...)
}
// WaitForServiceState polls the status of the Service called name
// from client every `PollInterval` until `inState` returns `true` indicating it
// is done, returns an error or PollTimeout. 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 WaitForServiceState(client *test.ServingClients, name string, inState func(s *v1.Service) (bool, error), desc string) error {
span := logging.GetEmitableSpan(context.Background(), fmt.Sprintf("WaitForServiceState/%s/%s", name, desc))
defer span.End()
var lastState *v1.Service
waitErr := wait.PollImmediate(test.PollInterval, test.PollTimeout, func() (bool, error) {
err := reconciler.RetryTestErrors(func(int) (err error) {
lastState, err = client.Services.Get(context.Background(), name, metav1.GetOptions{})
return err
})
if err != nil {
return true, err
}
return inState(lastState)
})
if waitErr != nil {
return fmt.Errorf("service %q is not in desired state, got: %#v: %w", name, lastState, waitErr)
}
return nil
}
// CheckServiceState verifies the status of the Service called name from client
// is in a particular state by calling `inState` and expecting `true`.
// This is the non-polling variety of WaitForServiceState.
func CheckServiceState(client *test.ServingClients, name string, inState func(s *v1.Service) (bool, error)) error {
var s *v1.Service
err := reconciler.RetryTestErrors(func(int) (err error) {
s, err = client.Services.Get(context.Background(), name, metav1.GetOptions{})
return err
})
if err != nil {
return err
}
if done, err := inState(s); err != nil {
return err
} else if !done {
return fmt.Errorf("service %q is not in desired state, got: %#v", name, s)
}
return nil
}
// IsServiceReady will check the status conditions of the service and return true if the service is
// ready. This means that its configurations and routes have all reported ready.
func IsServiceReady(s *v1.Service) (bool, error) {
return s.IsReady(), nil
}
// IsServiceFailed will check the status conditions of the service and return true if the service is
// not ready.
func IsServiceFailed(s *v1.Service) (bool, error) {
return s.IsFailed(), nil
}
// IsServiceAndChildrenFailed will check the readiness, route and config conditions of the service
// and return true if they are all failed.
func IsServiceAndChildrenFailed(s *v1.Service) (bool, error) {
if s.Generation != s.Status.ObservedGeneration {
return false, nil
}
if failed := s.IsFailed(); !failed {
return false, nil
}
routeCond := s.Status.GetCondition(v1.ServiceConditionRoutesReady)
if routeCond == nil || routeCond.Status != corev1.ConditionFalse {
return false, nil
}
configCond := s.Status.GetCondition(v1.ServiceConditionConfigurationsReady)
if configCond == nil || configCond.Status != corev1.ConditionFalse {
return false, nil
}
return true, nil
}
// IsServiceRoutesNotReady checks the RoutesReady status of the service and returns true only if RoutesReady is set to False.
func IsServiceRoutesNotReady(s *v1.Service) (bool, error) {
result := s.Status.GetCondition(v1.ServiceConditionRoutesReady)
return s.Generation == s.Status.ObservedGeneration && result != nil && result.Status == corev1.ConditionFalse, nil
}