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;
19 import org.wamblee.security.encryption.Md5HexMessageDigester;
20 import org.wamblee.usermgt.UserMgtException.Reason;
23 * User management test utilities.
25 * @author Erik Brakkee
27 public class UsermgtTestUtils {
29 private static final String DUMMY_GROUP = "dummygroup";
30 private static final String DUMMY_PASSWD = "dummypasswd";
32 public static Group createGroup(String aName) {
33 return new Group(aName);
36 public static User createUser(String aUsername) throws UserMgtException {
37 return createUser(aUsername, DUMMY_GROUP);
40 public static User createUser(String aUsername, String aGroup) throws UserMgtException {
41 return createUser(aUsername, createGroup(aGroup));
44 public static User createUser(String aUsername, Group aGroup) throws UserMgtException {
45 return createUser(aUsername, DUMMY_PASSWD, aGroup);
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());
55 public static void addUserToGroup(User aUser, Group aGroup) throws UserMgtException {
56 aUser.addGroup(aGroup);
59 public static void removeUserFromGroup(User aUser, Group aGroup) throws UserMgtException {
60 aUser.removeGroup(aGroup);