From d12480258874fc79025a9abb34bdf149b5aa605a Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 13 Feb 2015 09:42:40 +1100 Subject: [PATCH] test not needed anymore --- ...RepositoryServletProxiedRelocatedTest.java | 78 ------------------- 1 file changed, 78 deletions(-) delete mode 100644 archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/webdav/RepositoryServletProxiedRelocatedTest.java 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 = "" + - "4.0.0" + - "archiva" + - "test" + - "1.0" + - "" + - "" + - "org.apache.archiva" + - "" + - "" + - ""; - 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 ); - - } -} -- 2.39.5