-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpringBeanFactoryTest.java
More file actions
89 lines (70 loc) · 2.39 KB
/
SpringBeanFactoryTest.java
File metadata and controls
89 lines (70 loc) · 2.39 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
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
package io.github.evoschema;
import io.github.evoschema.processor.beanfactory.SpringBeanFactory;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class SpringBeanFactoryTest
{
@Test
public void shouldReturnRegisteredSingletonByName()
{
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
context.refresh();
SpringBeanFactory beanFactory = new SpringBeanFactory();
beanFactory.setApplicationContext(context);
TestCloseableBean bean = new TestCloseableBean();
beanFactory.registerSingleton("closeableBean", bean);
TestCloseableBean loadedBean = beanFactory.getBean("closeableBean", TestCloseableBean.class);
Assert.assertSame(bean, loadedBean);
context.close();
}
@Test
public void shouldInvokeCloseMethodWhenContextCloses()
{
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
context.refresh();
SpringBeanFactory beanFactory = new SpringBeanFactory();
beanFactory.setApplicationContext(context);
TestCloseableBean bean = new TestCloseableBean();
beanFactory.registerSingleton("closeableBean", bean);
context.close();
Assert.assertTrue(bean.isClosed());
}
@Test
public void shouldInvokeDestroyMethodWhenContextCloses()
{
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
context.refresh();
SpringBeanFactory beanFactory = new SpringBeanFactory();
beanFactory.setApplicationContext(context);
TestDestroyBean bean = new TestDestroyBean();
beanFactory.registerSingleton("destroyBean", bean);
context.close();
Assert.assertTrue(bean.isDestroyed());
}
private static class TestCloseableBean implements AutoCloseable
{
private boolean closed;
@Override
public void close()
{
closed = true;
}
public boolean isClosed()
{
return closed;
}
}
private static class TestDestroyBean
{
private boolean destroyed;
public void destroy()
{
destroyed = true;
}
public boolean isDestroyed()
{
return destroyed;
}
}
}