|
17 | 17 | package com.google.cloud.spanner;
|
18 | 18 |
|
19 | 19 | import static com.google.common.truth.Truth.assertThat;
|
| 20 | +import static org.junit.Assert.assertEquals; |
20 | 21 | import static org.junit.Assert.fail;
|
21 | 22 |
|
| 23 | +import com.google.api.core.ApiClock; |
22 | 24 | import com.google.common.base.Stopwatch;
|
23 | 25 | import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
24 | 26 | import com.google.protobuf.Duration;
|
|
42 | 44 |
|
43 | 45 | @RunWith(JUnit4.class)
|
44 | 46 | public class SpannerRetryHelperTest {
|
| 47 | + private static class FakeClock implements ApiClock { |
| 48 | + private long currentTime; |
| 49 | + |
| 50 | + @Override |
| 51 | + public long nanoTime() { |
| 52 | + return TimeUnit.NANOSECONDS.convert(currentTime, TimeUnit.MILLISECONDS); |
| 53 | + } |
| 54 | + |
| 55 | + @Override |
| 56 | + public long millisTime() { |
| 57 | + return currentTime; |
| 58 | + } |
| 59 | + } |
| 60 | + |
| 61 | + @Test |
| 62 | + public void testRetryDoesNotTimeoutAfterTenMinutes() { |
| 63 | + final FakeClock clock = new FakeClock(); |
| 64 | + final AtomicInteger attempts = new AtomicInteger(); |
| 65 | + Callable<Integer> callable = |
| 66 | + new Callable<Integer>() { |
| 67 | + @Override |
| 68 | + public Integer call() { |
| 69 | + if (attempts.getAndIncrement() == 0) { |
| 70 | + clock.currentTime += TimeUnit.MILLISECONDS.convert(10L, TimeUnit.MINUTES); |
| 71 | + throw SpannerExceptionFactory.newSpannerException(ErrorCode.ABORTED, "test"); |
| 72 | + } |
| 73 | + return 1 + 1; |
| 74 | + } |
| 75 | + }; |
| 76 | + assertEquals( |
| 77 | + 2, |
| 78 | + SpannerRetryHelper.runTxWithRetriesOnAborted( |
| 79 | + callable, SpannerRetryHelper.txRetrySettings, clock) |
| 80 | + .intValue()); |
| 81 | + } |
| 82 | + |
| 83 | + @Test |
| 84 | + public void testRetryDoesFailAfterMoreThanOneDay() { |
| 85 | + final FakeClock clock = new FakeClock(); |
| 86 | + final AtomicInteger attempts = new AtomicInteger(); |
| 87 | + Callable<Integer> callable = |
| 88 | + new Callable<Integer>() { |
| 89 | + @Override |
| 90 | + public Integer call() { |
| 91 | + if (attempts.getAndIncrement() == 0) { |
| 92 | + clock.currentTime += TimeUnit.MILLISECONDS.convert(25L, TimeUnit.HOURS); |
| 93 | + throw SpannerExceptionFactory.newSpannerException(ErrorCode.ABORTED, "test"); |
| 94 | + } |
| 95 | + return 1 + 1; |
| 96 | + } |
| 97 | + }; |
| 98 | + try { |
| 99 | + SpannerRetryHelper.runTxWithRetriesOnAborted( |
| 100 | + callable, SpannerRetryHelper.txRetrySettings, clock); |
| 101 | + fail("missing expected exception"); |
| 102 | + } catch (SpannerException e) { |
| 103 | + assertEquals(ErrorCode.ABORTED, e.getErrorCode()); |
| 104 | + assertEquals(1, attempts.get()); |
| 105 | + } |
| 106 | + } |
45 | 107 |
|
46 | 108 | @Test
|
47 | 109 | public void testCancelledContext() {
|
|
0 commit comments