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 pathITDatabaseTest.java
More file actions
233 lines (215 loc) · 9 KB
/
Copy pathITDatabaseTest.java
File metadata and controls
233 lines (215 loc) · 9 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
/*
* Copyright 2017 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.it;
import static com.google.cloud.spanner.testing.EmulatorSpannerHelper.isUsingEmulator;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import com.google.api.client.util.ExponentialBackOff;
import com.google.api.gax.longrunning.OperationFuture;
import com.google.cloud.spanner.Database;
import com.google.cloud.spanner.DatabaseClient;
import com.google.cloud.spanner.DatabaseId;
import com.google.cloud.spanner.DatabaseNotFoundException;
import com.google.cloud.spanner.ErrorCode;
import com.google.cloud.spanner.InstanceId;
import com.google.cloud.spanner.InstanceNotFoundException;
import com.google.cloud.spanner.IntegrationTestEnv;
import com.google.cloud.spanner.KeySet;
import com.google.cloud.spanner.Mutation;
import com.google.cloud.spanner.ParallelIntegrationTest;
import com.google.cloud.spanner.ResultSet;
import com.google.cloud.spanner.SessionNotFoundException;
import com.google.cloud.spanner.SpannerException;
import com.google.cloud.spanner.SpannerException.ResourceNotFoundException;
import com.google.cloud.spanner.Statement;
import com.google.cloud.spanner.TransactionContext;
import com.google.cloud.spanner.TransactionRunner.TransactionCallable;
import com.google.spanner.admin.database.v1.CreateDatabaseMetadata;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import javax.annotation.Nullable;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Integration tests for database admin functionality: DDL etc. */
@Category(ParallelIntegrationTest.class)
@RunWith(JUnit4.class)
public class ITDatabaseTest {
@ClassRule public static IntegrationTestEnv env = new IntegrationTestEnv();
@Test
public void badDdl() {
try {
env.getTestHelper().createTestDatabase("CREATE TABLE T ( Illegal Way To Define A Table )");
fail("Expected exception");
} catch (SpannerException ex) {
assertThat(ex.getErrorCode()).isEqualTo(ErrorCode.INVALID_ARGUMENT);
assertThat(ex.getMessage()).contains("Syntax error on line 1");
}
}
@Test
public void databaseDeletedTest() throws Exception {
// Create a test db, do a query, then delete it and verify that it returns
// DatabaseNotFoundExceptions.
Database db = env.getTestHelper().createTestDatabase();
DatabaseClient client = env.getTestHelper().getClient().getDatabaseClient(db.getId());
try (ResultSet rs = client.singleUse().executeQuery(Statement.of("SELECT 1"))) {
assertThat(rs.next()).isTrue();
assertThat(rs.getLong(0)).isEqualTo(1L);
assertThat(rs.next()).isFalse();
}
// Delete the database.
db.drop();
// We need to wait a little before Spanner actually starts sending DatabaseNotFound errors.
ExponentialBackOff backoff =
new ExponentialBackOff.Builder()
.setInitialIntervalMillis(1000)
.setMaxElapsedTimeMillis(65000)
.setMaxIntervalMillis(5000)
.build();
ResourceNotFoundException notFoundException = null;
long millis;
while ((millis = backoff.nextBackOffMillis()) != ExponentialBackOff.STOP) {
//noinspection BusyWait
Thread.sleep(millis);
// Queries to this database should eventually return DatabaseNotFoundExceptions.
try (ResultSet rs = client.singleUse().executeQuery(Statement.of("SELECT 1"))) {
rs.next();
} catch (DatabaseNotFoundException e) {
// This is what we expect.
notFoundException = e;
break;
}
}
assertThat(notFoundException).isNotNull();
// Now re-create a database with the same name.
OperationFuture<Database, CreateDatabaseMetadata> op =
env.getTestHelper()
.getClient()
.getDatabaseAdminClient()
.createDatabase(
db.getId().getInstanceId().getInstance(),
db.getId().getDatabase(),
Collections.emptyList());
Database newDb = op.get();
// Now try to query using the old session and verify that we also now (eventually) get a
// 'Database not found' error.
backoff =
new ExponentialBackOff.Builder()
.setInitialIntervalMillis(1000)
.setMaxElapsedTimeMillis(65000)
.setMaxIntervalMillis(5000)
.build();
notFoundException = null;
while ((millis = backoff.nextBackOffMillis()) != ExponentialBackOff.STOP) {
//noinspection BusyWait
Thread.sleep(millis);
// Queries to this database should eventually return DatabaseNotFoundExceptions.
try (ResultSet rs = client.singleUse().executeQuery(Statement.of("SELECT 1"))) {
rs.next();
} catch (DatabaseNotFoundException databaseNotFoundException) {
// This is what we expect.
notFoundException = databaseNotFoundException;
break;
} catch (SessionNotFoundException sessionNotFoundException) {
if (isUsingEmulator()) {
// This is expected on the emulator, as the emulator does not see a difference between two
// different databases with the same name. The original session from the first database is
// however not present on the newly created database, which is why we get a
// SessionNotFoundException.
notFoundException = sessionNotFoundException;
break;
} else {
throw sessionNotFoundException;
}
}
}
if (!isUsingEmulator()) {
assertThat(notFoundException).isNotNull();
}
// Now get a new DatabaseClient for the database. This should now result in a valid
// DatabaseClient.
DatabaseClient newClient = env.getTestHelper().getClient().getDatabaseClient(newDb.getId());
try (ResultSet rs = newClient.singleUse().executeQuery(Statement.of("SELECT 1"))) {
assertThat(rs.next()).isTrue();
assertThat(rs.getLong(0)).isEqualTo(1L);
assertThat(rs.next()).isFalse();
}
}
@Test
public void instanceNotFound() {
InstanceId testId = env.getTestHelper().getInstanceId();
InstanceId nonExistingInstanceId =
InstanceId.of(testId.getProject(), testId.getInstance() + "-na");
DatabaseClient client =
env.getTestHelper()
.getClient()
.getDatabaseClient(DatabaseId.of(nonExistingInstanceId, "some-db"));
try (ResultSet rs = client.singleUse().executeQuery(Statement.of("SELECT 1"))) {
rs.next();
fail("missing expected exception");
} catch (InstanceNotFoundException e) {
assertThat(e.getResourceName()).isEqualTo(nonExistingInstanceId.getName());
}
}
@Test
public void testNumericPrimaryKey() {
final String table = "NumericTable";
// Creates table with numeric primary key
Database database =
env.getTestHelper()
.createTestDatabase(
"CREATE TABLE " + table + " (" + "Id NUMERIC NOT NULL" + ") PRIMARY KEY (Id)");
// Writes data into the table
final DatabaseClient databaseClient =
env.getTestHelper().getClient().getDatabaseClient(database.getId());
final ArrayList<Mutation> mutations = new ArrayList<>();
for (int i = 0; i < 5; i++) {
mutations.add(Mutation.newInsertBuilder(table).set("Id").to(new BigDecimal(i + "")).build());
}
databaseClient.write(mutations);
// Reads the data to verify the writes
try (final ResultSet resultSet =
databaseClient.singleUse().read(table, KeySet.all(), Collections.singletonList("Id"))) {
for (int i = 0; resultSet.next(); i++) {
assertEquals(new BigDecimal(i + ""), resultSet.getBigDecimal("Id"));
}
}
// Deletes data from the table, leaving only the Id = 0 row
databaseClient
.readWriteTransaction()
.run(
new TransactionCallable<Object>() {
@Nullable
@Override
public Object run(TransactionContext transaction) throws Exception {
transaction.executeUpdate(Statement.of("DELETE FROM " + table + " WHERE Id > 0"));
return null;
}
});
// Reads the data to verify the deletes only left a single row left
try (final ResultSet resultSet =
databaseClient
.singleUse()
.executeQuery(Statement.of("SELECT COUNT(1) as cnt FROM " + table))) {
resultSet.next();
assertEquals(1L, resultSet.getLong("cnt"));
}
}
}