-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathPersistenceLayerTests.java
415 lines (324 loc) · 13.2 KB
/
PersistenceLayerTests.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
414
415
package com.coveros.training.persistence;
import com.coveros.training.library.domainobjects.Book;
import com.coveros.training.library.domainobjects.Borrower;
import com.coveros.training.library.domainobjects.Loan;
import com.coveros.training.authentication.domainobjects.User;
import org.h2.jdbcx.JdbcConnectionPool;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import javax.sql.DataSource;
import java.sql.*;
import java.time.LocalDate;
import java.time.Month;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.when;
/**
* Test that we have a persistence layer that we can easily mock out.
* This exists so we can have more control over the persistence process,
* whether we want to mock those sections, and so on.
*/
public class PersistenceLayerTests {
private final static String DEFAULT_NAME = "alice";
private final static Date BORROW_DATE = Date.valueOf(LocalDate.of(2018, Month.JANUARY, 1));
private static final Book DEFAULT_BOOK = new Book(1, "The DevOps Handbook");
private static final Borrower DEFAULT_BORROWER = new Borrower(1, DEFAULT_NAME);
private static final Loan DEFAULT_LOAN = new Loan(DEFAULT_BOOK, DEFAULT_BORROWER, 1, BORROW_DATE);
private static final User DEFAULT_USER = new User(DEFAULT_NAME, 1);
IPersistenceLayer pl;
@Before
public void initDatabase() {
pl = new PersistenceLayer(getFileBasedDatabaseConnectionPool());
}
/**
* assert that there is a way to store a borrower
* in a database. We don't actually care how this happens,
* we just care that it exists. Here we're adding a
* brand-spanking-new borrower.
*/
@Test
public void testShouldSaveBorrowerToDatabase() {
pl.cleanAndMigrateDatabase();
long id = pl.saveNewBorrower(DEFAULT_BORROWER.name);
assertEquals("The first row in a database gets an index of 1", 1, id);
}
/**
* We ought to be able to update a borrower's details,
* if we know that borrower's id and we have a detail we
* want to change.
*/
@Test
public void testShouldUpdateBorrowerToDatabase() {
// the borrower with id of 1 is "alice"
runRestoreOneBookOneBorrower();
final String newName = "bob";
// change the borrower's name
pl.updateBorrower(1, newName);
String name = pl.getBorrowerName(1).orElseThrow();
assertEquals(newName, name);
}
/**
* If a borrower is in the database, we should be able
* to find that person by their name
*/
@Test
public void testShouldBeAbleToSearchBorrowerByName() {
runRestoreOneBookOneBorrower();
Borrower borrower = pl.searchBorrowerDataByName(DEFAULT_BORROWER.name).orElseThrow();
assertEquals(DEFAULT_BORROWER, borrower);
}
/**
* If a book is in the database, we should be able to find it by title.
*/
@Test
public void testShouldBeAbleToSearchForBooksByTitle() {
runRestoreOneBookOneBorrower();
final Book expectedBook = new Book(1, DEFAULT_BOOK.title);
Book book = pl.searchBooksByTitle(DEFAULT_BOOK.title).orElseThrow();
assertEquals(expectedBook, book);
}
/**
* If a book is in the database, we should be able to find it by id.
*/
@Test
public void testShouldBeAbleToSearchForBooksById() {
// this will set the default book into the database
runRestoreOneBookOneBorrower();
final Book expectedBook = new Book(1, DEFAULT_BOOK.title);
// search for it by id
Book book = pl.searchBooksById(DEFAULT_BOOK.id).orElseThrow();
assertEquals(expectedBook, book);
}
/**
* If a borrower is in the database, we should be able to find it by id.
*/
@Test
public void testShouldBeAbleToSearchForBorrowersById() {
runRestoreOneBookOneBorrower();
Borrower borrower = pl.searchBorrowersById(DEFAULT_BORROWER.id).orElseThrow();
assertEquals(DEFAULT_BORROWER, borrower);
}
@Test
public void testShouldBeAbleToSearchAUserByName() {
runRestoreOneUser();
User user = pl.searchForUserByName(DEFAULT_USER.name).orElseThrow();
assertEquals(DEFAULT_USER, user);
}
@Test
public void testThatWeCanUpdateAUsersPassword() {
runRestoreOneUser();
final String newPassword = "abc123";
pl.updateUserWithPassword(1, newPassword);
final boolean result = pl.areCredentialsValid(DEFAULT_BORROWER.name, newPassword).orElseThrow();
assertTrue(result);
}
@Test
public void testWeCanCreateLoan() {
runRestoreOneBookOneBorrower();
final long loanId = pl.createLoan(DEFAULT_BOOK, DEFAULT_BORROWER, BORROW_DATE);
assertEquals(1, loanId);
}
@Test
public void testWeCanSearchForALoanByABook() {
runRestoreOneLoan();
Loan loan = pl.searchForLoanByBook(DEFAULT_BOOK).orElseThrow();
assertEquals(DEFAULT_LOAN, loan);
}
@Test
public void testWeCanSearchForALoanByABorrower() {
runRestoreOneLoan();
Loan loan = pl.searchForLoanByBorrower(DEFAULT_BORROWER).get().get(0);
assertEquals(DEFAULT_LOAN, loan);
}
@Test
public void testWeCanSaveANewUser() {
pl.cleanAndMigrateDatabase();
long id = pl.saveNewUser(DEFAULT_USER.name);
assertEquals(DEFAULT_USER.id, id);
}
@Test
public void testWeCanSaveABook() {
pl.cleanAndMigrateDatabase();
long id = pl.saveNewBook(DEFAULT_BOOK.title);
assertEquals(DEFAULT_BOOK.id, id);
}
@Test
public void testWeCanCreateALoan() {
runRestoreOneBookOneBorrower();
long id = pl.createLoan(DEFAULT_BOOK, DEFAULT_BORROWER, BORROW_DATE);
assertEquals(DEFAULT_LOAN.id, id);
}
@Test
public void testShouldBeAbleToDeleteBook() {
runRestoreOneBookOneBorrower();
pl.deleteBook(DEFAULT_BOOK.id);
final Optional<Book> book = pl.searchBooksByTitle(DEFAULT_BOOK.title);
assertTrue(book.isEmpty());
}
@Test
public void testShouldBeAbleToDeleteBorrower() {
runRestoreOneBookOneBorrower();
pl.deleteBorrower(DEFAULT_BORROWER.id);
final Optional<Borrower> borrower = pl.searchBorrowerDataByName(DEFAULT_BORROWER.name);
assertTrue(borrower.isEmpty());
}
@Test
public void testShouldListAllBooks() {
runRestoreOneBookOneBorrower();
List<Book> expectedList = Arrays.asList(DEFAULT_BOOK);
final List<Book> books = pl.listAllBooks().orElseThrow();
assertEquals(expectedList, books);
}
@Test
public void testShouldListAvailableBooks() {
runRestoreThreeBooksThreeBorrowers();
// loan out a book
pl.createLoan(pl.searchBooksByTitle("b").orElseThrow(), pl.searchBorrowerDataByName("alice").orElseThrow(), BORROW_DATE);
// create expected book list
final List<Book> expectedBooks = new ArrayList<>();
expectedBooks.add(new Book(1, "a"));
expectedBooks.add(new Book(3, "c"));
// act
final List<Book> books = pl.listAvailableBooks().orElseThrow();
// assert
assertEquals(expectedBooks, books);
}
/**
* If you check them all out - you'll get nothing in the available list.
*/
@Test
public void testShouldListNoAvailableBooksIfAllCheckedOut() {
runRestoreThreeBooksThreeBorrowers();
// loan out a book
pl.createLoan(pl.searchBooksByTitle("a").orElseThrow(), pl.searchBorrowerDataByName("alice").orElseThrow(), BORROW_DATE);
pl.createLoan(pl.searchBooksByTitle("b").orElseThrow(), pl.searchBorrowerDataByName("alice").orElseThrow(), BORROW_DATE);
pl.createLoan(pl.searchBooksByTitle("c").orElseThrow(), pl.searchBorrowerDataByName("alice").orElseThrow(), BORROW_DATE);
// act
final Optional<List<Book>> books = pl.listAvailableBooks();
// assert
assertTrue(books.isEmpty());
}
/**
* If none are checked out - you'll get everything in the available list.
*/
@Test
public void testShouldListAllBooksIfNoneCheckedOut() {
runRestoreThreeBooksThreeBorrowers();
// create expected book list
final List<Book> expectedBooks = new ArrayList<>();
expectedBooks.add(new Book(1, "a"));
expectedBooks.add(new Book(2, "b"));
expectedBooks.add(new Book(3, "c"));
// act
final List<Book> books = pl.listAvailableBooks().orElseThrow();
// assert
assertEquals(expectedBooks, books);
}
@Test
public void testShouldListAllBorrowers() {
runRestoreOneBookOneBorrower();
List<Borrower> expectedList = Arrays.asList(DEFAULT_BORROWER);
final List<Borrower> borrowers = pl.listAllBorrowers().orElseThrow();
assertEquals(expectedList, borrowers);
}
@Test(expected = SqlRuntimeException.class)
public void testThatExecuteInsertOnPreparedStatementHandlesExceptions() throws SQLException {
final PersistenceLayer persistenceLayer = new PersistenceLayer();
final PreparedStatement preparedStatement = Mockito.mock(PreparedStatement.class);
final ResultSet resultSet = Mockito.mock(ResultSet.class);
when(resultSet.next()).thenReturn(false);
when(preparedStatement.getGeneratedKeys()).thenReturn(resultSet);
persistenceLayer.executeInsertOnPreparedStatement(SqlData.createEmpty(), preparedStatement);
}
/**
* Test what happens if no value is returned when we provide an
* id to a particular user.
*/
@Test
public void testGetBorrowerName_WhenNoValueReturned() throws SQLException {
final DataSource dataSource = Mockito.mock(DataSource.class);
final PersistenceLayer persistenceLayer = new PersistenceLayer(dataSource);
final Connection connection = Mockito.mock(Connection.class);
final PreparedStatement preparedStatement = Mockito.mock(PreparedStatement.class);
when(connection.prepareStatement(Mockito.anyString())).thenReturn(preparedStatement);
when(dataSource.getConnection()).thenReturn(connection);
final ResultSet resultSet = Mockito.mock(ResultSet.class);
when(resultSet.next()).thenReturn(false);
when(preparedStatement.executeQuery()).thenReturn(resultSet);
final Optional<String> borrowerName = persistenceLayer.getBorrowerName(1);
assertTrue(borrowerName.isEmpty());
}
/**
* Test what happens when an exception occurs in getBorrowerName
*/
@Test(expected = SqlRuntimeException.class)
public void testGetBorrowerName_WhenExceptionThrown() throws SQLException {
final DataSource dataSource = Mockito.mock(DataSource.class);
when(dataSource.getConnection()).thenThrow(new SQLException());
final PersistenceLayer persistenceLayer = new PersistenceLayer(dataSource);
persistenceLayer.getBorrowerName(1);
}
/**
* An exception of the right type should be thrown
* when an error occurs in the {@link PersistenceLayer#executeUpdateTemplate} method.
*/
@Test(expected = SqlRuntimeException.class)
public void testExecuteUpdateTemplate_ExceptionThrown() throws SQLException {
final DataSource dataSource = Mockito.mock(DataSource.class);
when(dataSource.getConnection()).thenThrow(new SQLException());
final PersistenceLayer persistenceLayer = new PersistenceLayer(dataSource);
persistenceLayer.executeUpdateTemplate("","");
}
/**
* This can be run here, simply put @Test on top.
*/
public void runBackup() {
pl.runBackup("v2_three_books_three_borrowers.sql");
}
/**
* This can be run here, simply put @Test on top.
*/
public void setState() {
runRestoreOneBookOneBorrower();
}
/**
* this will set "alice" with id of 1 into the database as a borrower
* and "The DevOps Handbook" with id of 1 as a book.
*/
private void runRestoreOneBookOneBorrower() {
runRestore("v2_one_book_one_borrower.sql");
}
private void runRestoreOneUser() {
runRestore("v2_one_user.sql");
}
private void runRestoreOneLoan() {
runRestore("v2_one_loan.sql");
}
/**
* This backup has books: a, b, and c. The borrowers are alice, bob, and carol
*/
private void runRestoreThreeBooksThreeBorrowers() {
runRestore("v2_three_books_three_borrowers.sql");
}
private void runRestore(String scriptName) {
pl.runRestore(scriptName);
}
/**
* Get a file-based {@link JdbcConnectionPool}, which makes it easier
* to debug database tests when they are running.
* <p>
* Because we set AUTO_SERVER to true, we can access this database
* from multiple places when it starts.
* <p>
* This method is solely meant to be used by database tests.
*/
private static JdbcConnectionPool getFileBasedDatabaseConnectionPool() {
return JdbcConnectionPool.create(
"jdbc:h2:./build/db/training;AUTO_SERVER=TRUE;MODE=PostgreSQL", "", "");
}
}