@@ -460,7 +460,7 @@ func (s) TestGRPCLB_Basic(t *testing.T) {
460
460
}
461
461
cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
462
462
if err != nil {
463
- t .Fatalf ("Failed to dial to the backend %v" , err )
463
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
464
464
}
465
465
defer cc .Close ()
466
466
@@ -517,7 +517,7 @@ func (s) TestGRPCLB_Weighted(t *testing.T) {
517
517
}
518
518
cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
519
519
if err != nil {
520
- t .Fatalf ("Failed to dial to the backend %v" , err )
520
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
521
521
}
522
522
defer cc .Close ()
523
523
@@ -597,7 +597,7 @@ func (s) TestGRPCLB_DropRequest(t *testing.T) {
597
597
}
598
598
cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
599
599
if err != nil {
600
- t .Fatalf ("Failed to dial to the backend %v" , err )
600
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
601
601
}
602
602
defer cc .Close ()
603
603
testC := testgrpc .NewTestServiceClient (cc )
@@ -769,7 +769,7 @@ func (s) TestGRPCLB_BalancerDisconnects(t *testing.T) {
769
769
}
770
770
cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
771
771
if err != nil {
772
- t .Fatalf ("Failed to dial to the backend %v" , err )
772
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
773
773
}
774
774
defer cc .Close ()
775
775
testC := testgrpc .NewTestServiceClient (cc )
@@ -940,7 +940,7 @@ func (s) TestGRPCLB_ExplicitFallback(t *testing.T) {
940
940
}
941
941
cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
942
942
if err != nil {
943
- t .Fatalf ("Failed to dial to the backend %v" , err )
943
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
944
944
}
945
945
defer cc .Close ()
946
946
testC := testgrpc .NewTestServiceClient (cc )
@@ -1008,11 +1008,12 @@ func (s) TestGRPCLB_FallBackWithNoServerAddress(t *testing.T) {
1008
1008
grpc .WithTransportCredentials (& serverNameCheckCreds {}),
1009
1009
grpc .WithContextDialer (fakeNameDialer ),
1010
1010
}
1011
- cc , err := grpc .Dial (r .Scheme ()+ ":///" + beServerName , dopts ... )
1011
+ cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
1012
1012
if err != nil {
1013
- t .Fatalf ("Failed to dial to the backend %v" , err )
1013
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
1014
1014
}
1015
1015
defer cc .Close ()
1016
+ cc .Connect ()
1016
1017
testC := testgrpc .NewTestServiceClient (cc )
1017
1018
1018
1019
ctx , cancel := context .WithTimeout (context .Background (), defaultTestTimeout )
@@ -1102,10 +1103,11 @@ func (s) TestGRPCLB_PickFirst(t *testing.T) {
1102
1103
grpc .WithTransportCredentials (& serverNameCheckCreds {}),
1103
1104
grpc .WithContextDialer (fakeNameDialer ),
1104
1105
}
1105
- cc , err := grpc .Dial (r .Scheme ()+ ":///" + beServerName , dopts ... )
1106
+ cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , dopts ... )
1106
1107
if err != nil {
1107
- t .Fatalf ("Failed to dial to the backend %v" , err )
1108
+ t .Fatalf ("Failed to create a client for the backend: %v" , err )
1108
1109
}
1110
+ cc .Connect ()
1109
1111
defer cc .Close ()
1110
1112
1111
1113
// Push a service config with grpclb as the load balancing policy and
@@ -1198,7 +1200,7 @@ func (s) TestGRPCLB_BackendConnectionErrorPropagation(t *testing.T) {
1198
1200
grpc .WithTransportCredentials (& serverNameCheckCreds {}),
1199
1201
grpc .WithContextDialer (fakeNameDialer ))
1200
1202
if err != nil {
1201
- t .Fatalf ("Failed to create new client to the backend %v" , err )
1203
+ t .Fatalf ("Failed to create a client for the backend: %v" , err )
1202
1204
}
1203
1205
defer cc .Close ()
1204
1206
testC := testgrpc .NewTestServiceClient (cc )
@@ -1241,10 +1243,11 @@ func testGRPCLBEmptyServerList(t *testing.T, svcfg string) {
1241
1243
grpc .WithTransportCredentials (& serverNameCheckCreds {}),
1242
1244
grpc .WithContextDialer (fakeNameDialer ),
1243
1245
}
1244
- cc , err := grpc .DialContext ( ctx , r .Scheme ()+ ":///" + beServerName , dopts ... )
1246
+ cc , err := grpc .NewClient ( r .Scheme ()+ ":///" + beServerName , dopts ... )
1245
1247
if err != nil {
1246
- t .Fatalf ("Failed to dial to the backend %v" , err )
1248
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
1247
1249
}
1250
+ cc .Connect ()
1248
1251
defer cc .Close ()
1249
1252
testC := testgrpc .NewTestServiceClient (cc )
1250
1253
@@ -1311,15 +1314,16 @@ func (s) TestGRPCLBWithTargetNameFieldInConfig(t *testing.T) {
1311
1314
// Push the backend address to the remote balancer.
1312
1315
tss .ls .sls <- sl
1313
1316
1314
- cc , err := grpc .Dial (r .Scheme ()+ ":///" + beServerName ,
1317
+ cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName ,
1315
1318
grpc .WithResolvers (r ),
1316
1319
grpc .WithTransportCredentials (& serverNameCheckCreds {}),
1317
1320
grpc .WithContextDialer (fakeNameDialer ),
1318
1321
grpc .WithUserAgent (testUserAgent ))
1319
1322
if err != nil {
1320
- t .Fatalf ("Failed to dial to the backend %v" , err )
1323
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
1321
1324
}
1322
1325
defer cc .Close ()
1326
+ cc .Connect ()
1323
1327
testC := testgrpc .NewTestServiceClient (cc )
1324
1328
1325
1329
// Push a resolver update with grpclb configuration which does not contain the
@@ -1418,15 +1422,14 @@ func runAndCheckStats(t *testing.T, drop bool, statsChan chan *lbpb.ClientStats,
1418
1422
tss .ls .statsDura = 100 * time .Millisecond
1419
1423
creds := serverNameCheckCreds {}
1420
1424
1421
- ctx , cancel := context .WithTimeout (context .Background (), 10 * time .Second )
1422
- defer cancel ()
1423
- cc , err := grpc .DialContext (ctx , r .Scheme ()+ ":///" + beServerName , grpc .WithResolvers (r ),
1425
+ cc , err := grpc .NewClient (r .Scheme ()+ ":///" + beServerName , grpc .WithResolvers (r ),
1424
1426
grpc .WithTransportCredentials (& creds ),
1425
1427
grpc .WithPerRPCCredentials (failPreRPCCred {}),
1426
1428
grpc .WithContextDialer (fakeNameDialer ))
1427
1429
if err != nil {
1428
- t .Fatalf ("Failed to dial to the backend %v" , err )
1430
+ t .Fatalf ("Failed to create a client for the backend %v" , err )
1429
1431
}
1432
+ cc .Connect ()
1430
1433
defer cc .Close ()
1431
1434
1432
1435
rstate := resolver.State {ServiceConfig : r .CC .ParseServiceConfig (grpclbConfig )}
0 commit comments