]> source.dussan.org Git - archiva.git/blob
a9b14cd890456e7fa30ea984bda0b282f5610c9c
[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.rest.api.model.ManagedRepository;
23 import org.apache.archiva.rest.api.services.ManagedRepositoriesService;
24 import org.apache.archiva.rest.api.services.RepositoriesService;
25 import org.apache.cxf.jaxrs.client.ServerWebApplicationException;
26 import org.apache.cxf.jaxrs.client.WebClient;
27 import org.apache.maven.archiva.common.utils.FileUtil;
28 import org.junit.Test;
29
30 import java.io.File;
31
32 /**
33  * @author Olivier Lamy
34  */
35 public class RepositoriesServiceTest
36     extends AbstractArchivaRestTest
37 {
38
39     @Test( expected = ServerWebApplicationException.class )
40     public void scanRepoKarmaFailed()
41         throws Exception
42     {
43         RepositoriesService service = getRepositoriesService();
44         try
45         {
46             service.scanRepository( "id", true );
47         }
48         catch ( ServerWebApplicationException e )
49         {
50             assertEquals( 403, e.getStatus() );
51             throw e;
52         }
53     }
54
55     @Test
56     public void scanRepo()
57         throws Exception
58     {
59         RepositoriesService service = getRepositoriesService();
60         WebClient.client( service ).header( "Authorization", authorizationHeader );
61         WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
62
63         ManagedRepositoriesService managedRepositoriesService = getManagedRepositoriesService();
64         WebClient.client( managedRepositoriesService ).header( "Authorization", authorizationHeader );
65         WebClient.getConfig( managedRepositoriesService ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
66
67         String repoId = managedRepositoriesService.getManagedRepositories().get( 0 ).getId();
68
69         assertTrue( service.scanRepository( repoId, true ) );
70
71         log.info( "scanRepo call ok " );
72
73         assertTrue( service.alreadyScanning( repoId ) );
74
75     }
76
77
78     protected ManagedRepository getTestManagedRepository()
79     {
80         String location = new File( FileUtil.getBasedir(), "target/test-repo" ).getAbsolutePath();
81         return new ManagedRepository( "TEST", "test", location, "default", true, true, false, false, "2 * * * * ?" );
82     }
83
84 }