forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrpc_client_integration_test.cc
527 lines (477 loc) · 21.2 KB
/
grpc_client_integration_test.cc
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
#ifdef ENVOY_GOOGLE_GRPC
#include "envoy/config/core/v3/grpc_service.pb.h"
#include "common/grpc/google_async_client_impl.h"
#include "extensions/grpc_credentials/well_known_names.h"
#endif
#include "test/common/grpc/grpc_client_integration_test_harness.h"
using testing::Eq;
namespace Envoy {
namespace Grpc {
namespace {
// Parameterize the loopback test server socket address and gRPC client type.
INSTANTIATE_TEST_SUITE_P(IpVersionsClientType, GrpcClientIntegrationTest,
GRPC_CLIENT_INTEGRATION_PARAMS,
GrpcClientIntegrationParamTest::protocolTestParamsToString);
// Validate that a simple request-reply stream works.
TEST_P(GrpcClientIntegrationTest, BasicStream) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that a client destruction with open streams cleans up appropriately.
TEST_P(GrpcClientIntegrationTest, ClientDestruct) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
grpc_client_.reset();
}
// Validate that a simple request-reply unary RPC works.
TEST_P(GrpcClientIntegrationTest, BasicRequest) {
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that multiple streams work.
TEST_P(GrpcClientIntegrationTest, MultiStream) {
initialize();
auto stream_0 = createStream(empty_metadata_);
auto stream_1 = createStream(empty_metadata_);
stream_0->sendRequest();
stream_1->sendRequest();
stream_0->sendServerInitialMetadata(empty_metadata_);
stream_0->sendReply();
stream_1->sendServerTrailers(Status::WellKnownGrpcStatus::Unavailable, "", empty_metadata_, true);
stream_0->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that multiple request-reply unary RPCs works.
TEST_P(GrpcClientIntegrationTest, MultiRequest) {
initialize();
auto request_0 = createRequest(empty_metadata_);
auto request_1 = createRequest(empty_metadata_);
request_1->sendReply();
request_0->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that a non-200 HTTP status results in the expected gRPC error.
TEST_P(GrpcClientIntegrationTest, HttpNon200Status) {
initialize();
for (const auto http_response_status : {400, 401, 403, 404, 429, 431}) {
auto stream = createStream(empty_metadata_);
const Http::TestResponseHeaderMapImpl reply_headers{
{":status", std::to_string(http_response_status)}};
stream->expectInitialMetadata(empty_metadata_);
stream->expectTrailingMetadata(empty_metadata_);
// Translate status per
// // https://github.com/grpc/grpc/blob/master/doc/http-grpc-status-mapping.md
stream->expectGrpcStatus(Utility::httpToGrpcStatus(http_response_status));
stream->fake_stream_->encodeHeaders(reply_headers, true);
dispatcher_helper_.runDispatcher();
}
}
// Validate that a non-200 HTTP status results in fallback to grpc-status.
TEST_P(GrpcClientIntegrationTest, GrpcStatusFallback) {
initialize();
auto stream = createStream(empty_metadata_);
const Http::TestResponseHeaderMapImpl reply_headers{
{":status", "404"},
{"grpc-status", std::to_string(enumToInt(Status::WellKnownGrpcStatus::PermissionDenied))},
{"grpc-message", "error message"}};
stream->expectInitialMetadata(empty_metadata_);
stream->expectTrailingMetadata(empty_metadata_);
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::PermissionDenied);
stream->fake_stream_->encodeHeaders(reply_headers, true);
dispatcher_helper_.runDispatcher();
}
// Validate that a HTTP-level reset is handled as an INTERNAL gRPC error.
TEST_P(GrpcClientIntegrationTest, HttpReset) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
dispatcher_helper_.runDispatcher();
stream->expectTrailingMetadata(empty_metadata_);
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::Internal);
stream->fake_stream_->encodeResetStream();
dispatcher_helper_.runDispatcher();
}
// Validate that a reply with bad gRPC framing (compressed frames with Envoy
// client) is handled as an INTERNAL gRPC error.
TEST_P(GrpcClientIntegrationTest, BadReplyGrpcFraming) {
initialize();
// Only testing behavior of Envoy client, since Google client handles
// compressed frames.
SKIP_IF_GRPC_CLIENT(ClientType::GoogleGrpc);
auto stream = createStream(empty_metadata_);
stream->sendRequest();
stream->sendServerInitialMetadata(empty_metadata_);
stream->expectTrailingMetadata(empty_metadata_);
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::Internal);
Buffer::OwnedImpl reply_buffer("\xde\xad\xbe\xef\x00", 5);
stream->fake_stream_->encodeData(reply_buffer, true);
dispatcher_helper_.runDispatcher();
}
// Validate that custom channel args can be set on the Google gRPC client.
//
TEST_P(GrpcClientIntegrationTest, CustomChannelArgs) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
channel_args_.emplace_back("grpc.primary_user_agent", "test_agent");
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
EXPECT_THAT(stream_headers_->get_("user-agent"), testing::HasSubstr("test_agent"));
}
// Validate that a reply with bad protobuf is handled as an INTERNAL gRPC error.
TEST_P(GrpcClientIntegrationTest, BadReplyProtobuf) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
stream->sendServerInitialMetadata(empty_metadata_);
stream->expectTrailingMetadata(empty_metadata_);
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::Internal);
Buffer::OwnedImpl reply_buffer("\x00\x00\x00\x00\x02\xff\xff", 7);
stream->fake_stream_->encodeData(reply_buffer, true);
dispatcher_helper_.runDispatcher();
}
// Validate that a reply with bad protobuf is handled as an INTERNAL gRPC error.
TEST_P(GrpcClientIntegrationTest, BadRequestReplyProtobuf) {
initialize();
auto request = createRequest(empty_metadata_);
request->fake_stream_->startGrpcStream();
EXPECT_CALL(*request->child_span_, setTag(Eq(Tracing::Tags::get().GrpcStatusCode), Eq("0")));
EXPECT_CALL(*request, onFailure(Status::Internal, "", _)).WillExitIfNeeded();
EXPECT_CALL(*request->child_span_, finishSpan());
dispatcher_helper_.setStreamEventPending();
Buffer::OwnedImpl reply_buffer("\x00\x00\x00\x00\x02\xff\xff", 7);
Common::prependGrpcFrameHeader(reply_buffer);
request->fake_stream_->encodeData(reply_buffer, false);
request->fake_stream_->finishGrpcStream(Grpc::Status::Ok);
dispatcher_helper_.runDispatcher();
}
// Validate that an out-of-range gRPC status is handled as an INVALID_CODE gRPC
// error.
TEST_P(GrpcClientIntegrationTest, OutOfRangeGrpcStatus) {
initialize();
// TODO(htuch): there is an UBSAN issue with Google gRPC client library
// handling of out-of-range status codes, see
// https://circleci.com/gh/envoyproxy/envoy/20234?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link
// Need to fix this issue upstream first.
SKIP_IF_GRPC_CLIENT(ClientType::GoogleGrpc);
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
EXPECT_CALL(*stream, onReceiveTrailingMetadata_(_)).WillExitIfNeeded();
dispatcher_helper_.setStreamEventPending();
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::InvalidCode);
const Http::TestResponseTrailerMapImpl reply_trailers{{"grpc-status", std::to_string(0x1337)}};
stream->fake_stream_->encodeTrailers(reply_trailers);
dispatcher_helper_.runDispatcher();
}
// Validate that a missing gRPC status is handled as an UNKNOWN gRPC error.
TEST_P(GrpcClientIntegrationTest, MissingGrpcStatus) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
EXPECT_CALL(*stream, onReceiveTrailingMetadata_(_)).WillExitIfNeeded();
dispatcher_helper_.setStreamEventPending();
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::Unknown);
const Http::TestResponseTrailerMapImpl reply_trailers{{"some", "other header"}};
stream->fake_stream_->encodeTrailers(reply_trailers);
dispatcher_helper_.runDispatcher();
}
// Validate that a reply terminated without trailers is handled as a gRPC error.
TEST_P(GrpcClientIntegrationTest, ReplyNoTrailers) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
stream->sendServerInitialMetadata(empty_metadata_);
helloworld::HelloReply reply;
reply.set_message(HELLO_REPLY);
EXPECT_CALL(*stream, onReceiveMessage_(HelloworldReplyEq(HELLO_REPLY))).WillExitIfNeeded();
dispatcher_helper_.setStreamEventPending();
stream->expectTrailingMetadata(empty_metadata_);
stream->expectGrpcStatus(Status::WellKnownGrpcStatus::InvalidCode);
auto serialized_response = Grpc::Common::serializeToGrpcFrame(reply);
stream->fake_stream_->encodeData(*serialized_response, true);
stream->fake_stream_->encodeResetStream();
dispatcher_helper_.runDispatcher();
}
// Validate that sending client initial metadata works.
TEST_P(GrpcClientIntegrationTest, StreamClientInitialMetadata) {
initialize();
const TestMetadata initial_metadata = {
{Http::LowerCaseString("foo"), "bar"},
{Http::LowerCaseString("baz"), "blah"},
};
auto stream = createStream(initial_metadata);
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_, true);
dispatcher_helper_.runDispatcher();
}
// Validate that sending client initial metadata works.
TEST_P(GrpcClientIntegrationTest, RequestClientInitialMetadata) {
initialize();
const TestMetadata initial_metadata = {
{Http::LowerCaseString("foo"), "bar"},
{Http::LowerCaseString("baz"), "blah"},
};
auto request = createRequest(initial_metadata);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that setting service-wide client initial metadata works.
TEST_P(GrpcClientIntegrationTest, RequestServiceWideInitialMetadata) {
service_wide_initial_metadata_.emplace_back(Http::LowerCaseString("foo"), "bar");
service_wide_initial_metadata_.emplace_back(Http::LowerCaseString("baz"), "blah");
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that receiving server initial metadata works.
TEST_P(GrpcClientIntegrationTest, ServerInitialMetadata) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
const TestMetadata initial_metadata = {
{Http::LowerCaseString("foo"), "bar"},
{Http::LowerCaseString("baz"), "blah"},
{Http::LowerCaseString("binary-bin"), "help"},
};
stream->sendServerInitialMetadata(initial_metadata);
stream->sendReply();
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that receiving server trailing metadata works.
TEST_P(GrpcClientIntegrationTest, ServerTrailingMetadata) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest();
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
const TestMetadata trailing_metadata = {
{Http::LowerCaseString("foo"), "bar"},
{Http::LowerCaseString("baz"), "blah"},
};
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", trailing_metadata);
dispatcher_helper_.runDispatcher();
}
// Validate that a trailers-only response is handled for streams.
TEST_P(GrpcClientIntegrationTest, StreamTrailersOnly) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_, true);
dispatcher_helper_.runDispatcher();
}
// Validate that a trailers-only response is handled for requests, where it is
// an error.
TEST_P(GrpcClientIntegrationTest, RequestTrailersOnly) {
initialize();
auto request = createRequest(empty_metadata_);
const Http::TestResponseTrailerMapImpl reply_headers{{":status", "200"}, {"grpc-status", "0"}};
EXPECT_CALL(*request->child_span_, setTag(Eq(Tracing::Tags::get().GrpcStatusCode), Eq("0")));
EXPECT_CALL(*request->child_span_,
setTag(Eq(Tracing::Tags::get().Error), Eq(Tracing::Tags::get().True)));
EXPECT_CALL(*request, onFailure(Status::Internal, "", _)).WillExitIfNeeded();
dispatcher_helper_.setStreamEventPending();
EXPECT_CALL(*request->child_span_, finishSpan());
request->fake_stream_->encodeTrailers(reply_headers);
dispatcher_helper_.runDispatcher();
}
// Validate that a trailers RESOURCE_EXHAUSTED reply is handled.
TEST_P(GrpcClientIntegrationTest, ResourceExhaustedError) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
dispatcher_helper_.runDispatcher();
stream->sendServerTrailers(Status::WellKnownGrpcStatus::ResourceExhausted, "error message",
empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that a trailers Unauthenticated reply is handled.
TEST_P(GrpcClientIntegrationTest, UnauthenticatedError) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Unauthenticated, "error message",
empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that a trailers reply is still handled even if a grpc status code larger than
// MaximumKnown, is handled.
TEST_P(GrpcClientIntegrationTest, MaximumKnownPlusOne) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendServerTrailers(
static_cast<Status::GrpcStatus>(Status::WellKnownGrpcStatus::MaximumKnown + 1),
"error message", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that we can continue to receive after a local close.
TEST_P(GrpcClientIntegrationTest, ReceiveAfterLocalClose) {
initialize();
auto stream = createStream(empty_metadata_);
stream->sendRequest(true);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendReply();
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that reset() doesn't explode on a half-closed stream (local).
TEST_P(GrpcClientIntegrationTest, ResetAfterCloseLocal) {
initialize();
auto stream = createStream(empty_metadata_);
stream->grpc_stream_->closeStream();
ASSERT_TRUE(stream->fake_stream_->waitForEndStream(dispatcher_helper_.dispatcher_));
stream->grpc_stream_->resetStream();
dispatcher_helper_.dispatcher_.run(Event::Dispatcher::RunType::NonBlock);
ASSERT_TRUE(stream->fake_stream_->waitForReset());
}
// Validate that request cancel() works.
TEST_P(GrpcClientIntegrationTest, CancelRequest) {
initialize();
auto request = createRequest(empty_metadata_);
EXPECT_CALL(*request->child_span_,
setTag(Eq(Tracing::Tags::get().Status), Eq(Tracing::Tags::get().Canceled)));
EXPECT_CALL(*request->child_span_, finishSpan());
request->grpc_request_->cancel();
dispatcher_helper_.dispatcher_.run(Event::Dispatcher::RunType::NonBlock);
ASSERT_TRUE(request->fake_stream_->waitForReset());
}
// Parameterize the loopback test server socket address and gRPC client type.
INSTANTIATE_TEST_SUITE_P(SslIpVersionsClientType, GrpcSslClientIntegrationTest,
GRPC_CLIENT_INTEGRATION_PARAMS,
GrpcClientIntegrationParamTest::protocolTestParamsToString);
// Validate that a simple request-reply unary RPC works with SSL.
TEST_P(GrpcSslClientIntegrationTest, BasicSslRequest) {
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that a simple request-reply unary RPC works with SSL + client certs.
TEST_P(GrpcSslClientIntegrationTest, BasicSslRequestWithClientCert) {
use_client_cert_ = true;
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
#ifdef ENVOY_GOOGLE_GRPC
// AccessToken credential validation tests.
class GrpcAccessTokenClientIntegrationTest : public GrpcSslClientIntegrationTest {
public:
void expectExtraHeaders(FakeStream& fake_stream) override {
AssertionResult result = fake_stream.waitForHeadersComplete();
RELEASE_ASSERT(result, result.message());
const auto auth_headers = fake_stream.headers().get(Http::LowerCaseString("authorization"));
if (!access_token_value_.empty()) {
EXPECT_EQ("Bearer " + access_token_value_, auth_headers[0]->value().getStringView());
}
if (!access_token_value_2_.empty()) {
EXPECT_EQ("Bearer " + access_token_value_2_, auth_headers[1]->value().getStringView());
}
}
envoy::config::core::v3::GrpcService createGoogleGrpcConfig() override {
auto config = GrpcClientIntegrationTest::createGoogleGrpcConfig();
auto* google_grpc = config.mutable_google_grpc();
google_grpc->set_credentials_factory_name(credentials_factory_name_);
auto* ssl_creds = google_grpc->mutable_channel_credentials()->mutable_ssl_credentials();
ssl_creds->mutable_root_certs()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/upstreamcacert.pem"));
google_grpc->add_call_credentials()->set_access_token(access_token_value_);
if (!access_token_value_2_.empty()) {
google_grpc->add_call_credentials()->set_access_token(access_token_value_2_);
}
if (!refresh_token_value_.empty()) {
google_grpc->add_call_credentials()->set_google_refresh_token(refresh_token_value_);
}
return config;
}
std::string access_token_value_{};
std::string access_token_value_2_{};
std::string refresh_token_value_{};
std::string credentials_factory_name_{};
};
// Parameterize the loopback test server socket address and gRPC client type.
INSTANTIATE_TEST_SUITE_P(SslIpVersionsClientType, GrpcAccessTokenClientIntegrationTest,
GRPC_CLIENT_INTEGRATION_PARAMS,
GrpcClientIntegrationParamTest::protocolTestParamsToString);
// Validate that a simple request-reply unary RPC works with AccessToken auth.
TEST_P(GrpcAccessTokenClientIntegrationTest, AccessTokenAuthRequest) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
access_token_value_ = "accesstokenvalue";
credentials_factory_name_ =
Extensions::GrpcCredentials::GrpcCredentialsNames::get().AccessTokenExample;
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that a simple request-reply stream RPC works with AccessToken auth..
TEST_P(GrpcAccessTokenClientIntegrationTest, AccessTokenAuthStream) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
access_token_value_ = "accesstokenvalue";
credentials_factory_name_ =
Extensions::GrpcCredentials::GrpcCredentialsNames::get().AccessTokenExample;
initialize();
auto stream = createStream(empty_metadata_);
stream->sendServerInitialMetadata(empty_metadata_);
stream->sendRequest();
stream->sendReply();
stream->sendServerTrailers(Status::WellKnownGrpcStatus::Ok, "", empty_metadata_);
dispatcher_helper_.runDispatcher();
}
// Validate that multiple access tokens are accepted
TEST_P(GrpcAccessTokenClientIntegrationTest, MultipleAccessTokens) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
access_token_value_ = "accesstokenvalue";
access_token_value_2_ = "accesstokenvalue2";
credentials_factory_name_ =
Extensions::GrpcCredentials::GrpcCredentialsNames::get().AccessTokenExample;
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that extra params are accepted
TEST_P(GrpcAccessTokenClientIntegrationTest, ExtraCredentialParams) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
access_token_value_ = "accesstokenvalue";
refresh_token_value_ = "refreshtokenvalue";
credentials_factory_name_ =
Extensions::GrpcCredentials::GrpcCredentialsNames::get().AccessTokenExample;
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that no access token still works
TEST_P(GrpcAccessTokenClientIntegrationTest, NoAccessTokens) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
credentials_factory_name_ =
Extensions::GrpcCredentials::GrpcCredentialsNames::get().AccessTokenExample;
initialize();
auto request = createRequest(empty_metadata_);
request->sendReply();
dispatcher_helper_.runDispatcher();
}
// Validate that an unknown credentials factory name throws an EnvoyException
TEST_P(GrpcAccessTokenClientIntegrationTest, InvalidCredentialFactory) {
SKIP_IF_GRPC_CLIENT(ClientType::EnvoyGrpc);
credentials_factory_name_ = "unknown";
EXPECT_THROW_WITH_MESSAGE(initialize(), EnvoyException,
"Unknown google grpc credentials factory: unknown");
}
#endif
} // namespace
} // namespace Grpc
} // namespace Envoy