-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathSequenceSampleIT.java
More file actions
144 lines (132 loc) · 4.92 KB
/
SequenceSampleIT.java
File metadata and controls
144 lines (132 loc) · 4.92 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
/*
* Copyright 2022 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.example.spanner;
import static com.example.spanner.SampleRunner.runSample;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import com.google.common.collect.ImmutableList;
import com.google.spanner.admin.database.v1.CreateDatabaseRequest;
import com.google.spanner.admin.database.v1.DatabaseDialect;
import java.util.HashSet;
import java.util.concurrent.TimeUnit;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
/**
* Integration tests for Bit reversed sequence samples for GoogleStandardSql and PostgreSql
* dialects.
*/
@RunWith(Parameterized.class)
public class SequenceSampleIT extends SampleTestBaseV2 {
private static String databaseId;
/**
* Set of dialects for which database has already been created in this test suite. This helps in
* limiting the number of databases created per dialect to one.
*/
private static final HashSet<DatabaseDialect> dbInitializedDialects = new HashSet<>();
@Parameters(name = "dialect = {0}")
public static Iterable<DatabaseDialect> data() {
return ImmutableList.of(DatabaseDialect.GOOGLE_STANDARD_SQL, DatabaseDialect.POSTGRESQL);
}
@Parameter(0)
public static DatabaseDialect dialect;
@Before
public void createTestDatabase() throws Exception {
// Limits number of created databases to one per dialect.
if (dbInitializedDialects.contains(dialect)) {
return;
}
dbInitializedDialects.add(dialect);
databaseId = idGenerator.generateDatabaseId();
CreateDatabaseRequest createDatabaseRequest =
CreateDatabaseRequest.newBuilder()
.setParent(getInstanceName(projectId, instanceId))
.setCreateStatement(getCreateDatabaseStatement(databaseId, dialect))
.setDatabaseDialect(dialect).build();
databaseAdminClient
.createDatabaseAsync(createDatabaseRequest)
.get(10, TimeUnit.MINUTES);
}
@Test
public void createSequence() throws Exception {
String out;
if (dialect == DatabaseDialect.GOOGLE_STANDARD_SQL) {
out =
runSample(
() ->
CreateSequenceSample.createSequence(
projectId, instanceId, databaseId));
} else {
out =
runSample(
() ->
PgCreateSequenceSample.pgCreateSequence(
projectId, instanceId, databaseId));
}
assertTrue(
out.contains(
"Created Seq sequence and Customers table, where the key column "
+ "CustomerId uses the sequence as a default value"));
int insertCount = out.split("Inserted customer record with CustomerId", -1).length - 1;
assertTrue(insertCount > 0 && insertCount % 3 == 0);
assertTrue(out.contains("Number of customer records inserted is: 3"));
}
@Test
public void alterSequence() throws Exception {
String out;
if (dialect == DatabaseDialect.GOOGLE_STANDARD_SQL) {
out =
runSample(
() ->
AlterSequenceSample.alterSequence(
projectId, instanceId, databaseId));
} else {
out =
runSample(
() ->
PgAlterSequenceSample.pgAlterSequence(
projectId, instanceId, databaseId));
}
assertTrue(
out.contains("Altered Seq sequence to skip an inclusive range between 1000 and 5000000"));
int insertCount = out.split("Inserted customer record with CustomerId", -1).length - 1;
assertTrue(insertCount > 0 && insertCount % 3 == 0);
assertTrue(out.contains("Number of customer records inserted is: 3"));
}
@Test
public void dropSequence() throws Exception {
String out;
if (dialect == DatabaseDialect.GOOGLE_STANDARD_SQL) {
out =
runSample(
() ->
DropSequenceSample.dropSequence(projectId, instanceId, databaseId));
} else {
out =
runSample(
() ->
PgDropSequenceSample.pgDropSequence(
projectId, instanceId, databaseId));
}
assertTrue(
out.contains(
"Altered Customers table to drop DEFAULT from "
+ "CustomerId column and dropped the Seq sequence"));
}
}