]> source.dussan.org Git - archiva.git/blob
5f221cf9ed647819330975e4755b4e488be8bb1f
[archiva.git] /
1 package org.apache.archiva.rest.services;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.model.beans.RedbackRuntimeConfiguration;
22 import org.apache.archiva.rest.api.model.UserManagerImplementationInformation;
23 import org.apache.archiva.rest.api.services.RedbackRuntimeConfigurationService;
24 import org.fest.assertions.api.Assertions;
25 import org.junit.Test;
26
27 import java.util.Arrays;
28 import java.util.List;
29
30 /**
31  * @author Olivier Lamy
32  */
33 public class ArchivaRuntimeConfigurationServiceTest
34     extends AbstractArchivaRestTest
35 {
36     @Test
37     public void nonnullConfiguration()
38         throws Exception
39     {
40         RedbackRuntimeConfiguration redbackRuntimeConfiguration =
41             getArchivaRuntimeConfigurationService().getRedbackRuntimeConfiguration();
42         assertEquals( "jdo", redbackRuntimeConfiguration.getUserManagerImpls().get( 0 ) );
43     }
44
45     @Test
46     public void update()
47         throws Exception
48     {
49         RedbackRuntimeConfiguration redbackRuntimeConfiguration =
50             getArchivaRuntimeConfigurationService().getRedbackRuntimeConfiguration();
51         assertEquals( "jdo", redbackRuntimeConfiguration.getUserManagerImpls().get( 0 ) );
52
53         redbackRuntimeConfiguration.setUserManagerImpls( Arrays.asList( "foo" ) );
54
55         getArchivaRuntimeConfigurationService().updateRedbackRuntimeConfiguration( redbackRuntimeConfiguration );
56
57         redbackRuntimeConfiguration = getArchivaRuntimeConfigurationService().getRedbackRuntimeConfiguration();
58         assertEquals( "foo", redbackRuntimeConfiguration.getUserManagerImpls().get( 0 ) );
59
60     }
61
62
63     @Test
64     public void usermanagersinformations()
65         throws Exception
66     {
67         RedbackRuntimeConfigurationService service = getArchivaRuntimeConfigurationService();
68         List<UserManagerImplementationInformation> infos = service.getUserManagerImplementationInformations();
69         Assertions.assertThat( infos ).isNotNull().isNotEmpty().contains(
70             new UserManagerImplementationInformation( "jdo", null, false ) );
71
72     }
73
74 }