-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathJdbcConfigTest.java
65 lines (54 loc) · 2.87 KB
/
JdbcConfigTest.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
package com.example.persistence.config;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jdbc.repository.config.EnableJdbcRepositories;
import org.springframework.data.jdbc.repository.config.JdbcConfiguration;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
import javax.sql.DataSource;
import java.lang.reflect.Method;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
// TODO 1-12 このテストを実行して、JdbcConfigの実装が正しいかチェックする(テストがグリーンになればOK)
public class JdbcConfigTest {
JdbcConfig jdbcConfig = new JdbcConfig();
DataSource dataSource = new DataSourceConfig().dataSource();
@Test
@DisplayName("クラスがJdbcConfigurationを継承している")
public void classTest() {
Object obj = jdbcConfig;
assertTrue(obj instanceof JdbcConfiguration);
}
@Test
@DisplayName("クラスに必要なアノテーションが付加されている")
public void annotationTest() {
Configuration configuration = JdbcConfig.class.getAnnotation(Configuration.class);
ComponentScan componentScan = JdbcConfig.class.getAnnotation(ComponentScan.class);
EnableJdbcRepositories enableJdbcRepositories = JdbcConfig.class.getAnnotation(EnableJdbcRepositories.class);
assertAll("annotations required",
() -> assertNotNull(configuration),
() -> assertNotNull(componentScan),
() -> assertNotNull(enableJdbcRepositories),
() -> assertArrayEquals(new String[]{"com.example.persistence.repository.impl"},
componentScan.basePackages()),
() -> assertArrayEquals(new String[]{"com.example.persistence.repository"},
enableJdbcRepositories.basePackages())
);
}
@Test
@DisplayName("NamedParameterJdbcTemplateのBeanが定義されている")
public void namedParameterJdbcTemplateTest() {
Method namedParameterJdbcTemplateMethod =
assertDoesNotThrow(() -> JdbcConfig.class.getMethod("namedParameterJdbcTemplate", DataSource.class));
Bean bean = namedParameterJdbcTemplateMethod.getAnnotation(Bean.class);
assertNotNull(bean);
NamedParameterJdbcTemplate jdbcTemplate =
jdbcConfig.namedParameterJdbcTemplate(dataSource);
assertNotNull(jdbcTemplate);
}
}