Properly assert for ServerAddresses replication request

This commit is contained in:
Chris S. Kim 2022-09-02 11:44:54 -04:00
parent 258c0a1bc1
commit cd51b2f400
1 changed files with 11 additions and 0 deletions

View File

@ -1395,6 +1395,17 @@ func makeClient(t *testing.T, srv *testServer, peerID string) *MockClient {
},
},
},
{
Payload: &pbpeerstream.ReplicationMessage_Request_{
Request: &pbpeerstream.ReplicationMessage_Request{
ResourceURL: pbpeerstream.TypeURLPeeringServerAddresses,
// The PeerID field is only set for the messages coming FROM
// the establishing side and are going to be empty from the
// other side.
PeerID: "",
},
},
},
}
got := []*pbpeerstream.ReplicationMessage{
receivedSub1,