]> source.dussan.org Git - archiva.git/blob
58e9159beb1e61cf909f082974b3e5f516fa5659
[archiva.git] /
1 package org.apache.archiva.rest.services;
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.admin.model.beans.ManagedRepository;
23 import org.apache.archiva.rest.api.model.ArchivaRepositoryStatistics;
24 import org.apache.archiva.rest.api.services.ManagedRepositoriesService;
25 import org.apache.archiva.rest.api.services.RepositoriesService;
26 import org.junit.Test;
27
28 import java.io.File;
29
30 /**
31  * @author Olivier Lamy
32  */
33 public class ManagedRepositoriesServiceTest
34     extends AbstractArchivaRestTest
35 {
36
37
38     @Test
39     public void addManagedRepo()
40         throws Exception
41     {
42         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
43
44         ManagedRepository repo = getTestManagedRepository();
45         if ( service.getManagedRepository( repo.getId() ) != null )
46         {
47             service.deleteManagedRepository( repo.getId(), true );
48             assertNull( service.getManagedRepository( repo.getId() ) );
49         }
50         service.addManagedRepository( repo );
51         assertNotNull( service.getManagedRepository( repo.getId() ) );
52
53         service.deleteManagedRepository( repo.getId(), true );
54         assertNull( service.getManagedRepository( repo.getId() ) );
55     }
56
57     @Test
58     public void updateManagedRepo()
59         throws Exception
60     {
61         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
62
63         ManagedRepository repo = getTestManagedRepository();
64         if ( service.getManagedRepository( repo.getId() ) != null )
65         {
66             service.deleteManagedRepository( repo.getId(), true );
67             assertNull( service.getManagedRepository( repo.getId() ) );
68         }
69         service.addManagedRepository( repo );
70         repo = service.getManagedRepository( repo.getId() );
71         assertNotNull( repo );
72         assertEquals( "test", repo.getName() );
73         // toto is foo in French :-)
74         repo.setName( "toto" );
75
76         service.updateManagedRepository( repo );
77
78         repo = service.getManagedRepository( repo.getId() );
79         assertNotNull( repo );
80         assertEquals( "toto", repo.getName() );
81
82         service.deleteManagedRepository( repo.getId(), true );
83         assertNull( service.getManagedRepository( repo.getId() ) );
84
85     }
86
87     //@Test
88     public void fileLocationExists()
89         throws Exception
90     {
91         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
92         File target = new File( "target" );
93
94         assertTrue( service.fileLocationExists( target.getCanonicalPath() ) );
95
96         // normally should not exists :-)
97         assertFalse( service.fileLocationExists( "/fooofofof/foddfdofd/dedede/kdeo" ) );
98
99     }
100
101     @Test
102     public void getManagedRepositoryStatistics()
103         throws Exception
104     {
105
106         String testRepoId = "test-repo";
107         // force guest user creation if not exists
108         if ( getUserService( authorizationHeader ).getGuestUser() == null )
109         {
110             assertNotNull( getUserService( authorizationHeader ).createGuestUser() );
111         }
112
113         createAndIndexRepo( testRepoId, "src/test/repo-with-osgi" );
114
115         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
116
117         ArchivaRepositoryStatistics archivaRepositoryStatistics = service.getManagedRepositoryStatistics( testRepoId );
118
119         assertNotNull( archivaRepositoryStatistics );
120
121         log.info( "archivaRepositoryStatistics:" + archivaRepositoryStatistics.toString() );
122
123         assertEquals( 92, archivaRepositoryStatistics.getNewFileCount() );
124         assertEquals( 92, archivaRepositoryStatistics.getTotalFileCount() );
125
126         deleteTestRepo( testRepoId );
127     }
128 }