-
Notifications
You must be signed in to change notification settings - Fork 18
/
TestDatabase.java
413 lines (347 loc) · 14.5 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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
package edu.berkeley.cs186.database;
import edu.berkeley.cs186.database.categories.*;
import edu.berkeley.cs186.database.common.PredicateOperator;
import edu.berkeley.cs186.database.databox.*;
import edu.berkeley.cs186.database.query.QueryPlan;
import edu.berkeley.cs186.database.table.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.Rule;
import org.junit.experimental.categories.Category;
import org.junit.rules.TemporaryFolder;
import static org.junit.Assert.*;
import java.io.File;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
@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.getValues());
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.getValues());
Record rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
String tempTableName = t1.getTransactionContext().createTempTable(s);
rid = t1.getTransactionContext().addRecord(tempTableName, input.getValues());
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.getValues());
rec = t1.getTransactionContext().getRecord(tableName, rid);
assertEquals(input, rec);
tempTableName = t1.getTransactionContext().createTempTable(s);
rid = t1.getTransactionContext().addRecord(tempTableName, input.getValues());
rec = t1.getTransactionContext().getRecord(tempTableName, rid);
assertEquals(input, rec);
}
try(Transaction t2 = db.beginTransaction()) {
t2.getTransactionContext().addRecord(tempTableName, input.getValues());
}
}
@Test
public void testDatabaseDurablity() {
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.getValues());
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(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
Iterator<Record> iter = t2.query("table1").execute();
assertEquals(Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertEquals(Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testJoinQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
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 = 'John'
queryPlan.select("t1.firstName", PredicateOperator.EQUALS, new StringDataBox("John", 10));
// .. AND t2.firstName = 'Jane'
queryPlan.select("t2.firstName", PredicateOperator.EQUALS, new StringDataBox("Jane", 10));
// SELECT t1.id, t2.id, t1.firstName, t2.firstName, t1.lastName
queryPlan.project(Arrays.asList("t1.id", "t2.id", "t1.firstName", "t2.firstName", "t1.lastName"));
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(Arrays.asList(
new IntDataBox(1),
new IntDataBox(2),
new StringDataBox("John", 10),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testAggQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// FROM table1
QueryPlan queryPlan = t2.query("table1");
// SELECT COUNT(*)
queryPlan.count();
// .. SUM(id)
queryPlan.sum("id");
// .. AVERAGE(id)
queryPlan.average("id");
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(Arrays.asList(
new IntDataBox(2),
new IntDataBox(3),
new FloatDataBox(1.5f)
), iter.next().getValues());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testGroupByQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
t1.commit();
}
try (Transaction t2 = db.beginTransaction()) {
// FROM table1
QueryPlan queryPlan = t2.query("table1");
// GROUP BY lastName
queryPlan.groupBy("lastName");
// SELECT lastName
queryPlan.project(Collections.singletonList("lastName"));
// .. COUNT(*)
queryPlan.count();
// run the query
Iterator<Record> iter = queryPlan.execute();
assertEquals(Arrays.asList(
new StringDataBox("Doe", 10),
new IntDataBox(2)
), iter.next().getValues());
assertFalse(iter.hasNext());
t2.commit();
}
}
@Test
public void testUpdateQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
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(Arrays.asList(
new IntDataBox(11),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertEquals(Arrays.asList(
new IntDataBox(12),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertFalse(iter.hasNext());
}
}
@Test
public void testDeleteQuery() {
try (Transaction t1 = db.beginTransaction()) {
Schema s = new Schema(
Arrays.asList("id", "firstName", "lastName"),
Arrays.asList(Type.intType(), Type.stringType(10), Type.stringType(10))
);
t1.createTable(s, "table1");
t1.insert("table1", Arrays.asList(
new IntDataBox(1),
new StringDataBox("John", 10),
new StringDataBox("Doe", 10)
));
t1.insert("table1", Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
));
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(Arrays.asList(
new IntDataBox(2),
new StringDataBox("Jane", 10),
new StringDataBox("Doe", 10)
), iter.next().getValues());
assertFalse(iter.hasNext());
}
}
}