38
38
import com .google .cloud .spanner .TransactionRunner ;
39
39
import com .google .cloud .spanner .TransactionRunner .TransactionCallable ;
40
40
import java .util .Arrays ;
41
+ import org .junit .Before ;
41
42
import org .junit .BeforeClass ;
42
43
import org .junit .ClassRule ;
43
44
import org .junit .Test ;
@@ -55,10 +56,13 @@ public final class ITDMLTest {
55
56
/** Sequence for assigning unique keys to test cases. */
56
57
private static int seq ;
57
58
59
+ /** Id prefix per test case. */
60
+ private static int id ;
61
+
58
62
private static final String INSERT_DML =
59
- "INSERT INTO T (k, v) VALUES ('boo1', 1), ('boo2', 2), ('boo3', 3), ('boo4', 4);" ;
60
- private static final String UPDATE_DML = "UPDATE T SET T.V = 100 WHERE T.K LIKE 'boo%';" ;
61
- private static final String DELETE_DML = "DELETE FROM T WHERE T.K like 'boo%';" ;
63
+ "INSERT INTO T (k, v) VALUES ('%d- boo1', 1), ('%d- boo2', 2), ('%d- boo3', 3), ('%d- boo4', 4);" ;
64
+ private static final String UPDATE_DML = "UPDATE T SET T.V = 100 WHERE T.K LIKE '%d- boo% %';" ;
65
+ private static final String DELETE_DML = "DELETE FROM T WHERE T.K like '%d- boo% %';" ;
62
66
private static final long DML_COUNT = 4 ;
63
67
64
68
private static boolean throwAbortOnce = false ;
@@ -75,10 +79,27 @@ public static void setUpDatabase() {
75
79
client = env .getTestHelper ().getDatabaseClient (db );
76
80
}
77
81
82
+ @ Before
83
+ public void increaseTestId () {
84
+ id ++;
85
+ }
86
+
78
87
private static String uniqueKey () {
79
88
return "k" + seq ++;
80
89
}
81
90
91
+ private String insertDml () {
92
+ return String .format (INSERT_DML , id , id , id , id );
93
+ }
94
+
95
+ private String updateDml () {
96
+ return String .format (UPDATE_DML , id );
97
+ }
98
+
99
+ private String deleteDml () {
100
+ return String .format (DELETE_DML , id );
101
+ }
102
+
82
103
private void executeUpdate (long expectedCount , final String ... stmts ) {
83
104
final TransactionCallable <Long > callable =
84
105
new TransactionCallable <Long >() {
@@ -106,7 +127,7 @@ public Long run(TransactionContext transaction) {
106
127
public void abortOnceShouldSucceedAfterRetry () {
107
128
try {
108
129
throwAbortOnce = true ;
109
- executeUpdate (DML_COUNT , INSERT_DML );
130
+ executeUpdate (DML_COUNT , insertDml () );
110
131
assertThat (throwAbortOnce ).isFalse ();
111
132
} catch (AbortedException e ) {
112
133
fail ("Abort Exception not caught and retried" );
@@ -115,55 +136,55 @@ public void abortOnceShouldSucceedAfterRetry() {
115
136
116
137
@ Test
117
138
public void partitionedDML () {
118
- executeUpdate (DML_COUNT , INSERT_DML );
139
+ executeUpdate (DML_COUNT , insertDml () );
119
140
assertThat (
120
141
client
121
142
.singleUse (TimestampBound .strong ())
122
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" ))
143
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" ))
123
144
.getLong (0 ))
124
145
.isEqualTo (1 );
125
146
126
- long rowCount = client .executePartitionedUpdate (Statement .of (UPDATE_DML ));
147
+ long rowCount = client .executePartitionedUpdate (Statement .of (updateDml () ));
127
148
// Note: With PDML there is a possibility of network replay or partial update to occur, causing
128
149
// this assert to fail. We should remove this assert if it is a recurring failure in IT tests.
129
150
assertThat (rowCount ).isEqualTo (DML_COUNT );
130
151
assertThat (
131
152
client
132
153
.singleUse (TimestampBound .strong ())
133
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" ))
154
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" ))
134
155
.getLong (0 ))
135
156
.isEqualTo (100 );
136
157
137
- rowCount = client .executePartitionedUpdate (Statement .of (DELETE_DML ));
158
+ rowCount = client .executePartitionedUpdate (Statement .of (deleteDml () ));
138
159
assertThat (rowCount ).isEqualTo (DML_COUNT );
139
160
assertThat (
140
161
client
141
162
.singleUse (TimestampBound .strong ())
142
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" )))
163
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" )))
143
164
.isNull ();
144
165
}
145
166
146
167
@ Test
147
168
public void standardDML () {
148
- executeUpdate (DML_COUNT , INSERT_DML );
169
+ executeUpdate (DML_COUNT , insertDml () );
149
170
assertThat (
150
171
client
151
172
.singleUse (TimestampBound .strong ())
152
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" ))
173
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" ))
153
174
.getLong (0 ))
154
175
.isEqualTo (1 );
155
- executeUpdate (DML_COUNT , UPDATE_DML );
176
+ executeUpdate (DML_COUNT , updateDml () );
156
177
assertThat (
157
178
client
158
179
.singleUse (TimestampBound .strong ())
159
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" ))
180
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" ))
160
181
.getLong (0 ))
161
182
.isEqualTo (100 );
162
- executeUpdate (DML_COUNT , DELETE_DML );
183
+ executeUpdate (DML_COUNT , deleteDml () );
163
184
assertThat (
164
185
client
165
186
.singleUse (TimestampBound .strong ())
166
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" )))
187
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" )))
167
188
.isNull ();
168
189
}
169
190
@@ -182,44 +203,48 @@ public void standardDMLWithError() {
182
203
183
204
@ Test
184
205
public void standardDMLWithDuplicates () {
185
- executeUpdate (DML_COUNT , INSERT_DML );
206
+ executeUpdate (DML_COUNT , insertDml () );
186
207
187
208
executeUpdate (
188
209
4 ,
189
- "UPDATE T SET v = 200 WHERE k = 'boo1';" ,
190
- "UPDATE T SET v = 300 WHERE k = 'boo1';" ,
191
- "UPDATE T SET v = 400 WHERE k = 'boo1';" ,
192
- "UPDATE T SET v = 500 WHERE k = 'boo1';" );
210
+ String . format ( "UPDATE T SET v = 200 WHERE k = '%d- boo1';" , id ) ,
211
+ String . format ( "UPDATE T SET v = 300 WHERE k = '%d- boo1';" , id ) ,
212
+ String . format ( "UPDATE T SET v = 400 WHERE k = '%d- boo1';" , id ) ,
213
+ String . format ( "UPDATE T SET v = 500 WHERE k = '%d- boo1';" , id ) );
193
214
assertThat (
194
215
client
195
216
.singleUse (TimestampBound .strong ())
196
- .readRow ("T" , Key .of (" boo1" ), Arrays .asList ("V" ))
217
+ .readRow ("T" , Key .of (String . format ( "%d- boo1", id ) ), Arrays .asList ("V" ))
197
218
.getLong (0 ))
198
219
.isEqualTo (500 );
199
220
200
- executeUpdate (DML_COUNT , DELETE_DML , DELETE_DML );
221
+ executeUpdate (DML_COUNT , deleteDml (), deleteDml () );
201
222
}
202
223
203
224
@ Test
204
225
public void standardDMLReadYourWrites () {
205
- executeUpdate (DML_COUNT , INSERT_DML );
226
+ executeUpdate (DML_COUNT , insertDml () );
206
227
207
228
final TransactionCallable <Void > callable =
208
229
new TransactionCallable <Void >() {
209
230
@ Override
210
231
public Void run (TransactionContext transaction ) {
211
232
long rowCount =
212
- transaction .executeUpdate (Statement .of ("UPDATE T SET v = v * 2 WHERE k = 'boo2';" ));
233
+ transaction .executeUpdate (
234
+ Statement .of (String .format ("UPDATE T SET v = v * 2 WHERE k = '%d-boo2';" , id )));
213
235
assertThat (rowCount ).isEqualTo (1 );
214
- assertThat (transaction .readRow ("T" , Key .of ("boo2" ), Arrays .asList ("v" )).getLong (0 ))
236
+ assertThat (
237
+ transaction
238
+ .readRow ("T" , Key .of (String .format ("%d-boo2" , id )), Arrays .asList ("v" ))
239
+ .getLong (0 ))
215
240
.isEqualTo (2 * 2 );
216
241
return null ;
217
242
}
218
243
};
219
244
TransactionRunner runner = client .readWriteTransaction ();
220
245
runner .run (callable );
221
246
222
- executeUpdate (DML_COUNT , DELETE_DML );
247
+ executeUpdate (DML_COUNT , deleteDml () );
223
248
}
224
249
225
250
@ Test
@@ -233,7 +258,7 @@ class UserException extends Exception {
233
258
new TransactionCallable <Void >() {
234
259
@ Override
235
260
public Void run (TransactionContext transaction ) throws UserException {
236
- long rowCount = transaction .executeUpdate (Statement .of (INSERT_DML ));
261
+ long rowCount = transaction .executeUpdate (Statement .of (insertDml () ));
237
262
assertThat (rowCount ).isEqualTo (DML_COUNT );
238
263
throw new UserException ("failing to commit" );
239
264
}
@@ -252,7 +277,10 @@ public Void run(TransactionContext transaction) throws UserException {
252
277
ResultSet resultSet =
253
278
client
254
279
.singleUse (TimestampBound .strong ())
255
- .read ("T" , KeySet .range (KeyRange .prefix (Key .of ("boo" ))), Arrays .asList ("K" ));
280
+ .read (
281
+ "T" ,
282
+ KeySet .range (KeyRange .prefix (Key .of (String .format ("%d-boo" , id )))),
283
+ Arrays .asList ("K" ));
256
284
assertThat (resultSet .next ()).isFalse ();
257
285
}
258
286
@@ -312,8 +340,8 @@ public Long run(TransactionContext transaction) {
312
340
313
341
@ Test
314
342
public void standardDMLWithExecuteSQL () {
315
- executeQuery (DML_COUNT , INSERT_DML );
343
+ executeQuery (DML_COUNT , insertDml () );
316
344
// checks for multi-stmts within a txn, therefore also verifying seqNo.
317
- executeQuery (DML_COUNT * 2 , UPDATE_DML , DELETE_DML );
345
+ executeQuery (DML_COUNT * 2 , updateDml (), deleteDml () );
318
346
}
319
347
}
0 commit comments