diff options
author | Olivier Lamy <olamy@apache.org> | 2015-02-13 09:42:40 +1100 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2015-02-13 09:42:40 +1100 |
commit | d12480258874fc79025a9abb34bdf149b5aa605a (patch) | |
tree | 6f2dc431fcc507d74e405e082d041379b30262a6 /archiva-modules/archiva-web | |
parent | d533e27ab231cbeeb9e59f3671510e461564e046 (diff) | |
download | archiva-d12480258874fc79025a9abb34bdf149b5aa605a.tar.gz archiva-d12480258874fc79025a9abb34bdf149b5aa605a.zip |
test not needed anymore
Diffstat (limited to 'archiva-modules/archiva-web')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/webdav/RepositoryServletProxiedRelocatedTest.java | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/webdav/RepositoryServletProxiedRelocatedTest.java b/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/webdav/RepositoryServletProxiedRelocatedTest.java deleted file mode 100644 index 0f9a123a8..000000000 --- a/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/webdav/RepositoryServletProxiedRelocatedTest.java +++ /dev/null @@ -1,78 +0,0 @@ -package org.apache.archiva.webdav; - -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - - -import com.gargoylesoftware.htmlunit.WebRequest; -import com.gargoylesoftware.htmlunit.WebResponse; -import org.apache.archiva.policies.ReleasesPolicy; -import org.junit.Test; - -/** - * RepositoryServlet Tests, Proxied, Get of Release Artifacts, with varying policy settings. - * - */ -public class RepositoryServletProxiedRelocatedTest - extends AbstractRepositoryServletProxiedTestCase -{ - - @Test - public void testGetProxiedReleaseArtifactPolicyOncePass() - throws Exception - { - // --- Setup - setupCentralRemoteRepo(); - setupCleanInternalRepo(); - - String resourcePath = "org/apache/archiva/test/1.0/test-1.0.jar"; - String expectedRemoteContents = "archiva-test-1.0|jar-remote-contents"; - populateRepo( remoteCentral, resourcePath, expectedRemoteContents ); - - resourcePath = "archiva/test/1.0/test-1.0.pom"; - String pom = "<project>" + - "<modelVersion>4.0.0</modelVersion>" + - "<groupId>archiva</groupId>" + - "<artifactId>test</artifactId>" + - "<version>1.0</version>" + - "<distributionManagement>" + - "<relocation>" + - "<groupId>org.apache.archiva</groupId>" + - "</relocation>" + - "</distributionManagement>" + - "</project>"; - populateRepo( remoteCentral, resourcePath, pom ); - - resourcePath = "archiva/jars/test-1.0.jar"; - - setupReleaseConnector( REPOID_INTERNAL, remoteCentral, ReleasesPolicy.ONCE ); - saveConfiguration(); - - // --- Execution - // process the response code later, not via an exception. - //HttpUnitOptions.setExceptionsThrownOnErrorStatus( false ); - - WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + resourcePath ); - WebResponse response = getServletUnitClient().getResponse( request ); - - // --- Verification - assertResponseNotFound( response ); - - } -} |