forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrpc_test.go
442 lines (374 loc) · 10.8 KB
/
grpc_test.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
// +build e2e
/*
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 e2e
import (
"context"
"errors"
"fmt"
"io"
"math"
"net"
"strconv"
"strings"
"sync"
"testing"
"time"
"golang.org/x/sync/errgroup"
"google.golang.org/grpc"
corev1 "k8s.io/api/core/v1"
pkgTest "knative.dev/pkg/test"
"knative.dev/pkg/test/ingress"
"knative.dev/pkg/test/spoof"
"knative.dev/serving/pkg/apis/autoscaling"
rtesting "knative.dev/serving/pkg/testing/v1"
"knative.dev/serving/test"
ping "knative.dev/serving/test/test_images/grpc-ping/proto"
v1test "knative.dev/serving/test/v1"
)
const (
grpcContainerConcurrency = 1
grpcMinScale = 3
defaultPort = "80"
)
type grpcTest func(*TestContext, string, string)
// hasPort checks if a URL contains a port number
func hasPort(u string) bool {
_, port, err := net.SplitHostPort(u)
if err != nil {
return false
}
_, err = strconv.Atoi(port)
return err == nil
}
func dial(host, domain string) (*grpc.ClientConn, error) {
if !hasPort(host) {
host = net.JoinHostPort(host, defaultPort)
}
if !hasPort(domain) {
domain = net.JoinHostPort(domain, defaultPort)
}
if host != domain {
// The host to connect and the domain accepted differ.
// We need to do grpc.WithAuthority(...) here.
return grpc.Dial(
host,
grpc.WithAuthority(domain),
grpc.WithInsecure(),
// Retrying DNS errors to avoid .xip.io issues.
grpc.WithDefaultCallOptions(grpc.WaitForReady(true)),
)
}
// This is a more preferred usage of the go-grpc client.
return grpc.Dial(
host,
grpc.WithInsecure(),
// Retrying DNS errors to avoid .xip.io issues.
grpc.WithDefaultCallOptions(grpc.WaitForReady(true)),
)
}
func unaryTest(ctx *TestContext, host, domain string) {
ctx.t.Helper()
ctx.t.Logf("Connecting to grpc-ping using host %q and authority %q", host, domain)
const want = "Hello!"
got, err := pingGRPC(host, domain, want)
if err != nil {
ctx.t.Fatal("gRPC ping =", err)
}
if got != want {
ctx.t.Fatalf("Response = %q, want = %q", got, want)
}
}
func autoscaleTest(ctx *TestContext, host, domain string) {
ctx.t.Helper()
ctx.t.Logf("Connecting to grpc-ping using host %q and authority %q", host, domain)
ctx.targetUtilization = targetUtilization
assertGRPCAutoscaleUpToNumPods(ctx, 1, 2, 60*time.Second, host, domain)
assertScaleDown(ctx)
assertGRPCAutoscaleUpToNumPods(ctx, 0, 2, 60*time.Second, host, domain)
}
func loadBalancingTest(ctx *TestContext, host, domain string) {
ctx.t.Helper()
ctx.t.Logf("Connecting to grpc-ping using host %q and authority %q", host, domain)
const (
wantHosts = grpcMinScale
wantPrefix = "hello-"
)
var (
grp errgroup.Group
uniqueHosts sync.Map
stopChan = make(chan struct{})
done = time.After(60 * time.Second)
timer = time.Tick(1 * time.Second)
)
ctx.targetUtilization = targetUtilization
countKeys := func() int {
count := 0
uniqueHosts.Range(func(k, v interface{}) bool {
count++
return true
})
return count
}
for i := 0; i < wantHosts; i++ {
grp.Go(func() error {
for {
select {
case <-stopChan:
return nil
default:
got, err := pingGRPC(host, domain, wantPrefix)
if err != nil {
return fmt.Errorf("ping gRPC error: %w", err)
}
if !strings.HasPrefix(got, wantPrefix) {
return fmt.Errorf("response = %q, wantPrefix = %q", got, wantPrefix)
}
if host := strings.TrimPrefix(got, wantPrefix); host != "" {
uniqueHosts.Store(host, true)
}
}
}
})
}
grp.Go(func() error {
defer close(stopChan)
for {
select {
case <-done:
return nil
case <-timer:
if countKeys() >= wantHosts {
return nil
}
}
}
})
if err := grp.Wait(); err != nil {
ctx.t.Fatal("error: ", err)
}
gotHosts := countKeys()
if gotHosts < wantHosts {
ctx.t.Fatalf("Wanted %d hosts, got %d hosts", wantHosts, gotHosts)
}
}
func generateGRPCTraffic(concurrentRequests int, host, domain string, stopChan chan struct{}) error {
var grp errgroup.Group
for i := 0; i < concurrentRequests; i++ {
i := i
grp.Go(func() error {
for j := 0; ; j++ {
select {
case <-stopChan:
return nil
default:
want := fmt.Sprintf("Hello! stream:%d request: %d", i, j)
got, err := pingGRPC(host, domain, want)
if err != nil {
return fmt.Errorf("ping gRPC error: %w", err)
}
if got != want {
return fmt.Errorf("response = %q, want = %q", got, want)
}
}
}
})
}
if err := grp.Wait(); err != nil {
return fmt.Errorf("error processing requests %w", err)
}
return nil
}
func pingGRPC(host, domain, message string) (string, error) {
conn, err := dial(host, domain)
if err != nil {
return "", err
}
defer conn.Close()
pc := ping.NewPingServiceClient(conn)
want := &ping.Request{Msg: message}
got, err := pc.Ping(context.Background(), want)
if err != nil {
return "", fmt.Errorf("could not send request: %w", err)
}
return got.Msg, nil
}
func assertGRPCAutoscaleUpToNumPods(ctx *TestContext, curPods, targetPods float64, duration time.Duration, host, domain string) {
ctx.t.Helper()
// Test succeeds when the number of pods meets targetPods.
// Relax the bounds to reduce the flakiness caused by sampling in the autoscaling algorithm.
// Also adjust the values by the target utilization values.
minPods := math.Floor(curPods/ctx.targetUtilization) - 1
maxPods := math.Ceil(targetPods/ctx.targetUtilization) + 1
stopChan := make(chan struct{})
var grp errgroup.Group
grp.Go(func() error {
return generateGRPCTraffic(int(targetPods*grpcContainerConcurrency), host, domain, stopChan)
})
grp.Go(func() error {
defer close(stopChan)
return checkPodScale(ctx, targetPods, minPods, maxPods, time.After(duration), true /* quick */)
})
if err := grp.Wait(); err != nil {
ctx.t.Errorf("Error : %v", err)
}
}
func streamTest(tc *TestContext, host, domain string) {
tc.t.Helper()
tc.t.Logf("Connecting to grpc-ping using host %q and authority %q", host, domain)
conn, err := dial(host, domain)
if err != nil {
tc.t.Fatal("Fail to dial:", err)
}
defer conn.Close()
pc := ping.NewPingServiceClient(conn)
tc.t.Log("Testing streaming Ping")
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
stream, err := pc.PingStream(ctx)
if err != nil {
tc.t.Fatal("Error creating stream:", err)
}
const count = 3
for i := 0; i < count; i++ {
tc.t.Logf("Sending stream %d of %d", i+1, count)
want := "This is a short message!"
err = stream.Send(&ping.Request{Msg: want})
if err != nil {
tc.t.Fatal("Error sending request:", err)
}
resp, err := stream.Recv()
if err != nil {
tc.t.Fatal("Error receiving response:", err)
}
got := resp.Msg
if want != got {
tc.t.Errorf("Stream %d: response = %q, want = %q", i, got, want)
}
}
stream.CloseSend()
_, err = stream.Recv()
if !errors.Is(err, io.EOF) {
tc.t.Errorf("Expected EOF, got %v", err)
}
}
func testGRPC(t *testing.T, f grpcTest, fopts ...rtesting.ServiceOption) {
t.Helper()
t.Parallel()
// Setup
clients := Setup(t)
t.Log("Creating service for grpc-ping")
names := test.ResourceNames{
Service: test.ObjectNameForTest(t),
Image: "grpc-ping",
}
fopts = append(fopts, rtesting.WithNamedPort("h2c"))
test.EnsureTearDown(t, clients, &names)
resources, err := v1test.CreateServiceReady(t, clients, &names, fopts...)
if err != nil {
t.Fatalf("Failed to create initial Service: %v: %v", names.Service, err)
}
url := resources.Route.Status.URL.URL()
if _, err = pkgTest.WaitForEndpointState(
context.Background(),
clients.KubeClient,
t.Logf,
url,
v1test.RetryingRouteInconsistency(spoof.IsStatusOK),
"gRPCPingReadyToServe",
test.ServingFlags.ResolvableDomain,
test.AddRootCAtoTransport(context.Background(), t.Logf, clients, test.ServingFlags.HTTPS),
); err != nil {
t.Fatalf("The endpoint for Route %s at %s didn't return success: %v", names.Route, url, err)
}
host := url.Host
if !test.ServingFlags.ResolvableDomain {
addr, mapper, err := ingress.GetIngressEndpoint(context.Background(), clients.KubeClient, pkgTest.Flags.IngressEndpoint)
if err != nil {
t.Fatal("Could not get service endpoint:", err)
}
host = net.JoinHostPort(addr, mapper("80"))
}
f(&TestContext{
t: t,
clients: clients,
names: names,
resources: resources,
}, host, url.Hostname())
}
func TestGRPCUnaryPing(t *testing.T) {
testGRPC(t, unaryTest)
}
func TestGRPCStreamingPing(t *testing.T) {
testGRPC(t, streamTest)
}
func TestGRPCUnaryPingViaActivator(t *testing.T) {
testGRPC(t,
func(ctx *TestContext, host, domain string) {
if err := waitForActivatorEndpoints(ctx); err != nil {
t.Fatal("Never got Activator endpoints in the service:", err)
}
unaryTest(ctx, host, domain)
},
rtesting.WithConfigAnnotations(map[string]string{
autoscaling.TargetBurstCapacityKey: "-1",
}),
)
}
func TestGRPCStreamingPingViaActivator(t *testing.T) {
testGRPC(t,
func(ctx *TestContext, host, domain string) {
if err := waitForActivatorEndpoints(ctx); err != nil {
t.Fatal("Never got Activator endpoints in the service:", err)
}
streamTest(ctx, host, domain)
},
rtesting.WithConfigAnnotations(map[string]string{
autoscaling.TargetBurstCapacityKey: "-1",
}),
)
}
func TestGRPCAutoscaleUpDownUp(t *testing.T) {
testGRPC(t,
func(ctx *TestContext, host, domain string) {
autoscaleTest(ctx, host, domain)
},
rtesting.WithConfigAnnotations(map[string]string{
autoscaling.TargetUtilizationPercentageKey: toPercentageString(targetUtilization),
autoscaling.TargetAnnotationKey: strconv.Itoa(grpcContainerConcurrency),
autoscaling.TargetBurstCapacityKey: "-1",
autoscaling.WindowAnnotationKey: "10s",
}),
rtesting.WithEnv(corev1.EnvVar{
Name: "DELAY",
Value: "500",
}),
)
}
func TestGRPCLoadBalancing(t *testing.T) {
testGRPC(t,
func(ctx *TestContext, host, domain string) {
loadBalancingTest(ctx, host, domain)
},
rtesting.WithConfigAnnotations(map[string]string{
autoscaling.TargetUtilizationPercentageKey: toPercentageString(targetUtilization),
autoscaling.TargetAnnotationKey: strconv.Itoa(grpcContainerConcurrency),
autoscaling.MinScaleAnnotationKey: strconv.Itoa(grpcMinScale),
autoscaling.TargetBurstCapacityKey: "-1",
}),
rtesting.WithEnv(corev1.EnvVar{
Name: "HOSTNAME",
Value: "true",
}),
)
}