|
18 | 18 |
|
19 | 19 | import org.assertj.core.api.Assertions;
|
20 | 20 | import org.junit.After;
|
21 |
| -import org.junit.Rule; |
22 | 21 | import org.junit.Test;
|
23 |
| -import org.junit.rules.ExpectedException; |
| 22 | +import org.neo4j.ogm.drivers.http.driver.HttpDriver; |
| 23 | +import org.neo4j.ogm.session.Session; |
| 24 | +import org.neo4j.ogm.session.SessionFactory; |
24 | 25 |
|
25 | 26 | import org.springframework.boot.autoconfigure.AutoConfigurationPackages;
|
| 27 | +import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration; |
26 | 28 | import org.springframework.boot.autoconfigure.data.neo4j.city.City;
|
27 |
| -import org.springframework.boot.autoconfigure.neo4j.Neo4jAutoConfiguration; |
| 29 | +import org.springframework.boot.test.util.EnvironmentTestUtils; |
28 | 30 | import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
| 31 | +import org.springframework.context.annotation.Bean; |
| 32 | +import org.springframework.context.annotation.Configuration; |
29 | 33 | import org.springframework.data.neo4j.mapping.Neo4jMappingContext;
|
| 34 | +import org.springframework.data.neo4j.template.Neo4jOperations; |
| 35 | + |
| 36 | +import static org.assertj.core.api.Assertions.assertThat; |
| 37 | +import static org.mockito.Mockito.mock; |
30 | 38 |
|
31 | 39 | /**
|
32 |
| - * Tests for {@link Neo4jAutoConfiguration}. |
| 40 | + * Tests for {@link Neo4jDataAutoConfiguration}. Tests can't use the embedded driver as we |
| 41 | + * use lucene 4 and Neo4j still requires 3. |
33 | 42 | *
|
34 |
| - * @author Josh Long |
35 |
| - * @author Oliver Gierke |
| 43 | + * @author Stephane Nicoll |
| 44 | + * @author Michael Hunger |
36 | 45 | * @author Vince Bickers
|
37 | 46 | */
|
38 | 47 | public class Neo4jDataAutoConfigurationTests {
|
39 | 48 |
|
40 |
| - @Rule |
41 |
| - public final ExpectedException thrown = ExpectedException.none(); |
42 |
| - |
43 |
| - private AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); |
| 49 | + private AnnotationConfigApplicationContext context; |
44 | 50 |
|
45 | 51 | @After
|
46 | 52 | public void close() {
|
47 |
| - this.context.close(); |
| 53 | + if (this.context != null) { |
| 54 | + this.context.close(); |
| 55 | + } |
| 56 | + } |
| 57 | + |
| 58 | + @Test |
| 59 | + public void defaultConfiguration() { |
| 60 | + load(null, "spring.data.neo4j.uri=http://localhost:8989"); |
| 61 | + assertThat(this.context.getBeansOfType(Neo4jOperations.class)).hasSize(1); |
| 62 | + assertThat(this.context.getBeansOfType(org.neo4j.ogm.config.Configuration.class)) |
| 63 | + .hasSize(1); |
| 64 | + assertThat(this.context.getBeansOfType(SessionFactory.class)).hasSize(1); |
| 65 | + assertThat(this.context.getBeanDefinition("scopedTarget.getSession").getScope()) |
| 66 | + .isEqualTo("singleton"); |
| 67 | + } |
| 68 | + |
| 69 | + @Test |
| 70 | + public void customScope() { |
| 71 | + load(null, "spring.data.neo4j.uri=http://localhost:8989", |
| 72 | + "spring.data.neo4j.session.scope=prototype"); |
| 73 | + assertThat(this.context.getBeanDefinition("scopedTarget.getSession").getScope()) |
| 74 | + .isEqualTo("prototype"); |
| 75 | + } |
| 76 | + |
| 77 | + @Test |
| 78 | + public void customNeo4jOperations() { |
| 79 | + load(CustomNeo4jOperations.class); |
| 80 | + assertThat(this.context.getBean(Neo4jOperations.class)) |
| 81 | + .isSameAs(this.context.getBean("myNeo4jOperations")); |
| 82 | + assertThat(this.context.getBeansOfType(org.neo4j.ogm.config.Configuration.class)) |
| 83 | + .hasSize(0); |
| 84 | + assertThat(this.context.getBeansOfType(SessionFactory.class)).hasSize(0); |
| 85 | + assertThat(this.context.getBeansOfType(Session.class)).hasSize(0); |
| 86 | + } |
| 87 | + |
| 88 | + @Test |
| 89 | + public void customConfiguration() { |
| 90 | + load(CustomConfiguration.class); |
| 91 | + assertThat(this.context.getBean(org.neo4j.ogm.config.Configuration.class)) |
| 92 | + .isSameAs(this.context.getBean("myConfiguration")); |
| 93 | + assertThat(this.context.getBeansOfType(Neo4jOperations.class)).hasSize(1); |
| 94 | + assertThat(this.context.getBeansOfType(org.neo4j.ogm.config.Configuration.class)) |
| 95 | + .hasSize(1); |
| 96 | + assertThat(this.context.getBeansOfType(SessionFactory.class)).hasSize(1); |
48 | 97 | }
|
49 | 98 |
|
50 | 99 | @Test
|
51 | 100 | public void usesAutoConfigurationPackageToPickUpDomainTypes() {
|
| 101 | + this.context = new AnnotationConfigApplicationContext(); |
52 | 102 | String cityPackage = City.class.getPackage().getName();
|
53 | 103 | AutoConfigurationPackages.register(this.context, cityPackage);
|
54 |
| - this.context.register(Neo4jAutoConfiguration.class); |
| 104 | + this.context.register(Neo4jDataAutoConfiguration.class); |
55 | 105 | this.context.refresh();
|
56 | 106 | assertDomainTypesDiscovered(this.context.getBean(Neo4jMappingContext.class),
|
57 | 107 | City.class);
|
58 | 108 | }
|
59 | 109 |
|
| 110 | + public void load(Class<?> config, String... environment) { |
| 111 | + AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(); |
| 112 | + EnvironmentTestUtils.addEnvironment(ctx, environment); |
| 113 | + if (config != null) { |
| 114 | + ctx.register(config); |
| 115 | + } |
| 116 | + ctx.register(PropertyPlaceholderAutoConfiguration.class, |
| 117 | + Neo4jDataAutoConfiguration.class); |
| 118 | + ctx.refresh(); |
| 119 | + this.context = ctx; |
| 120 | + } |
| 121 | + |
60 | 122 | private static void assertDomainTypesDiscovered(Neo4jMappingContext mappingContext,
|
61 | 123 | Class<?>... types) {
|
62 | 124 | for (Class<?> type : types) {
|
63 | 125 | Assertions.assertThat(mappingContext.getPersistentEntity(type)).isNotNull();
|
64 | 126 | }
|
65 | 127 | }
|
66 | 128 |
|
| 129 | + @Configuration |
| 130 | + static class CustomNeo4jOperations { |
| 131 | + |
| 132 | + @Bean |
| 133 | + public Neo4jOperations myNeo4jOperations() { |
| 134 | + return mock(Neo4jOperations.class); |
| 135 | + } |
| 136 | + |
| 137 | + } |
| 138 | + |
| 139 | + @Configuration |
| 140 | + static class CustomConfiguration { |
| 141 | + |
| 142 | + @Bean |
| 143 | + public org.neo4j.ogm.config.Configuration myConfiguration() { |
| 144 | + org.neo4j.ogm.config.Configuration configuration = new org.neo4j.ogm.config.Configuration(); |
| 145 | + configuration.driverConfiguration() |
| 146 | + .setDriverClassName(HttpDriver.class.getName()); |
| 147 | + return configuration; |
| 148 | + } |
| 149 | + |
| 150 | + } |
| 151 | + |
67 | 152 | }
|
0 commit comments