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