]> source.dussan.org Git - archiva.git/blob
3101798bf687ac704444b21b568467c230084063
[archiva.git] /
1 package org.apache.archiva.security;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.security.common.ArchivaRoleConstants;
23 import org.apache.commons.lang.StringUtils;
24 import org.junit.After;
25 import org.junit.Before;
26 import org.junit.Test;
27
28 import java.util.List;
29
30 /**
31  * DefaultUserRepositoriesTest
32  *
33  * @version $Id$
34  */
35 public class DefaultUserRepositoriesTest
36     extends AbstractSecurityTest
37 {
38
39
40     @Before
41     public void setUp()
42         throws Exception
43     {
44         super.setUp();
45         restoreGuestInitialValues( USER_ALPACA );
46         restoreGuestInitialValues( USER_GUEST );
47         restoreGuestInitialValues( USER_ADMIN );
48     }
49
50     @Test
51     public void testGetObservableRepositoryIds()
52         throws Exception
53     {
54         // create some users.
55         createUser( USER_ALPACA, "Al 'Archiva' Paca" );
56
57         assertEquals( "Expected users", 3, securitySystem.getUserManager().getUsers().size() );
58
59         // some unassigned repo observer roles.
60         setupRepository( "central" );
61         setupRepository( "corporate" );
62         setupRepository( "internal" );
63         setupRepository( "snapshots" );
64         setupRepository( "secret" );
65
66         // some assigned repo observer roles.
67         assignRepositoryObserverRole( USER_ALPACA, "corporate" );
68         assignRepositoryObserverRole( USER_ALPACA, "central" );
69         assignRepositoryObserverRole( USER_GUEST, "corporate" );
70         // the global repo observer role.
71         assignGlobalRepositoryObserverRole( USER_ADMIN );
72
73         assertRepoIds( new String[]{ "central", "corporate" }, userRepos.getObservableRepositoryIds( USER_ALPACA ) );
74         assertRepoIds( new String[]{ "coporate" }, userRepos.getObservableRepositoryIds( USER_GUEST ) );
75         assertRepoIds( new String[]{ "central", "internal", "corporate", "snapshots", "secret" },
76                        userRepos.getObservableRepositoryIds( USER_ADMIN ) );
77
78     }
79
80     @After
81     public void tearDown()
82         throws Exception
83     {
84         super.tearDown();
85         restoreGuestInitialValues( USER_ALPACA );
86         restoreGuestInitialValues( USER_GUEST );
87         restoreGuestInitialValues( USER_ADMIN );
88     }
89
90     private void assertRepoIds( String[] expectedRepoIds, List<String> observableRepositoryIds )
91     {
92         assertNotNull( "Observable Repository Ids cannot be null.", observableRepositoryIds );
93
94         if ( expectedRepoIds.length != observableRepositoryIds.size() )
95         {
96             fail( "Size of Observable Repository Ids wrong, expected <" + expectedRepoIds.length + "> but got <"
97                       + observableRepositoryIds.size() + "> instead. \nExpected: ["
98                       + StringUtils.join( expectedRepoIds, "," ) + "]\nActual: ["
99                       + StringUtils.join( observableRepositoryIds.iterator(), "," ) + "]" );
100         }
101     }
102
103     private void assignGlobalRepositoryObserverRole( String principal )
104         throws Exception
105     {
106         roleManager.assignRole( ArchivaRoleConstants.TEMPLATE_GLOBAL_REPOSITORY_OBSERVER, principal );
107     }
108 }