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.io.Serializable;
20 import java.lang.reflect.Method;
21 import java.sql.SQLException;
23 import org.apache.commons.logging.Log;
24 import org.apache.commons.logging.LogFactory;
25 import org.wamblee.cache.EhCache;
26 import org.wamblee.system.adapters.DefaultContainer;
27 import org.wamblee.system.adapters.ObjectConfiguration;
28 import org.wamblee.system.core.Scope;
29 import org.wamblee.system.spring.DatabaseTesterComponent;
30 import org.wamblee.test.spring.TestTransactionCallbackWithoutResult;
31 import org.wamblee.usermgt.UserAdministration;
32 import org.wamblee.usermgt.UserAdministrationImplTest;
35 * User administration tests with persistence based on Hibernate. This executes
36 * the same test cases as {@link org.wamblee.usermgt.UserAdministrationImplTest}
37 * with in addition, one test case that executes all Hibernate test cases
38 * separately with each test case in its own transaction.
40 * @author Erik Brakkee
42 public class HibernateUserAdministrationTest extends UserAdministrationImplTest {
44 private static final Log LOG = LogFactory.getLog(HibernateUserAdministrationTest.class);
46 private DefaultContainer _container;
49 private DatabaseTesterComponent _databaseTester;
50 private EhCache<Serializable, Serializable> _userCache;
51 private UserAdministration _userAdmin;
55 * @see org.wamblee.usermgt.UserAdministrationImplTest#setUp()
58 protected void setUp() throws Exception {
60 _container = new DefaultContainer("top");
61 _container.addComponent(new ExternalDatasourceComponent("datasource"));
62 _container.addComponent(new UserAdministrationComponent("admin", true));
64 _container.addComponent("databaseTester", DatabaseTesterComponent.class);
66 ObjectConfiguration config = new ObjectConfiguration(
67 HibernateUserAdministrationTest.class);
68 config.getSetterConfig().clear().add(
69 "userCache").add("databaseTester").add("userAdmin");
70 _container.addComponent("testcase", this, config);
72 _scope = _container.start();
74 _databaseTester.cleanDatabase();
80 public void setUserCache(EhCache<Serializable, Serializable> aUserCache) {
81 _userCache = aUserCache;
84 public void setDatabaseTester(DatabaseTesterComponent aDatabaseTester) {
85 _databaseTester = aDatabaseTester;
88 public void setUserAdmin(UserAdministration aUserAdmin) {
89 _userAdmin = aUserAdmin;
95 * @see org.wamblee.usermgt.UserAdministrationImplTest#createAdmin()
98 protected UserAdministration createAdmin() {
102 public void testAllTestsInASeparateTransaction() throws SQLException {
104 Method[] methods = UserAdministrationImplTest.class.getMethods();
105 for (final Method method : methods) {
106 if (method.getName().startsWith("test")) {
107 _databaseTester.cleanDatabase();
109 _databaseTester.executeTransaction(new TestTransactionCallbackWithoutResult() {
110 public void execute() throws Exception {
111 LOG.info("Running test " + method.getName());
113 method.invoke(HibernateUserAdministrationTest.this);
114 } catch (Throwable t) {
115 LOG.error("Test " + method.getName() + " failed");
116 throw new RuntimeException(t.getMessage(), t);
119 LOG.info("Test " + method.getName() + " finished");
131 private void clearUserCache() {