2 * Copyright 2005 the original author or authors.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.wamblee.usermgt.hibernate;
19 import java.lang.reflect.Method;
20 import java.sql.SQLException;
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.UsermgtHibernateMappingFiles;
30 import org.wamblee.usermgt.UsermgtSpringConfigFiles;
33 * User administration tests with persistence based on Hibernate. This executes
34 * the same test cases as {@link org.wamblee.usermgt.UserAdministrationImplTest}
35 * with in addition, one test case that executes all Hibernate test cases
36 * separately with each test case in its own transaction.
38 * @author Erik Brakkee
40 public class HibernateUserAdministrationTest extends UserAdministrationImplTest {
42 private static final Log LOG = LogFactory.getLog(HibernateUserAdministrationTest.class);
44 public HibernateUserAdministrationTest() {
45 super(UsermgtSpringConfigFiles.class,
46 UsermgtHibernateMappingFiles.class);
50 * @see org.wamblee.usermgt.UserAdministrationImplTest#setUp()
53 protected void setUp() throws Exception {
61 * @see org.wamblee.usermgt.UserAdministrationImplTest#createAdmin()
64 protected UserAdministration createAdmin() {
65 return BeanKernel.getBeanFactory().find(UserAdministration.class);
68 public void testAllTestsInASeparateTransaction() throws SQLException {
70 Method[] methods = UserAdministrationImplTest.class.getMethods();
71 for (final Method method : methods) {
72 if (method.getName().startsWith("test")) {
75 executeTransaction(new TestTransactionCallbackWithoutResult() {
76 public void execute() throws Exception {
77 LOG.info("Running test " + method.getName());
79 method.invoke(HibernateUserAdministrationTest.this);
80 } catch (Throwable t) {
81 LOG.error("Test " + method.getName() + " failed");
82 throw new RuntimeException(t.getMessage(), t);
85 LOG.info("Test " + method.getName() + " finished");
97 private void clearUserCache() {
98 BeanKernel.getBeanFactory().find("userCache", Cache.class).clear();