This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathReadAsyncTest.java
More file actions
440 lines (415 loc) · 16.6 KB
/
Copy pathReadAsyncTest.java
File metadata and controls
440 lines (415 loc) · 16.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.spanner;
import static com.google.cloud.spanner.MockSpannerTestUtil.*;
import static com.google.cloud.spanner.SpannerApiFutures.get;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertThrows;
import static org.junit.Assert.fail;
import com.google.api.core.ApiFuture;
import com.google.api.core.ApiFutures;
import com.google.api.core.SettableApiFuture;
import com.google.api.gax.grpc.testing.LocalChannelProvider;
import com.google.cloud.NoCredentials;
import com.google.cloud.spanner.AsyncResultSet.CallbackResponse;
import com.google.cloud.spanner.MockSpannerServiceImpl.SimulatedExecutionTime;
import com.google.cloud.spanner.MockSpannerServiceImpl.StatementResult;
import com.google.common.collect.ContiguousSet;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import io.grpc.Server;
import io.grpc.Status;
import io.grpc.inprocess.InProcessServerBuilder;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ConcurrentLinkedDeque;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.SynchronousQueue;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class ReadAsyncTest {
private static MockSpannerServiceImpl mockSpanner;
private static Server server;
private static LocalChannelProvider channelProvider;
private static ExecutorService executor;
private Spanner spanner;
private DatabaseClient client;
@BeforeClass
public static void setup() throws Exception {
mockSpanner = new MockSpannerServiceImpl();
mockSpanner.putStatementResult(
StatementResult.query(READ_ONE_KEY_VALUE_STATEMENT, READ_ONE_KEY_VALUE_RESULTSET));
mockSpanner.putStatementResult(
StatementResult.query(READ_ONE_EMPTY_KEY_VALUE_STATEMENT, EMPTY_KEY_VALUE_RESULTSET));
mockSpanner.putStatementResult(
StatementResult.query(
READ_MULTIPLE_KEY_VALUE_STATEMENT, READ_MULTIPLE_KEY_VALUE_RESULTSET));
String uniqueName = InProcessServerBuilder.generateName();
server =
InProcessServerBuilder.forName(uniqueName)
.scheduledExecutorService(new ScheduledThreadPoolExecutor(1))
.addService(mockSpanner)
.build()
.start();
channelProvider = LocalChannelProvider.create(uniqueName);
executor = Executors.newScheduledThreadPool(8);
}
@AfterClass
public static void teardown() throws Exception {
executor.shutdown();
server.shutdown();
server.awaitTermination();
}
@Before
public void before() {
spanner =
SpannerOptions.newBuilder()
.setProjectId(TEST_PROJECT)
.setChannelProvider(channelProvider)
.setCredentials(NoCredentials.getInstance())
.setSessionPoolOption(
SessionPoolOptions.newBuilder().setFailOnSessionLeak().setMinSessions(0).build())
.build()
.getService();
client = spanner.getDatabaseClient(DatabaseId.of(TEST_PROJECT, TEST_INSTANCE, TEST_DATABASE));
}
@After
public void after() {
spanner.close();
mockSpanner.removeAllExecutionTimes();
}
@Test
public void readAsyncPropagatesError() throws Exception {
ApiFuture<Void> result;
try (AsyncResultSet resultSet =
client
.singleUse(TimestampBound.strong())
.readAsync(EMPTY_READ_TABLE_NAME, KeySet.singleKey(Key.of("k99")), READ_COLUMN_NAMES)) {
result =
resultSet.setCallback(
executor,
ignored -> {
throw SpannerExceptionFactory.newSpannerException(
ErrorCode.CANCELLED, "Don't want the data");
});
}
SpannerException e = assertThrows(SpannerException.class, () -> get(result));
assertThat(e.getErrorCode()).isEqualTo(ErrorCode.CANCELLED);
assertThat(e.getMessage()).contains("Don't want the data");
}
@Test
public void emptyReadAsync() throws Exception {
ApiFuture<Void> result;
try (AsyncResultSet resultSet =
client
.singleUse(TimestampBound.strong())
.readAsync(EMPTY_READ_TABLE_NAME, KeySet.singleKey(Key.of("k99")), READ_COLUMN_NAMES)) {
result =
resultSet.setCallback(
executor,
rs -> {
while (true) {
switch (rs.tryNext()) {
case OK:
fail("received unexpected data");
case NOT_READY:
return CallbackResponse.CONTINUE;
case DONE:
assertThat(rs.getType()).isEqualTo(READ_TABLE_TYPE);
return CallbackResponse.DONE;
}
}
});
}
assertThat(result.get()).isNull();
}
@Test
public void pointReadAsync() throws Exception {
ApiFuture<Struct> row =
client
.singleUse(TimestampBound.strong())
.readRowAsync(READ_TABLE_NAME, Key.of("k1"), READ_COLUMN_NAMES);
assertThat(row.get()).isNotNull();
assertThat(row.get().getString(0)).isEqualTo("k1");
assertThat(row.get().getString(1)).isEqualTo("v1");
}
@Test
public void pointReadNotFound() throws Exception {
ApiFuture<Struct> row =
client
.singleUse(TimestampBound.strong())
.readRowAsync(EMPTY_READ_TABLE_NAME, Key.of("k999"), READ_COLUMN_NAMES);
assertThat(row.get()).isNull();
}
@Test
public void invalidDatabase() {
mockSpanner.setCreateSessionExecutionTime(
SimulatedExecutionTime.stickyDatabaseNotFoundException("invalid-database"));
mockSpanner.setBatchCreateSessionsExecutionTime(
SimulatedExecutionTime.stickyDatabaseNotFoundException("invalid-database"));
mockSpanner.freeze();
DatabaseClient invalidClient =
spanner.getDatabaseClient(DatabaseId.of(TEST_PROJECT, TEST_INSTANCE, "invalid-database"));
ApiFuture<Struct> row =
invalidClient
.singleUse(TimestampBound.strong())
.readRowAsync(READ_TABLE_NAME, Key.of("k99"), READ_COLUMN_NAMES);
mockSpanner.unfreeze();
assertThrows(DatabaseNotFoundException.class, () -> get(row));
}
@Test
public void tableNotFound() {
mockSpanner.setStreamingReadExecutionTime(
SimulatedExecutionTime.ofStickyException(
Status.NOT_FOUND
.withDescription("Table not found: BadTableName")
.asRuntimeException()));
ApiFuture<Struct> row =
client
.singleUse(TimestampBound.strong())
.readRowAsync("BadTableName", Key.of("k1"), READ_COLUMN_NAMES);
SpannerException e = assertThrows(SpannerException.class, () -> get(row));
assertThat(e.getErrorCode()).isEqualTo(ErrorCode.NOT_FOUND);
assertThat(e.getMessage()).contains("BadTableName");
}
/**
* Ending a read-only transaction before an asynchronous query that was executed on that
* transaction has finished fetching all rows should keep the session checked out of the pool
* until all the rows have been returned. The session is then automatically returned to the
* session.
*/
@Test
public void closeTransactionBeforeEndOfAsyncQuery() throws Exception {
final BlockingQueue<String> results = new SynchronousQueue<>();
final SettableApiFuture<Boolean> finished = SettableApiFuture.create();
ApiFuture<Void> closed;
DatabaseClientImpl clientImpl = (DatabaseClientImpl) client;
final CountDownLatch dataReceived = new CountDownLatch(1);
try (ReadOnlyTransaction tx = client.readOnlyTransaction()) {
try (AsyncResultSet rs =
tx.readAsync(READ_TABLE_NAME, KeySet.all(), READ_COLUMN_NAMES, Options.bufferRows(1))) {
closed =
rs.setCallback(
executor,
resultSet -> {
try {
while (true) {
switch (resultSet.tryNext()) {
case DONE:
finished.set(true);
return CallbackResponse.DONE;
case NOT_READY:
return CallbackResponse.CONTINUE;
case OK:
dataReceived.countDown();
results.put(resultSet.getString(0));
}
}
} catch (Throwable t) {
finished.setException(t);
return CallbackResponse.DONE;
}
});
}
// Wait until at least one row has been fetched. At that moment there should be one session
// checked out.
dataReceived.await();
}
List<String> resultList = new ArrayList<>();
do {
results.drainTo(resultList);
} while (!finished.isDone() || results.size() > 0);
assertThat(finished.get()).isTrue();
assertThat(resultList).containsExactly("k1", "k2", "k3");
closed.get();
}
@Test
public void readOnlyTransaction() throws Exception {
Statement statement1 =
Statement.of("SELECT * FROM TestTable WHERE Key IN ('k10', 'k11', 'k12')");
Statement statement2 = Statement.of("SELECT * FROM TestTable WHERE Key IN ('k1', 'k2', 'k3");
mockSpanner.putStatementResult(
StatementResult.query(statement1, generateKeyValueResultSet(ContiguousSet.closed(10, 12))));
mockSpanner.putStatementResult(
StatementResult.query(statement2, generateKeyValueResultSet(ContiguousSet.closed(1, 3))));
ApiFuture<List<String>> values1;
ApiFuture<List<String>> values2;
try (ReadOnlyTransaction tx = client.readOnlyTransaction()) {
try (AsyncResultSet rs = tx.executeQueryAsync(statement1)) {
values1 = rs.toListAsync(input -> input.getString("Value"), executor);
}
try (AsyncResultSet rs = tx.executeQueryAsync(statement2)) {
values2 = rs.toListAsync(input -> input.getString("Value"), executor);
}
}
ApiFuture<List<List<String>>> allValuesAsList =
ApiFutures.allAsList(Arrays.asList(values1, values2));
ApiFuture<Iterable<String>> allValues =
ApiFutures.transform(
allValuesAsList,
input ->
Iterables.mergeSorted(
input,
// Return in numerical order (i.e. without the preceding 'v').
Comparator.comparing(o -> Integer.valueOf(o.substring(1)))),
executor);
assertThat(allValues.get()).containsExactly("v1", "v2", "v3", "v10", "v11", "v12");
}
@Test
public void pauseResume() throws Exception {
Statement unevenStatement =
Statement.of("SELECT * FROM TestTable WHERE MOD(CAST(SUBSTR(Key, 2) AS INT64), 2) = 1");
Statement evenStatement =
Statement.of("SELECT * FROM TestTable WHERE MOD(CAST(SUBSTR(Key, 2) AS INT64), 2) = 0");
mockSpanner.putStatementResult(
StatementResult.query(
unevenStatement, generateKeyValueResultSet(ImmutableSet.of(1, 3, 5, 7, 9))));
mockSpanner.putStatementResult(
StatementResult.query(
evenStatement, generateKeyValueResultSet(ImmutableSet.of(2, 4, 6, 8, 10))));
final Object lock = new Object();
ApiFuture<Void> evenFinished;
ApiFuture<Void> unevenFinished;
final CountDownLatch unevenReturnedFirstRow = new CountDownLatch(1);
final Deque<String> allValues = new ConcurrentLinkedDeque<>();
try (ReadOnlyTransaction tx = client.readOnlyTransaction()) {
try (AsyncResultSet evenRs = tx.executeQueryAsync(evenStatement);
AsyncResultSet unevenRs = tx.executeQueryAsync(unevenStatement)) {
unevenFinished =
unevenRs.setCallback(
executor,
resultSet -> {
while (true) {
switch (resultSet.tryNext()) {
case DONE:
return CallbackResponse.DONE;
case NOT_READY:
return CallbackResponse.CONTINUE;
case OK:
synchronized (lock) {
allValues.add(resultSet.getString("Value"));
}
unevenReturnedFirstRow.countDown();
return CallbackResponse.PAUSE;
}
}
});
evenFinished =
evenRs.setCallback(
executor,
resultSet -> {
try {
// Make sure the uneven result set has returned the first before we start the
// even results.
unevenReturnedFirstRow.await();
while (true) {
switch (resultSet.tryNext()) {
case DONE:
return CallbackResponse.DONE;
case NOT_READY:
return CallbackResponse.CONTINUE;
case OK:
synchronized (lock) {
allValues.add(resultSet.getString("Value"));
}
return CallbackResponse.PAUSE;
}
}
} catch (InterruptedException e) {
throw SpannerExceptionFactory.propagateInterrupt(e);
}
});
while (!(evenFinished.isDone() && unevenFinished.isDone())) {
synchronized (lock) {
if (allValues.peekLast() != null) {
if (Integer.parseInt(allValues.peekLast().substring(1)) % 2 == 1) {
evenRs.resume();
} else {
unevenRs.resume();
}
}
if (allValues.size() == 10) {
unevenRs.resume();
evenRs.resume();
}
}
}
}
}
assertThat(ApiFutures.allAsList(Arrays.asList(evenFinished, unevenFinished)).get())
.containsExactly(null, null);
assertThat(allValues)
.containsExactly("v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10");
}
@Test
public void cancel() throws Exception {
final List<String> values = new LinkedList<>();
final CountDownLatch receivedFirstRow = new CountDownLatch(1);
final CountDownLatch cancelled = new CountDownLatch(1);
final ApiFuture<Void> res;
try (AsyncResultSet rs =
client.singleUse().readAsync(READ_TABLE_NAME, KeySet.all(), READ_COLUMN_NAMES)) {
res =
rs.setCallback(
executor,
resultSet -> {
try {
while (true) {
switch (resultSet.tryNext()) {
case DONE:
return CallbackResponse.DONE;
case NOT_READY:
return CallbackResponse.CONTINUE;
case OK:
values.add(resultSet.getString("Value"));
receivedFirstRow.countDown();
cancelled.await();
break;
}
}
} catch (Throwable t) {
return CallbackResponse.DONE;
}
});
receivedFirstRow.await();
rs.cancel();
}
cancelled.countDown();
SpannerException e = assertThrows(SpannerException.class, () -> get(res));
assertThat(e.getErrorCode()).isEqualTo(ErrorCode.CANCELLED);
assertThat(values).containsExactly("v1");
}
private boolean isMultiplexedSessionsEnabled() {
if (spanner.getOptions() == null || spanner.getOptions().getSessionPoolOptions() == null) {
return false;
}
return spanner.getOptions().getSessionPoolOptions().getUseMultiplexedSession();
}
}