07a376c544d74e65d23554291bf149d544f8b996
[utils] / security / src / test / java / org / wamblee / usermgt / UsermgtTestUtils.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;
18
19 import org.wamblee.security.encryption.Md5HexMessageDigester;
20 import org.wamblee.usermgt.UserMgtException.Reason;
21
22 /**
23  * User management test utilities. 
24  *
25  * @author Erik Brakkee
26  */
27 public class UsermgtTestUtils {
28     
29     private static final String DUMMY_GROUP = "dummygroup";
30     private static final String DUMMY_PASSWD = "dummypasswd";
31
32     public static Group createGroup(String aName) { 
33         return new Group(aName);
34     }
35     
36     public static User createUser(String aUsername) throws UserMgtException { 
37         return createUser(aUsername, DUMMY_GROUP);
38     }
39     
40     public static User createUser(String aUsername, String aGroup) throws UserMgtException { 
41         return createUser(aUsername, createGroup(aGroup)); 
42     }
43     
44     public static User createUser(String aUsername, Group aGroup) throws UserMgtException { 
45         return createUser(aUsername, DUMMY_PASSWD, aGroup);
46     }
47     
48     public static User createUser(String aName, String aPassword, Group aGroup) throws UserMgtException { 
49         return new User(aName, aPassword, aGroup, 
50                 new RegexpNameValidator(RegexpNameValidator.PASSWORD_PATTERN, 
51                         Reason.INVALID_PASSWORD, "Password must be at least 6 chars"), 
52                         new Md5HexMessageDigester()); 
53     }
54     
55     public static void addUserToGroup(User aUser, Group aGroup) throws UserMgtException { 
56         aUser.addGroup(aGroup);
57     }
58     
59     public static void removeUserFromGroup(User aUser, Group aGroup) throws UserMgtException { 
60         aUser.removeGroup(aGroup);
61     }
62 }