]> source.dussan.org Git - archiva.git/blob
684b8529bd5cf4226fbd957abbce22cfefa7ca34
[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         RepositoriesService repositoriesService = getRepositoriesService( authorizationHeader );
54
55         int timeout = 20000;
56         while ( timeout > 0 && repositoriesService.alreadyScanning( repo.getId() ) )
57         {
58             Thread.sleep( 500 );
59             timeout -= 500;
60         }
61
62         service.deleteManagedRepository( repo.getId(), true );
63         assertNull( service.getManagedRepository( repo.getId() ) );
64     }
65
66     @Test
67     public void updateManagedRepo()
68         throws Exception
69     {
70         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
71
72         ManagedRepository repo = getTestManagedRepository();
73         if ( service.getManagedRepository( repo.getId() ) != null )
74         {
75             service.deleteManagedRepository( repo.getId(), true );
76             assertNull( service.getManagedRepository( repo.getId() ) );
77         }
78         service.addManagedRepository( repo );
79
80         RepositoriesService repositoriesService = getRepositoriesService( authorizationHeader );
81
82         int timeout = 20000;
83         while ( timeout > 0 && repositoriesService.alreadyScanning( repo.getId() ) )
84         {
85             Thread.sleep( 500 );
86             timeout -= 500;
87         }
88
89         repo = service.getManagedRepository( repo.getId() );
90         assertNotNull( repo );
91         assertEquals( "test", repo.getName() );
92         // toto is foo in French :-)
93         repo.setName( "toto" );
94
95         service.updateManagedRepository( repo );
96
97         repo = service.getManagedRepository( repo.getId() );
98         assertNotNull( repo );
99         assertEquals( "toto", repo.getName() );
100
101         timeout = 20000;
102         while ( timeout > 0 && repositoriesService.alreadyScanning( repo.getId() ) )
103         {
104             Thread.sleep( 500 );
105             timeout -= 500;
106         }
107
108         service.deleteManagedRepository( repo.getId(), true );
109         assertNull( service.getManagedRepository( repo.getId() ) );
110
111     }
112
113     //@Test
114     public void fileLocationExists()
115         throws Exception
116     {
117         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
118         File target = new File( "target" );
119
120         assertTrue( service.fileLocationExists( target.getCanonicalPath() ) );
121
122         // normally should not exists :-)
123         assertFalse( service.fileLocationExists( "/fooofofof/foddfdofd/dedede/kdeo" ) );
124
125     }
126
127     @Test
128     public void getManagedRepositoryStatistics()
129         throws Exception
130     {
131
132         String testRepoId = "test-repo";
133         // force guest user creation if not exists
134         if ( getUserService( authorizationHeader ).getGuestUser() == null )
135         {
136             assertNotNull( getUserService( authorizationHeader ).createGuestUser() );
137         }
138
139         createAndIndexRepo( testRepoId, "src/test/repo-with-osgi" );
140
141         ManagedRepositoriesService service = getManagedRepositoriesService( authorizationHeader );
142
143         ArchivaRepositoryStatistics archivaRepositoryStatistics =
144             service.getManagedRepositoryStatistics( testRepoId, "en" );
145
146         assertNotNull( archivaRepositoryStatistics );
147
148         log.info( "archivaRepositoryStatistics:" + archivaRepositoryStatistics.toString() );
149
150         assertEquals( 92, archivaRepositoryStatistics.getNewFileCount() );
151         assertEquals( 92, archivaRepositoryStatistics.getTotalFileCount() );
152
153         deleteTestRepo( testRepoId );
154     }
155 }