Moving around a lot of files to work towards production components.
[utils] / security / src / test / java / org / wamblee / usermgt / hibernate / HibernateUserAdministrationTest.java
1 /*
2  * Copyright 2005 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.wamblee.usermgt.hibernate;
18
19 import java.lang.reflect.Method;
20 import java.sql.SQLException;
21
22 import org.apache.commons.logging.Log;
23 import org.apache.commons.logging.LogFactory;
24 import org.wamblee.cache.Cache;
25 import org.wamblee.general.BeanKernel;
26 import org.wamblee.test.spring.TestTransactionCallbackWithoutResult;
27 import org.wamblee.usermgt.UserAdministration;
28 import org.wamblee.usermgt.UserAdministrationImplTest;
29 import org.wamblee.usermgt.UsermgtSpringConfigFiles;
30
31 /**
32  * User administration tests with persistence based on Hibernate. This executes
33  * the same test cases as {@link org.wamblee.usermgt.UserAdministrationImplTest}
34  * with in addition, one test case that executes all Hibernate test cases
35  * separately with each test case in its own transaction.
36  *
37  * @author Erik Brakkee
38  */
39 public class HibernateUserAdministrationTest extends UserAdministrationImplTest {
40     
41     private static final Log LOG = LogFactory.getLog(HibernateUserAdministrationTest.class);
42
43     public HibernateUserAdministrationTest() {
44         super(UsermgtSpringConfigFiles.class,
45                 UsermgtHibernateMappingFiles.class);
46     }
47     
48     /* (non-Javadoc)
49      * @see org.wamblee.usermgt.UserAdministrationImplTest#setUp()
50      */
51     @Override
52     protected void setUp() throws Exception {
53         super.setUp();
54         clearUserCache();
55     }
56
57     /*
58      * (non-Javadoc)
59      * 
60      * @see org.wamblee.usermgt.UserAdministrationImplTest#createAdmin()
61      */
62     @Override
63     protected UserAdministration createAdmin() {
64         return BeanKernel.getBeanFactory().find(UserAdministration.class);
65     }
66
67     public void testAllTestsInASeparateTransaction() throws SQLException {
68
69         Method[] methods = UserAdministrationImplTest.class.getMethods();
70         for (final Method method : methods) {
71             if (method.getName().startsWith("test")) {
72                 cleanDatabase();
73                 clearUserCache();
74                 executeTransaction(new TestTransactionCallbackWithoutResult() {
75                     public void execute() throws Exception {
76                         LOG.info("Running test " + method.getName());
77                         try {
78                             method.invoke(HibernateUserAdministrationTest.this);
79                         } catch (Throwable t) {
80                             LOG.error("Test " + method.getName() + " failed");
81                             throw new RuntimeException(t.getMessage(), t); 
82                         }
83                         finally {
84                             LOG.info("Test " + method.getName() + " finished");
85                         }
86
87                     }
88                 });
89             }
90         }
91     }
92
93     /**
94      * 
95      */
96     private void clearUserCache() {
97         BeanKernel.getBeanFactory().find("userCache", Cache.class).clear();
98     }
99 }