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.security.authorization;
19 import junit.framework.TestCase;
21 import org.wamblee.security.encryption.Md5HexMessageDigester;
22 import org.wamblee.usermgt.Group;
23 import org.wamblee.usermgt.InMemoryGroupSet;
24 import org.wamblee.usermgt.InMemoryUserSet;
25 import org.wamblee.usermgt.RegexpNameValidator;
26 import org.wamblee.usermgt.User;
27 import org.wamblee.usermgt.UserAccessor;
28 import org.wamblee.usermgt.UserAdministration;
29 import org.wamblee.usermgt.UserAdministrationImpl;
30 import org.wamblee.usermgt.UserMgtException;
31 import org.wamblee.usermgt.UserMgtException.Reason;
34 * User access that always returns a user that belongs to
37 * @author Erik Brakkee
39 public class TestUserAccessor implements UserAccessor {
41 private static final String USER = "erik";
42 private static final String PASSWORD = "abc123";
43 private static final String GROUP = "users";
48 * @see org.wamblee.usermgt.UserAccessor#getCurrentUser()
50 public User getCurrentUser() {
51 UserAdministration admin = new UserAdministrationImpl(
52 new InMemoryUserSet( new RegexpNameValidator(RegexpNameValidator.PASSWORD_PATTERN, Reason.INVALID_PASSWORD, "Password must contain at least 6 characters"),
53 new Md5HexMessageDigester()), new InMemoryGroupSet(),
54 new RegexpNameValidator(RegexpNameValidator.ID_PATTERN, Reason.INVALID_USERNAME, "Invalid user"),
55 new RegexpNameValidator(RegexpNameValidator.ID_PATTERN, Reason.INVALID_GROUPNAME, "Invalid group")
58 Group group = admin.createGroup(GROUP);
59 return admin.createUser(USER, PASSWORD, group);
60 } catch (UserMgtException e) {
61 TestCase.fail(e.getMessage());
62 throw new RuntimeException(e);