-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix race condition in GrpcDirectStreamController (#1537)
* fix: Fix race condition in GrpcDirectStreamController * add copyright
- Loading branch information
Showing
2 changed files
with
160 additions
and
4 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
157 changes: 157 additions & 0 deletions
157
gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/GrpcDirectStreamControllerTest.java
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,157 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
* met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following disclaimer | ||
* in the documentation and/or other materials provided with the | ||
* distribution. | ||
* * Neither the name of Google LLC nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package com.google.api.gax.grpc; | ||
|
||
import com.google.api.gax.core.NoCredentialsProvider; | ||
import com.google.api.gax.grpc.testing.FakeServiceGrpc; | ||
import com.google.api.gax.retrying.RetrySettings; | ||
import com.google.api.gax.retrying.StreamResumptionStrategy; | ||
import com.google.api.gax.rpc.Callables; | ||
import com.google.api.gax.rpc.ClientContext; | ||
import com.google.api.gax.rpc.DeadlineExceededException; | ||
import com.google.api.gax.rpc.FixedTransportChannelProvider; | ||
import com.google.api.gax.rpc.ServerStreamingCallSettings; | ||
import com.google.api.gax.rpc.ServerStreamingCallable; | ||
import com.google.api.gax.rpc.StatusCode; | ||
import com.google.api.gax.rpc.StubSettings; | ||
import com.google.type.Color; | ||
import com.google.type.Money; | ||
import io.grpc.ManagedChannel; | ||
import io.grpc.ManagedChannelBuilder; | ||
import io.grpc.Server; | ||
import io.grpc.ServerBuilder; | ||
import io.grpc.Status; | ||
import io.grpc.stub.StreamObserver; | ||
import javax.annotation.Nonnull; | ||
import javax.annotation.Nullable; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.JUnit4; | ||
import org.threeten.bp.Duration; | ||
|
||
@RunWith(JUnit4.class) | ||
public class GrpcDirectStreamControllerTest { | ||
|
||
@Test | ||
public void testRetryNoRaceCondition() throws Exception { | ||
Server server = ServerBuilder.forPort(1234).addService(new FakeService()).build(); | ||
server.start(); | ||
|
||
ManagedChannel channel = | ||
ManagedChannelBuilder.forAddress("localhost", 1234).usePlaintext().build(); | ||
|
||
StreamResumptionStrategy<Color, Money> resumptionStrategy = | ||
new StreamResumptionStrategy<Color, Money>() { | ||
@Nonnull | ||
@Override | ||
public StreamResumptionStrategy<Color, Money> createNew() { | ||
return this; | ||
} | ||
|
||
@Nonnull | ||
@Override | ||
public Money processResponse(Money response) { | ||
return response; | ||
} | ||
|
||
@Nullable | ||
@Override | ||
public Color getResumeRequest(Color originalRequest) { | ||
return originalRequest; | ||
} | ||
|
||
@Override | ||
public boolean canResume() { | ||
return true; | ||
} | ||
}; | ||
|
||
// Set up retry settings. Set total timeout to 1 minute to limit the total runtime of this test. | ||
// Set retry delay to 1 ms so the retries will be scheduled in a loop with no delays. | ||
// Set max attempt to max so there could be as many retries as possible. | ||
ServerStreamingCallSettings<Color, Money> callSettigs = | ||
ServerStreamingCallSettings.<Color, Money>newBuilder() | ||
.setResumptionStrategy(resumptionStrategy) | ||
.setRetryableCodes(StatusCode.Code.DEADLINE_EXCEEDED) | ||
.setRetrySettings( | ||
RetrySettings.newBuilder() | ||
.setTotalTimeout(Duration.ofMinutes(1)) | ||
.setMaxAttempts(Integer.MAX_VALUE) | ||
.setInitialRetryDelay(Duration.ofMillis(1)) | ||
.setMaxRetryDelay(Duration.ofMillis(1)) | ||
.build()) | ||
.build(); | ||
|
||
StubSettings.Builder builder = | ||
new StubSettings.Builder() { | ||
@Override | ||
public StubSettings build() { | ||
return new StubSettings(this) { | ||
@Override | ||
public Builder toBuilder() { | ||
throw new IllegalStateException(); | ||
} | ||
}; | ||
} | ||
}; | ||
|
||
builder | ||
.setEndpoint("localhost:1234") | ||
.setCredentialsProvider(NoCredentialsProvider.create()) | ||
.setTransportChannelProvider( | ||
FixedTransportChannelProvider.create(GrpcTransportChannel.create(channel))); | ||
|
||
ServerStreamingCallable<Color, Money> callable = | ||
GrpcCallableFactory.createServerStreamingCallable( | ||
GrpcCallSettings.create(FakeServiceGrpc.METHOD_SERVER_STREAMING_RECOGNIZE), | ||
callSettigs, | ||
ClientContext.create(builder.build())); | ||
|
||
ServerStreamingCallable<Color, Money> retrying = | ||
Callables.retrying(callable, callSettigs, ClientContext.create(builder.build())); | ||
|
||
Color request = Color.newBuilder().getDefaultInstanceForType(); | ||
|
||
try { | ||
for (Money money : retrying.call(request, GrpcCallContext.createDefault())) {} | ||
|
||
} catch (DeadlineExceededException e) { | ||
// Ignore this error | ||
} | ||
} | ||
|
||
class FakeService extends FakeServiceGrpc.FakeServiceImplBase { | ||
@Override | ||
public void serverStreamingRecognize(Color request, StreamObserver<Money> responseObserver) { | ||
responseObserver.onNext(Money.getDefaultInstance()); | ||
responseObserver.onError(Status.DEADLINE_EXCEEDED.asException()); | ||
} | ||
} | ||
} |