-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInitialiseDBTest.java
49 lines (27 loc) · 925 Bytes
/
InitialiseDBTest.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
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.io.IOException;
import java.sql.SQLException;
import org.junit.Before;
import org.junit.Test;
public class InitialiseDBTest {
String dbFileName = "test-movies";
String dbUrl = "jdbc:sqlite:"+dbFileName;
String testScriptFilePath = "tests/test_script.sql";
File testScript = new File("tests/test_script.sql");
@Before
public void createDatabaseFile() throws SQLException, IOException{
InitialiseDB.initialiseDB(dbFileName);
}
@Test
public void checkIfDatabaseExists(){
assertTrue(InitialiseDB.databaseExists(dbUrl));
}
@Test
public void checkIfDatabaseWasDeleted(){
InitialiseDB.deleteDatabase(dbUrl);
File dbFile = new File(dbFileName);
assertFalse(dbFile.exists());
}
}