02e090206c87e7736ffee7555400030843c850a4
[utils] / security / src / test / java / org / wamblee / security / authorization / TestUserAccessor.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.security.authorization;
18
19 import junit.framework.TestCase;
20
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;
32
33 /**
34  * User access that always returns a user that belongs to
35  * a fixed group. 
36  *
37  * @author Erik Brakkee
38  */
39 public class TestUserAccessor implements UserAccessor {
40     
41     private static final String USER = "erik"; 
42     private static final String PASSWORD = "abc123";
43     private static final String GROUP = "users";
44
45     /*
46      * (non-Javadoc)
47      * 
48      * @see org.wamblee.usermgt.UserAccessor#getCurrentUser()
49      */
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")
56         );
57         try {
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);
63         }
64     }
65
66 }