AbstractServiceSupport.java
2.08 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
package fr.plil.sio.persistence.jdbc;
import org.junit.After;
import org.junit.Before;
import org.springframework.beans.factory.annotation.Autowired;
import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
public abstract class AbstractServiceSupport {
private static final String create_table_group = "CREATE TABLE GROUP_T (GROUP_ID INT NOT NULL AUTO_INCREMENT, " +
"NAME_C VARCHAR(50) UNIQUE NOT NULL, PRIMARY KEY(GROUP_ID))";
private static final String create_table_right = "CREATE TABLE RIGHT_T (RIGHT_ID INT NOT NULL AUTO_INCREMENT, " +
"NAME_R VARCHAR(50) UNIQUE NOT NULL, PARENT INT, PRIMARY KEY(RIGHT_ID))";
private static final String create_table_user = "CREATE TABLE USER_T (USER_ID INT NOT NULL AUTO_INCREMENT, " +
"NAME_U VARCHAR(50) UNIQUE NOT NULL, GROUP_U INT, PRIMARY KEY(USER_ID), " +
"FOREIGN KEY(GROUP_U) REFERENCES GROUP_T(GROUP_ID))";
private static final String drop_table_group = "DROP TABLE GROUP_T";
private static final String drop_table_right = "DROP TABLE RIGHT_T";
private static final String drop_table_user = "DROP TABLE USER_T";
@Autowired
private DataSource dataSource;
private Connection connection;
private Statement stmt;
@Before
public void createTables() throws SQLException {
openConnection();
stmt.executeUpdate(create_table_group);
stmt.executeUpdate(create_table_right);
stmt.executeUpdate(create_table_user);
closeConnection();
}
@After
public void cleanupDatabase() throws SQLException {
openConnection();
stmt.executeUpdate(drop_table_group);
stmt.executeUpdate(drop_table_right);
stmt.executeUpdate(drop_table_user);
closeConnection();
}
private void closeConnection() throws SQLException {
stmt.close();
connection.close();
}
private void openConnection() throws SQLException {
connection = dataSource.getConnection();
stmt = connection.createStatement();
}
}