]> source.dussan.org Git - archiva.git/blob
1d5e13df8ffdb5ed20ff40c29ed4583855582949
[archiva.git] /
1 package org.apache.archiva.webdav;
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 com.meterware.httpunit.GetMethodWebRequest;
23 import com.meterware.httpunit.HttpUnitOptions;
24 import com.meterware.httpunit.WebRequest;
25 import com.meterware.httpunit.WebResponse;
26
27 import org.apache.archiva.policies.ReleasesPolicy;
28 import org.junit.Test;
29
30 /**
31  * RepositoryServlet Tests, Proxied, Get of Release Artifacts, with varying policy settings.
32  *
33  * @version $Id: RepositoryServletProxiedReleasePolicyTest.java 590908 2007-11-01 06:21:26Z joakime $
34  */
35 public class RepositoryServletProxiedRelocatedTest
36     extends AbstractRepositoryServletProxiedTestCase
37 {
38
39     @Test
40     public void testGetProxiedReleaseArtifactPolicyOncePass()
41         throws Exception
42     {
43         // --- Setup
44         setupCentralRemoteRepo();
45         setupCleanInternalRepo();
46
47         String resourcePath = "org/apache/archiva/test/1.0/test-1.0.jar";
48         String expectedRemoteContents = "archiva-test-1.0|jar-remote-contents";
49         populateRepo( remoteCentral, resourcePath, expectedRemoteContents );
50
51         resourcePath = "archiva/test/1.0/test-1.0.pom";
52         String pom = "<project>" +
53                 "<modelVersion>4.0.0</modelVersion>" +
54                 "<groupId>archiva</groupId>" +
55                 "<artifactId>test</artifactId>" +
56                 "<version>1.0</version>" +
57                 "<distributionManagement>" +
58                 "<relocation>" +
59                 "<groupId>org.apache.archiva</groupId>" +
60                 "</relocation>" +
61                 "</distributionManagement>" +
62                 "</project>";
63         populateRepo( remoteCentral, resourcePath, pom );
64
65         resourcePath = "archiva/jars/test-1.0.jar";
66
67         setupReleaseConnector( REPOID_INTERNAL, remoteCentral, ReleasesPolicy.ONCE );
68         saveConfiguration();
69
70         // --- Execution
71         // process the response code later, not via an exception.
72         HttpUnitOptions.setExceptionsThrownOnErrorStatus( false );
73
74         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + resourcePath );
75         WebResponse response = getServletUnitClient().getResponse( request );
76
77         // --- Verification
78         assertResponseOK( response );
79         assertEquals( "Expected remote file contents", expectedRemoteContents, response.getText() );
80     }
81 }