-
Notifications
You must be signed in to change notification settings - Fork 31
/
TestDatabase.java
309 lines (262 loc) · 10.9 KB
/
TestDatabase.java
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
package edu.berkeley.cs186.database;
import edu.berkeley.cs186.database.categories.Proj99Tests;
import edu.berkeley.cs186.database.categories.SystemTests;
import edu.berkeley.cs186.database.common.PredicateOperator;
import edu.berkeley.cs186.database.databox.DataBox;
import edu.berkeley.cs186.database.databox.IntDataBox;
import edu.berkeley.cs186.database.databox.StringDataBox;
import edu.berkeley.cs186.database.databox.Type;
import edu.berkeley.cs186.database.query.QueryPlan;
import edu.berkeley.cs186.database.table.Record;
import edu.berkeley.cs186.database.table.RecordId;
import edu.berkeley.cs186.database.table.Schema;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.rules.TemporaryFolder;
import java.io.File;
import java.util.Iterator;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
@Category({Proj99Tests.class, SystemTests.class})
public class TestDatabase {
private static final String TestDir = "testDatabase";
private Database db;
private String filename;
@Rule
public TemporaryFolder tempFolder = new TemporaryFolder();
@Before
public void beforeEach() throws Exception {
File testDir = tempFolder.newFolder(TestDir);
this.filename = testDir.getAbsolutePath();
this.db = new Database(filename, 32);
this.db.setWorkMem(4);
try(Transaction t = this.db.beginTransaction()) {
t.dropAllTables();
}
}
@After
public void afterEach() {
try(Transaction t = this.db.beginTransaction()) {
t.dropAllTables();
}
this.db.close();
}
@Test
public void testTableCreate() {
Schema s = TestUtils.createSchemaWithAllTypes();
try(Transaction t = this.db.beginTransaction()) {
t.createTable(s, "testTable1");
}
}
@Test
public void testTransactionBegin() {
Schema s = TestUtils.createSchemaWithAllTypes();
Record input = TestUtils.createRecordWithAllTypes();
String tableName = "testTable1";
try(Transaction t1 = db.beginTransaction()) {
t1.createTable(s, tableName);
RecordId rid = t1.getTransactionContext().addRecord(tableName, input);
t1.getTransactionContext().getRecord(tableName, rid);
}
}
@Test
public void testTransactionTempTable() {
Schema s = TestUtils.createSchemaWithAllTypes();
Record input = TestUtils.createRecordWithAllTypes();
String tableName = "testTable1";
try(Transaction t1 = db.beginTransaction()) {
t1.createTable(s, tableName);
RecordId rid = t1.getTransactionContext().addRecord(tableName, input);
Record rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
String tempTableName = t1.getTransactionContext().createTempTable(s);
rid = t1.getTransactionContext().addRecord(tempTableName, input);
rec = t1.getTransactionContext().getRecord(tempTableName, rid);
assertEquals(input, rec);
}
}
@Test(expected = DatabaseException.class)
public void testTransactionTempTable2() {
Schema s = TestUtils.createSchemaWithAllTypes();
Record input = TestUtils.createRecordWithAllTypes();
String tableName = "testTable1";
RecordId rid;
Record rec;
String tempTableName;
try(Transaction t1 = db.beginTransaction()) {
t1.createTable(s, tableName);
rid = t1.getTransactionContext().addRecord(tableName, input);
rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
tempTableName = t1.getTransactionContext().createTempTable(s);
rid = t1.getTransactionContext().addRecord(tempTableName, input);
rec = t1.getTransactionContext().getRecord(tempTableName, rid);
assertEquals(input, rec);
}
try(Transaction t2 = db.beginTransaction()) {
t2.insert(tempTableName, input);
}
}
@Test
public void testDatabaseDurability() {
Schema s = TestUtils.createSchemaWithAllTypes();
Record input = TestUtils.createRecordWithAllTypes();
String tableName = "testTable1";
RecordId rid;
Record rec;
try(Transaction t1 = db.beginTransaction()) {
t1.createTable(s, tableName);
rid = t1.getTransactionContext().addRecord(tableName, input);
rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
}
db.close();
db = new Database(this.filename, 32);
try(Transaction t1 = db.beginTransaction()) {
rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
}
}
@Test
public void testREADMESample() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1",1, "Jane", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
Iterator<Record> iter = t2.query("table1").execute();
assertEquals(new Record(1, "Jane", "Doe"), iter.next());
assertEquals(new Record(2, "John", "Doe"), iter.next());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testJoinQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1", 1, "Jane", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// FROM table1 AS t1
QueryPlan queryPlan = t2.query("table1", "t1");
// JOIN table1 AS t2 ON t1.lastName = t2.lastName
queryPlan.join("table1", "t2", "t1.lastName", "t2.lastName");
// WHERE t1.firstName = 'Jane'
queryPlan.select("t1.firstName", PredicateOperator.EQUALS, "Jane");
// .. AND t2.firstName = 'John'
queryPlan.select("t2.firstName", PredicateOperator.EQUALS, "John");
// SELECT t1.id, t2.id, t1.firstName, t2.firstName, t1.lastName
queryPlan.project("t1.id", "t2.id", "t1.firstName", "t2.firstName", "t1.lastName");
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(new Record(1, 2, "Jane", "John", "Doe"), iter.next());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testAggQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1", 1, "Jack", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// SELECT COUNT(*), SUM(id), AVG(id) FROM table1;
QueryPlan queryPlan = t2.query("table1");
queryPlan.project("COUNT(*)", "SUM(id)", "AVG(id)");
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(new Record(2, 3, 1.5f), iter.next());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testGroupByQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1", 1, "Jane", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// SELECT lastName, COUNT(*) FROM table1 GROUP BY lastName;
QueryPlan queryPlan = t2.query("table1");
queryPlan.project("lastName", "COUNT(*)");
queryPlan.groupBy("lastName");
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(new Record("Doe", 2), iter.next());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testUpdateQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1", 1, "Jack", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// UPDATE table1 SET id = id + 10 WHERE lastName = 'Doe'
t2.update("table1", "id", (DataBox x) -> new IntDataBox(x.getInt() + 10),
"lastName", PredicateOperator.EQUALS, new StringDataBox("Doe", 10));
Iterator<Record> iter = t2.query("table1").execute();
assertEquals(new Record(11, "Jack", "Doe"), iter.next());
assertEquals(new Record(12, "John", "Doe"), iter.next());
assertFalse(iter.hasNext());
}
}
@Test
public void testDeleteQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema()
.add("id", Type.intType())
.add("firstName", Type.stringType(10))
.add("lastName", Type.stringType(10));
t1.createTable(s, "table1");
t1.insert("table1", 1, "Jane", "Doe");
t1.insert("table1", 2, "John", "Doe");
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// DELETE FROM table1 WHERE id <> 2;
t2.delete("table1", "id", PredicateOperator.NOT_EQUALS, new IntDataBox(2));
Iterator<Record> iter = t2.query("table1").execute();
assertEquals(new Record(2, "John", "Doe"), iter.next());
assertFalse(iter.hasNext());
}
}
}