Removed DOCUMENT ME comments that were generated and applied source code
[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 package org.wamblee.security.authorization;
17
18 import junit.framework.TestCase;
19
20 import org.wamblee.security.encryption.Md5HexMessageDigester;
21
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 a fixed group.
35  * 
36  * @author Erik Brakkee
37  */
38 public class TestUserAccessor implements UserAccessor {
39     private static final String USER = "erik";
40
41     private static final String PASSWORD = "abc123";
42
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(
53                 RegexpNameValidator.PASSWORD_PATTERN, Reason.INVALID_PASSWORD,
54                 "Password must contain at least 6 characters"),
55                 new Md5HexMessageDigester()), new InMemoryGroupSet(),
56             new RegexpNameValidator(RegexpNameValidator.ID_PATTERN,
57                 Reason.INVALID_USERNAME, "Invalid user"),
58             new RegexpNameValidator(RegexpNameValidator.ID_PATTERN,
59                 Reason.INVALID_GROUPNAME, "Invalid group"));
60
61         try {
62             Group group = admin.createGroup(GROUP);
63
64             return admin.createUser(USER, PASSWORD, group);
65         } catch (UserMgtException e) {
66             TestCase.fail(e.getMessage());
67             throw new RuntimeException(e);
68         }
69     }
70 }