-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: handle FlowControllerTest thread start variation by polling (#…
…1586) * chore: handle FlowControllerTest thread start variation by polling * chore: add license to new files * chore: use assertThrows and ensure original assertion is cause * chore: simplify assertByPolling to method with 2 args * chore: lint * chore: fix javadoc
- Loading branch information
1 parent
ca4de24
commit 0019c92
Showing
3 changed files
with
178 additions
and
26 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
gax-java/gax/src/test/java/com/google/api/gax/batching/AssertByPolling.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,66 @@ | ||
/* | ||
* 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.batching; | ||
|
||
import static java.util.concurrent.TimeUnit.MILLISECONDS; | ||
|
||
import com.google.common.base.Stopwatch; | ||
import java.time.Duration; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Blocks the current thread to poll the given assertion every 10ms until it's successful or the | ||
* timeout is exceeded. Expected usage: | ||
* | ||
* <pre>{@code | ||
* assertByPolling(Duration.ofSeconds(2), () -> assertThat(...)); | ||
* }</pre> | ||
*/ | ||
public class AssertByPolling { | ||
|
||
public static void assertByPolling(Duration timeout, Runnable assertion) | ||
throws InterruptedException { | ||
Objects.requireNonNull(timeout, "Timeout must not be null"); | ||
Stopwatch stopwatch = Stopwatch.createStarted(); | ||
while (true) { | ||
try { | ||
assertion.run(); | ||
return; // Success | ||
|
||
} catch (AssertionError err) { | ||
if (stopwatch.elapsed(MILLISECONDS) < timeout.toMillis()) { | ||
MILLISECONDS.sleep(10); | ||
} else { | ||
throw new AssertionError("Timeout waiting for successful assertion.", err); | ||
} | ||
} | ||
} | ||
} | ||
} |
86 changes: 86 additions & 0 deletions
86
gax-java/gax/src/test/java/com/google/api/gax/batching/AssertByPollingTest.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,86 @@ | ||
/* | ||
* 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.batching; | ||
|
||
import static com.google.api.gax.batching.AssertByPolling.assertByPolling; | ||
|
||
import com.google.common.truth.Truth; | ||
import java.time.Duration; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
public class AssertByPollingTest { | ||
|
||
@Test | ||
public void testFailsWhenTimeoutExceeded() { | ||
AssertionError error = | ||
Assert.assertThrows( | ||
AssertionError.class, | ||
() -> assertByPolling(Duration.ofNanos(2), () -> Truth.assertThat(1).isAtLeast(2))); | ||
|
||
Throwable cause = error.getCause(); | ||
Truth.assertThat(cause).isInstanceOf(AssertionError.class); | ||
// Error provides original assertion failure that never came true. | ||
Truth.assertThat(cause.getMessage()).contains("expected to be at least"); | ||
} | ||
|
||
@Test | ||
public void testImmediateSuccessSucceedsRegardlessOfTimeout() throws InterruptedException { | ||
Runnable succeedsAfter1ms = | ||
() -> { | ||
try { | ||
TimeUnit.MILLISECONDS.sleep(1); | ||
} catch (InterruptedException ex) { | ||
throw new RuntimeException(ex); | ||
} | ||
}; | ||
Duration timeout = Duration.ofNanos(0); | ||
assertByPolling(timeout, succeedsAfter1ms); | ||
} | ||
|
||
@Test | ||
public void testSucceedsThirdTime() throws InterruptedException { | ||
AtomicInteger attempt = new AtomicInteger(1); | ||
AtomicInteger numFailures = new AtomicInteger(0); | ||
Runnable succeedsThirdTime = | ||
() -> { | ||
if (attempt.getAndIncrement() < 3) { | ||
numFailures.incrementAndGet(); | ||
Assert.fail(); | ||
} | ||
}; | ||
|
||
Duration timeout = Duration.ofMillis(100); | ||
assertByPolling(timeout, succeedsThirdTime); | ||
Truth.assertThat(numFailures.get()).isEqualTo(2); | ||
} | ||
} |
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