(no commit message)
[utils] / security / jpatest / src / test / java / org / wamblee / security / authentication / jpa / UserAdministrationTester.java
1 /*
2  * Copyright 2008-2010 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 package org.wamblee.security.authentication.jpa;
17
18 import org.wamblee.cache.Cache;
19 import org.wamblee.cache.EhCache;
20 import org.wamblee.io.ClassPathResource;
21 import org.wamblee.security.authentication.GroupSet;
22 import org.wamblee.security.authentication.Md5HexMessageDigester;
23 import org.wamblee.security.authentication.MessageDigester;
24 import org.wamblee.security.authentication.NameValidator;
25 import org.wamblee.security.authentication.RegexpNameValidator;
26 import org.wamblee.security.authentication.User;
27 import org.wamblee.security.authentication.UserAdministration;
28 import org.wamblee.security.authentication.UserAdministrationImpl;
29 import org.wamblee.security.authentication.UserSet;
30 import org.wamblee.test.persistence.JpaTester;
31 import org.wamblee.test.persistence.PersistenceUnitDescription;
32 import org.wamblee.test.transactions.TransactionProxyFactory;
33
34 /**
35  * Setup of a security repository for unit test. This provides all the necessary
36  * wiring and JPA setup.
37  * 
38  * @author Erik Brakkee
39  */
40 public class UserAdministrationTester {
41
42     private PersistenceUnitDescription persistenceUnit;
43     private JpaTester jpaTester;
44     private Cache<String, User> userCache;
45     private UserAdministration userAdmin;
46     private MessageDigester passwordDigester;
47
48     public UserAdministrationTester() {
49         persistenceUnit = new SecurityPersistenceUnit();
50         jpaTester = new JpaTester(persistenceUnit);
51     }
52
53     public void start() throws Exception {
54         jpaTester.start();
55         userCache = new EhCache<String, User>(new ClassPathResource(
56             "properties/org.wamblee.security.ehcache.xml"), "users");
57
58         TransactionProxyFactory<UserAdministration> factory = new TransactionProxyFactory<UserAdministration>(
59             jpaTester.getJpaBuilder(), UserAdministration.class);
60
61         NameValidator passwordValidator = new RegexpNameValidator(".{5,}",
62             "INVALID_PASSWORD", "Password must have at least 5 characters");
63         passwordDigester = new Md5HexMessageDigester();
64         UserSet userset = new JpaUserSet(userCache, passwordValidator,
65             passwordDigester, factory.getTransactionScopedEntityManager());
66         GroupSet groupset = new JpaGroupSet(factory
67             .getTransactionScopedEntityManager());
68
69         NameValidator userValidator = new RegexpNameValidator(
70             "[a-zA-Z]+[a-zA-Z0-9]*", "INVALID_USERNAME", "");
71         NameValidator groupValidator = new RegexpNameValidator(
72             "[a-zA-Z]+[a-zA-Z0-9]*", "INVALID_GROUPNAME", "");
73         UserAdministration userAdminImpl = new UserAdministrationImpl(userset,
74             groupset, userValidator, groupValidator);
75         userAdmin = factory.getProxy(userAdminImpl);
76     }
77
78     public PersistenceUnitDescription getPersistenceUnit() {
79         return persistenceUnit;
80     }
81
82     public JpaTester getJpaTester() {
83         return jpaTester;
84     }
85
86     public Cache<String, User> getUserCache() {
87         return userCache;
88     }
89
90     public UserAdministration getUserAdministration() {
91         return userAdmin;
92     }
93
94     public MessageDigester getPasswordEncoder() {
95         return passwordDigester;
96     }
97
98     public void stop() throws Exception {
99         jpaTester.stop();
100     }
101
102 }