1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ken.test;
17
18 import org.junit.Test;
19 import org.junit.runner.RunWith;
20 import org.kuali.rice.core.api.lifecycle.BaseLifecycle;
21 import org.kuali.rice.core.api.lifecycle.Lifecycle;
22 import org.kuali.rice.core.framework.resourceloader.RiceResourceLoaderFactory;
23 import org.kuali.rice.core.framework.resourceloader.SpringResourceLoader;
24 import org.kuali.rice.ken.core.SpringNotificationServiceLocator;
25 import org.kuali.rice.kew.batch.KEWXmlDataLoader;
26 import org.kuali.rice.test.BaselineTestCase;
27 import org.kuali.rice.test.CompositeBeanFactory;
28 import org.kuali.rice.test.SQLDataLoader;
29 import org.kuali.rice.test.lifecycles.KEWXmlDataLoaderLifecycle;
30 import org.kuali.rice.test.runners.BootstrapTest;
31 import org.kuali.rice.test.runners.LoadTimeWeavableTestRunner;
32 import org.quartz.Scheduler;
33 import org.quartz.SchedulerException;
34 import org.springframework.beans.factory.BeanFactory;
35 import org.springframework.transaction.PlatformTransactionManager;
36
37 import javax.xml.namespace.QName;
38 import java.util.ArrayList;
39 import java.util.List;
40
41
42
43
44
45
46 @BaselineTestCase.BaselineMode(BaselineTestCase.Mode.ROLLBACK_CLEAR_DB)
47 @RunWith(LoadTimeWeavableTestRunner.class)
48 @BootstrapTest(KENTestCase.BootstrapTest.class)
49 public abstract class KENTestCase extends BaselineTestCase {
50 private static final String KEN_MODULE_NAME = "ken";
51 private static final String TX_MGR_BEAN_NAME = "transactionManager";
52
53 protected SpringNotificationServiceLocator services;
54 protected PlatformTransactionManager transactionManager;
55
56 public KENTestCase() {
57 super(KEN_MODULE_NAME);
58 }
59
60
61
62 @Override
63 protected List<Lifecycle> getSuiteLifecycles() {
64 List<Lifecycle> suiteLifecycles = super.getSuiteLifecycles();
65 suiteLifecycles.add(new KEWXmlDataLoaderLifecycle("classpath:org/kuali/rice/ken/test/DefaultSuiteTestData.xml"));
66 return suiteLifecycles;
67 }
68
69 @Override
70 protected Lifecycle getLoadApplicationLifecycle() {
71 SpringResourceLoader springResourceLoader = new SpringResourceLoader(new QName("KENTestHarnessApplicationResourceLoader"), "classpath:KENTestHarnessSpringBeans.xml", null);
72 springResourceLoader.setParentSpringResourceLoader(getTestHarnessSpringResourceLoader());
73 return springResourceLoader;
74 }
75
76 @Override
77 protected List<Lifecycle> getPerTestLifecycles() {
78 List<Lifecycle> lifecycles = super.getPerTestLifecycles();
79 lifecycles.add(new ClearCacheLifecycle());
80 lifecycles.addAll(getNotificationPerTestLifecycles());
81 return lifecycles;
82 }
83
84 protected List<Lifecycle> getNotificationPerTestLifecycles() {
85 List<Lifecycle> lifecycles = new ArrayList<Lifecycle>();
86 lifecycles.add(new BaseLifecycle() {
87 @Override
88 public void start() throws Exception {
89
90 BeanFactory moduleContext = CompositeBeanFactory.createBeanFactory(
91 RiceResourceLoaderFactory.getSpringResourceLoaders());
92
93 services = new SpringNotificationServiceLocator(moduleContext);
94
95 transactionManager = (PlatformTransactionManager) moduleContext.getBean(TX_MGR_BEAN_NAME, PlatformTransactionManager.class);
96 super.start();
97 }
98
99 });
100
101
102 lifecycles.add(new BaseLifecycle() {
103 @Override
104 public void start() throws Exception {
105 super.start();
106
107 LOG.info("Status of Ken scheduler on start: " + (services.getScheduler().isStarted() ? "started" : "stopped"));
108
109 disableQuartzJobs();
110 }
111 public void stop() throws Exception {
112
113
114 LOG.info("Status of Ken scheduler on stop: " + (services.getScheduler().isStarted() ? "started" : "stopped"));
115
116 disableQuartzJobs();
117
118 super.stop();
119 }
120 });
121
122
123
124
125
126
127
128 return lifecycles;
129
130 }
131
132
133
134
135
136
137 protected void loadDefaultTestData() throws Exception {
138
139
140
141 new SQLDataLoader(
142 "classpath:org/kuali/rice/ken/test/DefaultPerTestData.sql", ";")
143 .runSql();
144
145 KEWXmlDataLoader.loadXmlClassLoaderResource(KENTestCase.class, "DefaultPerTestData.xml");
146 }
147
148
149
150 @Override
151 protected List<String> getPerTestTablesToClear() {
152 List<String> tablesToClear = new ArrayList<String>();
153 tablesToClear.add("KREW_.*");
154 tablesToClear.add("KRSB_.*");
155 tablesToClear.add("KREN_.*");
156 return tablesToClear;
157 }
158
159 protected void setUpAfterDataLoad() throws Exception {
160
161 }
162
163
164
165
166 @Override
167 protected void loadPerTestData() throws Exception {
168 loadDefaultTestData();
169
170
171 setUpAfterDataLoad();
172
173 final long t4 = System.currentTimeMillis();
174 }
175
176
177
178
179 public class ClearCacheLifecycle extends BaseLifecycle {
180 @Override
181 public void stop() throws Exception {
182
183
184
185 super.stop();
186 }
187
188 }
189
190
191
192
193 protected void disableQuartzJobs() throws SchedulerException {
194
195
196 Scheduler scheduler = services.getScheduler();
197 scheduler.standby();
198
199 }
200
201
202
203
204
205 protected void enableQuartzJobs() throws SchedulerException {
206
207
208 Scheduler scheduler = services.getScheduler();
209 scheduler.start();
210 }
211
212 public static final class BootstrapTest extends KENTestCase {
213 @Test
214 public void bootstrapTest() {};
215 }
216
217 }