-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xdsclient: don't reset version info after stream restart
- Loading branch information
Showing
18 changed files
with
284 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* | ||
* Copyright 2022 gRPC 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 ( | ||
"fmt" | ||
|
||
"google.golang.org/grpc/grpclog" | ||
) | ||
|
||
var logger = grpclog.Component("xds-e2e") | ||
|
||
// serverLogger implements the Logger interface defined at | ||
// envoyproxy/go-control-plane/pkg/log. This is passed to the Snapshot cache. | ||
type serverLogger struct{} | ||
|
||
func (l serverLogger) Debugf(format string, args ...interface{}) { | ||
msg := fmt.Sprintf(format, args...) | ||
logger.InfoDepth(1, msg) | ||
} | ||
func (l serverLogger) Infof(format string, args ...interface{}) { | ||
msg := fmt.Sprintf(format, args...) | ||
logger.InfoDepth(1, msg) | ||
} | ||
func (l serverLogger) Warnf(format string, args ...interface{}) { | ||
msg := fmt.Sprintf(format, args...) | ||
logger.WarningDepth(1, msg) | ||
} | ||
func (l serverLogger) Errorf(format string, args ...interface{}) { | ||
msg := fmt.Sprintf(format, args...) | ||
logger.ErrorDepth(1, msg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/* | ||
* | ||
* Copyright 2022 gRPC 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 xds_test | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
"google.golang.org/grpc" | ||
"google.golang.org/grpc/credentials/insecure" | ||
"google.golang.org/grpc/internal/grpcsync" | ||
"google.golang.org/grpc/internal/testutils" | ||
"google.golang.org/grpc/internal/testutils/xds/e2e" | ||
|
||
v3discoverypb "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3" | ||
testgrpc "google.golang.org/grpc/test/grpc_testing" | ||
testpb "google.golang.org/grpc/test/grpc_testing" | ||
) | ||
|
||
// TestClientResourceVersionAfterStreamRestart tests the scenario where the | ||
// xdsClient's ADS stream to the management server gets broken. This test | ||
// verifies that the version number on the initial request on the new stream | ||
// indicates the most recent version seen by the client on the previous stream. | ||
func (s) TestClientResourceVersionAfterStreamRestart(t *testing.T) { | ||
// Create a restartable listener which can close existing connections. | ||
l, err := testutils.LocalTCPListener() | ||
if err != nil { | ||
t.Fatalf("testutils.LocalTCPListener() failed: %v", err) | ||
} | ||
lis := testutils.NewRestartableListener(l) | ||
|
||
ackVersionsBeforeRestart := make(map[string]string) | ||
ackVersionsAfterRestart := make(map[string]string) | ||
streamClosed := grpcsync.NewEvent() | ||
resourcesRequestedAfterStreamClose := make(chan struct{}) | ||
managementServer, nodeID, _, resolver, cleanup1 := e2e.SetupManagementServer(t, &e2e.ManagementServerOptions{ | ||
Listener: lis, | ||
OnStreamRequest: func(id int64, request *v3discoverypb.DiscoveryRequest) error { | ||
// Populate the versions in the appropriate map based on whether the | ||
// stream has closed. | ||
if !streamClosed.HasFired() { | ||
if len(request.GetResourceNames()) != 0 { | ||
ackVersionsBeforeRestart[request.GetTypeUrl()] = request.GetVersionInfo() | ||
} | ||
return nil | ||
} | ||
if len(request.GetResourceNames()) != 0 { | ||
ackVersionsAfterRestart[request.GetTypeUrl()] = request.GetVersionInfo() | ||
if len(ackVersionsAfterRestart) == len(ackVersionsBeforeRestart) { | ||
select { | ||
case resourcesRequestedAfterStreamClose <- struct{}{}: | ||
default: | ||
} | ||
} | ||
} | ||
return nil | ||
}, | ||
OnStreamClosed: func(int64) { | ||
streamClosed.Fire() | ||
}, | ||
}) | ||
defer cleanup1() | ||
|
||
port, cleanup2 := startTestService(t, nil) | ||
defer cleanup2() | ||
|
||
const serviceName = "my-service-client-side-xds" | ||
resources := e2e.DefaultClientResources(e2e.ResourceParams{ | ||
DialTarget: serviceName, | ||
NodeID: nodeID, | ||
Host: "localhost", | ||
Port: port, | ||
SecLevel: e2e.SecurityLevelNone, | ||
}) | ||
ctx, cancel := context.WithTimeout(context.Background(), defaultTestTimeout) | ||
defer cancel() | ||
if err := managementServer.Update(ctx, resources); err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// Create a ClientConn and make a successful RPC. | ||
cc, err := grpc.Dial(fmt.Sprintf("xds:///%s", serviceName), grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithResolvers(resolver)) | ||
if err != nil { | ||
t.Fatalf("failed to dial local test server: %v", err) | ||
} | ||
defer cc.Close() | ||
|
||
client := testgrpc.NewTestServiceClient(cc) | ||
if _, err := client.EmptyCall(ctx, &testpb.Empty{}, grpc.WaitForReady(true)); err != nil { | ||
t.Fatalf("rpc EmptyCall() failed: %v", err) | ||
} | ||
|
||
// Stop the listener on the management server. This will cause the client to | ||
// backoff and recreate the stream. | ||
lis.Stop() | ||
|
||
// Wait for the stream to be closed on the server. | ||
<-streamClosed.Done() | ||
|
||
// Restart the listener on the management server to be able to accept | ||
// reconnect attempts from the client. | ||
lis.Restart() | ||
|
||
// Wait for all the previously sent resources to be re-requested. | ||
select { | ||
case <-resourcesRequestedAfterStreamClose: | ||
case <-ctx.Done(): | ||
t.Fatal("timeout when waiting for all resources to be re-requested after stream restart") | ||
} | ||
|
||
if !cmp.Equal(ackVersionsBeforeRestart, ackVersionsAfterRestart) { | ||
t.Fatalf("ackVersionsBeforeRestart: %v and ackVersionsAfterRestart: %v don't match", ackVersionsBeforeRestart, ackVersionsAfterRestart) | ||
} | ||
if _, err := client.EmptyCall(ctx, &testpb.Empty{}, grpc.WaitForReady(true)); err != nil { | ||
t.Fatalf("rpc EmptyCall() failed: %v", err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.