This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix LRO callables so that the ApiCallContext is always passed through. (
#600)
- Loading branch information
1 parent
eca14d4
commit 8989241
Showing
8 changed files
with
255 additions
and
37 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
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
104 changes: 104 additions & 0 deletions
104
gax/src/test/java/com/google/api/gax/rpc/CheckingAttemptCallableTest.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,104 @@ | ||
/* | ||
* Copyright 2016 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.rpc; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
import com.google.api.core.SettableApiFuture; | ||
import com.google.api.gax.retrying.RetrySettings; | ||
import com.google.api.gax.retrying.RetryingFuture; | ||
import com.google.api.gax.retrying.TimedAttemptSettings; | ||
import com.google.api.gax.rpc.testing.FakeCallContext; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.ArgumentCaptor; | ||
import org.mockito.Mock; | ||
import org.mockito.Mockito; | ||
import org.mockito.invocation.InvocationOnMock; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
import org.mockito.stubbing.Answer; | ||
import org.threeten.bp.Duration; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class CheckingAttemptCallableTest { | ||
@Mock UnaryCallable<String, String> mockInnerCallable; | ||
ArgumentCaptor<ApiCallContext> capturedCallContext; | ||
@Mock RetryingFuture<String> mockExternalFuture; | ||
TimedAttemptSettings currentAttemptSettings; | ||
|
||
@Before | ||
public void setUp() { | ||
capturedCallContext = ArgumentCaptor.forClass(ApiCallContext.class); | ||
Mockito.when(mockInnerCallable.futureCall(Mockito.<String>any(), capturedCallContext.capture())) | ||
.thenReturn(SettableApiFuture.<String>create()); | ||
|
||
currentAttemptSettings = | ||
TimedAttemptSettings.newBuilder() | ||
.setGlobalSettings(RetrySettings.newBuilder().build()) | ||
.setAttemptCount(0) | ||
.setFirstAttemptStartTimeNanos(0) | ||
.setRetryDelay(Duration.ofSeconds(1)) | ||
.setRandomizedRetryDelay(Duration.ofSeconds(1)) | ||
.setRpcTimeout(Duration.ZERO) | ||
.build(); | ||
|
||
Mockito.when(mockExternalFuture.getAttemptSettings()) | ||
.thenAnswer( | ||
new Answer<TimedAttemptSettings>() { | ||
@Override | ||
public TimedAttemptSettings answer(InvocationOnMock invocation) throws Throwable { | ||
return currentAttemptSettings; | ||
} | ||
}); | ||
} | ||
|
||
@Test | ||
public void testRpcTimeout() { | ||
CheckingAttemptCallable<String, String> callable = | ||
new CheckingAttemptCallable<>(mockInnerCallable, FakeCallContext.createDefault()); | ||
callable.setExternalFuture(mockExternalFuture); | ||
|
||
// Make sure that the rpc timeout is set | ||
Duration timeout = Duration.ofSeconds(10); | ||
currentAttemptSettings = currentAttemptSettings.toBuilder().setRpcTimeout(timeout).build(); | ||
|
||
callable.call(); | ||
|
||
assertThat(capturedCallContext.getValue().getTimeout()).isEqualTo(timeout); | ||
|
||
// Make sure that subsequent attempts can extend the time out | ||
Duration longerTimeout = Duration.ofSeconds(20); | ||
currentAttemptSettings = | ||
currentAttemptSettings.toBuilder().setRpcTimeout(longerTimeout).build(); | ||
callable.call(); | ||
assertThat(capturedCallContext.getValue().getTimeout()).isEqualTo(longerTimeout); | ||
} | ||
} |
Oops, something went wrong.