Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AbstractTransactionalDaoTest |
|
| 5.5;5.5 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | package org.kuali.student.common.test.spring; | |
17 | ||
18 | import java.io.BufferedReader; | |
19 | import java.io.File; | |
20 | import java.io.FileNotFoundException; | |
21 | import java.io.FileReader; | |
22 | import java.io.IOException; | |
23 | import java.lang.reflect.Field; | |
24 | import java.util.List; | |
25 | ||
26 | import javax.persistence.EntityManager; | |
27 | import javax.persistence.PersistenceContext; | |
28 | ||
29 | import org.apache.commons.lang.StringUtils; | |
30 | import org.apache.log4j.Logger; | |
31 | import org.junit.Before; | |
32 | import org.junit.runner.RunWith; | |
33 | import org.springframework.beans.factory.annotation.Autowired; | |
34 | import org.springframework.context.ApplicationContext; | |
35 | import org.springframework.context.support.FileSystemXmlApplicationContext; | |
36 | import org.springframework.core.io.ClassPathResource; | |
37 | import org.springframework.test.context.ContextConfiguration; | |
38 | import org.springframework.test.context.TestExecutionListeners; | |
39 | import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | |
40 | import org.springframework.test.context.support.DirtiesContextTestExecutionListener; | |
41 | import org.springframework.test.context.transaction.BeforeTransaction; | |
42 | import org.springframework.test.context.transaction.TransactionConfiguration; | |
43 | import org.springframework.test.context.transaction.TransactionalTestExecutionListener; | |
44 | import org.springframework.transaction.TransactionDefinition; | |
45 | import org.springframework.transaction.TransactionStatus; | |
46 | import org.springframework.transaction.annotation.Transactional; | |
47 | import org.springframework.transaction.jta.JtaTransactionManager; | |
48 | import org.springframework.transaction.support.DefaultTransactionDefinition; | |
49 | ||
50 | /** | |
51 | * This test class will load your dao and gives you access to the shared | |
52 | * entityManager em. Also passes the @Dao and @PersistenceFileLocation | |
53 | * to system properties from the annotations. | |
54 | * <p> | |
55 | * Extend this class and set the | |
56 | * <ul> | |
57 | * <li>@PersistenceFileLocation | |
58 | * <li>@Dao | |
59 | * </ul> | |
60 | * <p> | |
61 | * @PersistenceFileLocation defines the persistence.xml location if it is | |
62 | * named something else. | |
63 | * <p> | |
64 | * @Dao defines the Dao implementation class, and an optional application | |
65 | * context that contains a list of beans that should be persisted. The list bean | |
66 | * should be called "persistList". SQL files that should be loaded can also be defined here with the | |
67 | * testSqlFile parameter. This should be an SQL file. | |
68 | * <p> | |
69 | * This test class is @Transactional, so all tests will be rolled back. | |
70 | * That means the data you load will be in the same state for each test. | |
71 | * <p> | |
72 | * Example: | |
73 | * | |
74 | * <pre> | |
75 | * @PersistenceFileLocation("classpath:META-INF/custom-persistence.xml") | |
76 | * public class DaoCommonTest extends AbstractTransactionalDaoTest { | |
77 | * | |
78 | * @Dao(value = "org.kuali.student.MyDaoImpl", | |
79 | * testDataFile = "classpath:META-INF/pretest-data-beans-1.xml,pretest-data-beans-2.xml") | |
80 | * public MyDao myDao; | |
81 | * | |
82 | * @Test | |
83 | * public void test1() { | |
84 | * MyObject a = myDao.foo(); | |
85 | * MyObject b = em.find(MyObject.class,1); | |
86 | * assertEquals(a.id,b.id); | |
87 | * } | |
88 | * } | |
89 | * </pre> | |
90 | * | |
91 | * Example of application context for preloading data: | |
92 | * | |
93 | * <pre> | |
94 | * <?xml version="1.0" encoding="UTF-8"?> | |
95 | * <beans xmlns="http://www.springframework.org/schema/beans" | |
96 | * xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
97 | * xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> | |
98 | * | |
99 | * <bean id="persistList" | |
100 | * class="org.springframework.beans.factory.config.ListFactoryBean"> | |
101 | * <property name="sourceList"> | |
102 | * <list> | |
103 | * <ref bean="value1" /> | |
104 | * <ref bean="value2" /> | |
105 | * </list> | |
106 | * </property> | |
107 | * </bean> | |
108 | * | |
109 | * <bean id="value1" | |
110 | * class="org.kuali.student.Value"> | |
111 | * <property name="value" value="Value Number One" /> | |
112 | * </bean> | |
113 | * | |
114 | * <bean id="value2" | |
115 | * class="org.kuali.student.Value"> | |
116 | * <property name="value" value="Value Number Two" /> | |
117 | * </bean> | |
118 | * | |
119 | * </beans> | |
120 | * </pre> | |
121 | */ | |
122 | @RunWith(SpringJUnit4ClassRunner.class) | |
123 | @ContextConfiguration(locations = { "classpath:META-INF/default-dao-context-test.xml" }) | |
124 | @TestExecutionListeners( { TransactionalTestExecutionListener.class, | |
125 | DaoTestDependencyInjectorListener.class, | |
126 | DirtiesContextTestExecutionListener.class }) | |
127 | @Transactional | |
128 | @TransactionConfiguration(transactionManager = "JtaTxManager") | |
129 | public abstract class AbstractTransactionalDaoTest { | |
130 | 4 | final Logger LOG = Logger.getLogger(AbstractTransactionalDaoTest.class); |
131 | @PersistenceContext | |
132 | protected EntityManager em; | |
133 | ||
134 | @Autowired | |
135 | private JtaTransactionManager jtaTxManager; | |
136 | ||
137 | ||
138 | 1 | private static boolean preloadedData=false; |
139 | /** | |
140 | * Loads the application context defined in the @Dao testDataFile | |
141 | * attribute. Then uses the EntityManager em to persist the beans in | |
142 | * persistList | |
143 | */ | |
144 | @Before | |
145 | public void preLoadBeans() { | |
146 | 6 | for (Field f : this.getClass().getDeclaredFields()) { |
147 | 4 | if (f.isAnnotationPresent(Dao.class)) { |
148 | 2 | Dao dao = f.getAnnotation(Dao.class); |
149 | 2 | if (dao.testDataFile().length() > 0) { |
150 | 2 | ApplicationContext ac = new FileSystemXmlApplicationContext( |
151 | dao.testDataFile()); | |
152 | 2 | for (Object o : (List<?>) ac.getBean("persistList")) { |
153 | 4 | em.persist(o); |
154 | } | |
155 | 2 | em.flush(); |
156 | } | |
157 | } | |
158 | } | |
159 | 2 | } |
160 | ||
161 | @BeforeTransaction | |
162 | public void preLoadData() throws IOException { | |
163 | 2 | if(!preloadedData){ |
164 | 1 | preloadedData=true; |
165 | ||
166 | 3 | for (Field f : this.getClass().getDeclaredFields()) { |
167 | 2 | if (f.isAnnotationPresent(Dao.class)) { |
168 | 1 | Dao dao = f.getAnnotation(Dao.class); |
169 | 1 | if (dao.testSqlFile().length() > 0) { |
170 | 1 | if (dao.testSqlFile().startsWith("classpath:")) { |
171 | 1 | String file = dao.testSqlFile().substring("classpath:".length()); |
172 | 1 | String[] files = file.split("\\s*,\\s*"); |
173 | 2 | for(String testFile : files) { |
174 | 1 | File sqlFile = new ClassPathResource(testFile).getFile(); |
175 | 1 | process(sqlFile); |
176 | } | |
177 | 1 | } else { |
178 | 0 | String[] files = dao.testSqlFile().split("\\s*,\\s*"); |
179 | 0 | for(String testFile : files) { |
180 | 0 | File sqlFile = new File(testFile); |
181 | 0 | process(sqlFile); |
182 | } | |
183 | } | |
184 | } | |
185 | } | |
186 | } | |
187 | } | |
188 | 2 | } |
189 | ||
190 | private void process(File sqlFile) throws FileNotFoundException { | |
191 | 1 | BufferedReader in |
192 | = new BufferedReader(new FileReader(sqlFile)); | |
193 | String ln; | |
194 | ||
195 | //Check if oracle | |
196 | 1 | TransactionDefinition txDefinition = new DefaultTransactionDefinition() ; |
197 | 1 | TransactionStatus txStatus = jtaTxManager.getTransaction(txDefinition); |
198 | ||
199 | try { | |
200 | ||
201 | 22 | while((ln=in.readLine())!=null){ |
202 | 21 | if(!ln.startsWith("/")&&!ln.startsWith("--")&&StringUtils.isNotBlank(ln)){ |
203 | 2 | ln=ln.replaceFirst("[;/]\\s*$",""); |
204 | 2 | em.createNativeQuery(ln).executeUpdate(); |
205 | } | |
206 | } | |
207 | 1 | jtaTxManager.commit(txStatus); |
208 | 0 | } catch (Exception e) { |
209 | 0 | LOG.error(e); |
210 | 0 | jtaTxManager.rollback(txStatus); |
211 | } | |
212 | finally{ | |
213 | 0 | try { |
214 | 1 | in.close(); |
215 | 0 | } catch (IOException e) { |
216 | 0 | LOG.error("IO Stream closed " + e); |
217 | 1 | } |
218 | 0 | } |
219 | 1 | } |
220 | ||
221 | /** | |
222 | * Passes some variables so they can be used in the application context | |
223 | */ | |
224 | public AbstractTransactionalDaoTest() { | |
225 | 4 | super(); |
226 | // Grab annotations and pass them as System properties | |
227 | 4 | if (this.getClass().isAnnotationPresent(PersistenceFileLocation.class)) { |
228 | 2 | PersistenceFileLocation a = this.getClass().getAnnotation( |
229 | PersistenceFileLocation.class); | |
230 | 2 | System.setProperty("ks.test.persistenceLocation", a.value()); |
231 | 2 | } else { |
232 | 2 | System.setProperty("ks.test.persistenceLocation", |
233 | "classpath:META-INF/persistence.xml"); | |
234 | } | |
235 | 4 | } |
236 | } |