|
16 | 16 |
|
17 | 17 | package com.google.cloud.spanner;
|
18 | 18 |
|
| 19 | +import static com.google.cloud.spanner.MockSpannerTestUtil.SELECT1; |
19 | 20 | import static com.google.common.truth.Truth.assertThat;
|
20 | 21 | import static org.junit.Assert.fail;
|
21 | 22 |
|
|
65 | 66 | import java.util.concurrent.Future;
|
66 | 67 | import java.util.concurrent.ScheduledExecutorService;
|
67 | 68 | import java.util.concurrent.ScheduledThreadPoolExecutor;
|
| 69 | +import java.util.concurrent.TimeoutException; |
68 | 70 | import java.util.concurrent.atomic.AtomicBoolean;
|
69 | 71 | import org.junit.After;
|
70 | 72 | import org.junit.AfterClass;
|
@@ -1139,6 +1141,123 @@ public ApiFuture<Long> apply(TransactionContext txn, Long input)
|
1139 | 1141 | assertThat(countTransactionsStarted()).isEqualTo(1);
|
1140 | 1142 | }
|
1141 | 1143 |
|
| 1144 | + @Test |
| 1145 | + public void queryWithoutNext() { |
| 1146 | + DatabaseClient client = spanner.getDatabaseClient(DatabaseId.of("p", "i", "d")); |
| 1147 | + assertThat( |
| 1148 | + client |
| 1149 | + .readWriteTransaction() |
| 1150 | + .run( |
| 1151 | + new TransactionCallable<Long>() { |
| 1152 | + @Override |
| 1153 | + public Long run(TransactionContext transaction) throws Exception { |
| 1154 | + // This will not actually send an RPC, so it will also not request a |
| 1155 | + // transaction. |
| 1156 | + transaction.executeQuery(SELECT1); |
| 1157 | + return transaction.executeUpdate(UPDATE_STATEMENT); |
| 1158 | + } |
| 1159 | + })) |
| 1160 | + .isEqualTo(UPDATE_COUNT); |
| 1161 | + assertThat(mockSpanner.countRequestsOfType(BeginTransactionRequest.class)).isEqualTo(0L); |
| 1162 | + assertThat(mockSpanner.countRequestsOfType(ExecuteSqlRequest.class)).isEqualTo(1L); |
| 1163 | + assertThat(countTransactionsStarted()).isEqualTo(1); |
| 1164 | + } |
| 1165 | + |
| 1166 | + @Test |
| 1167 | + public void queryAsyncWithoutCallback() { |
| 1168 | + DatabaseClient client = spanner.getDatabaseClient(DatabaseId.of("p", "i", "d")); |
| 1169 | + assertThat( |
| 1170 | + client |
| 1171 | + .readWriteTransaction() |
| 1172 | + .run( |
| 1173 | + new TransactionCallable<Long>() { |
| 1174 | + @Override |
| 1175 | + public Long run(TransactionContext transaction) throws Exception { |
| 1176 | + transaction.executeQueryAsync(SELECT1); |
| 1177 | + return transaction.executeUpdate(UPDATE_STATEMENT); |
| 1178 | + } |
| 1179 | + })) |
| 1180 | + .isEqualTo(UPDATE_COUNT); |
| 1181 | + assertThat(mockSpanner.countRequestsOfType(BeginTransactionRequest.class)).isEqualTo(0L); |
| 1182 | + assertThat(mockSpanner.countRequestsOfType(ExecuteSqlRequest.class)).isEqualTo(1L); |
| 1183 | + assertThat(countTransactionsStarted()).isEqualTo(1); |
| 1184 | + } |
| 1185 | + |
| 1186 | + @Test |
| 1187 | + public void readWithoutNext() { |
| 1188 | + DatabaseClient client = spanner.getDatabaseClient(DatabaseId.of("p", "i", "d")); |
| 1189 | + assertThat( |
| 1190 | + client |
| 1191 | + .readWriteTransaction() |
| 1192 | + .run( |
| 1193 | + new TransactionCallable<Long>() { |
| 1194 | + @Override |
| 1195 | + public Long run(TransactionContext transaction) throws Exception { |
| 1196 | + transaction.read("FOO", KeySet.all(), Arrays.asList("ID")); |
| 1197 | + return transaction.executeUpdate(UPDATE_STATEMENT); |
| 1198 | + } |
| 1199 | + })) |
| 1200 | + .isEqualTo(UPDATE_COUNT); |
| 1201 | + assertThat(mockSpanner.countRequestsOfType(BeginTransactionRequest.class)).isEqualTo(0L); |
| 1202 | + assertThat(mockSpanner.countRequestsOfType(ReadRequest.class)).isEqualTo(0L); |
| 1203 | + assertThat(mockSpanner.countRequestsOfType(ExecuteSqlRequest.class)).isEqualTo(1L); |
| 1204 | + assertThat(countTransactionsStarted()).isEqualTo(1); |
| 1205 | + } |
| 1206 | + |
| 1207 | + @Test |
| 1208 | + public void readAsyncWithoutCallback() { |
| 1209 | + DatabaseClient client = spanner.getDatabaseClient(DatabaseId.of("p", "i", "d")); |
| 1210 | + assertThat( |
| 1211 | + client |
| 1212 | + .readWriteTransaction() |
| 1213 | + .run( |
| 1214 | + new TransactionCallable<Long>() { |
| 1215 | + @Override |
| 1216 | + public Long run(TransactionContext transaction) throws Exception { |
| 1217 | + transaction.readAsync("FOO", KeySet.all(), Arrays.asList("ID")); |
| 1218 | + return transaction.executeUpdate(UPDATE_STATEMENT); |
| 1219 | + } |
| 1220 | + })) |
| 1221 | + .isEqualTo(UPDATE_COUNT); |
| 1222 | + assertThat(mockSpanner.countRequestsOfType(BeginTransactionRequest.class)).isEqualTo(0L); |
| 1223 | + assertThat(mockSpanner.countRequestsOfType(ReadRequest.class)).isEqualTo(0L); |
| 1224 | + assertThat(mockSpanner.countRequestsOfType(ExecuteSqlRequest.class)).isEqualTo(1L); |
| 1225 | + assertThat(countTransactionsStarted()).isEqualTo(1); |
| 1226 | + } |
| 1227 | + |
| 1228 | + @Test |
| 1229 | + public void query_ThenUpdate_ThenConsumeResultSet() |
| 1230 | + throws InterruptedException, TimeoutException { |
| 1231 | + DatabaseClient client = spanner.getDatabaseClient(DatabaseId.of("p", "i", "d")); |
| 1232 | + assertThat( |
| 1233 | + client |
| 1234 | + .readWriteTransaction() |
| 1235 | + .run( |
| 1236 | + new TransactionCallable<Long>() { |
| 1237 | + @Override |
| 1238 | + public Long run(TransactionContext transaction) throws Exception { |
| 1239 | + ResultSet rs = transaction.executeQuery(SELECT1); |
| 1240 | + long updateCount = transaction.executeUpdate(UPDATE_STATEMENT); |
| 1241 | + // Consume the result set. |
| 1242 | + while (rs.next()) {} |
| 1243 | + return updateCount; |
| 1244 | + } |
| 1245 | + })) |
| 1246 | + .isEqualTo(UPDATE_COUNT); |
| 1247 | + // The update statement should start the transaction, and the query should use the transaction |
| 1248 | + // id returned by the update. |
| 1249 | + assertThat(mockSpanner.countRequestsOfType(BeginTransactionRequest.class)).isEqualTo(0L); |
| 1250 | + assertThat(mockSpanner.countRequestsOfType(ExecuteSqlRequest.class)).isEqualTo(2L); |
| 1251 | + assertThat(countTransactionsStarted()).isEqualTo(1); |
| 1252 | + List<AbstractMessage> requests = mockSpanner.getRequests(); |
| 1253 | + requests = requests.subList(requests.size() - 3, requests.size()); |
| 1254 | + assertThat(requests.get(0)).isInstanceOf(ExecuteSqlRequest.class); |
| 1255 | + assertThat(((ExecuteSqlRequest) requests.get(0)).getSql()).isEqualTo(UPDATE_STATEMENT.getSql()); |
| 1256 | + assertThat(requests.get(1)).isInstanceOf(ExecuteSqlRequest.class); |
| 1257 | + assertThat(((ExecuteSqlRequest) requests.get(1)).getSql()).isEqualTo(SELECT1.getSql()); |
| 1258 | + assertThat(requests.get(2)).isInstanceOf(CommitRequest.class); |
| 1259 | + } |
| 1260 | + |
1142 | 1261 | private int countRequests(Class<? extends AbstractMessage> requestType) {
|
1143 | 1262 | int count = 0;
|
1144 | 1263 | for (AbstractMessage msg : mockSpanner.getRequests()) {
|
|
0 commit comments