1 package org.apache.maven.archiva.webdav;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
23 import org.apache.maven.archiva.configuration.Configuration;
24 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
25 import org.apache.maven.archiva.webdav.RepositoryServlet;
27 import com.meterware.httpunit.GetMethodWebRequest;
28 import com.meterware.httpunit.WebRequest;
29 import com.meterware.httpunit.WebResponse;
30 import org.junit.Test;
35 * RepositoryServletTest
39 public class RepositoryServletTest
40 extends AbstractRepositoryServletTestCase
42 private static final String REQUEST_PATH = "http://machine.com/repository/internal/";
44 private static final String NEW_REPOSITORY_ID = "new-id";
46 private static final String NEW_REPOSITORY_NAME = "New Repository";
49 public void testGetRepository()
52 RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
53 assertNotNull( servlet );
55 assertRepositoryValid( servlet, REPOID_INTERNAL );
59 public void testGetRepositoryAfterDelete()
62 RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
63 assertNotNull( servlet );
65 ArchivaConfiguration archivaConfiguration = servlet.getConfiguration();
66 Configuration c = archivaConfiguration.getConfiguration();
67 c.removeManagedRepository( c.findManagedRepositoryById( REPOID_INTERNAL ) );
68 saveConfiguration( archivaConfiguration );
70 ManagedRepositoryConfiguration repository = servlet.getRepository( REPOID_INTERNAL );
71 assertNull( repository );
75 public void testGetRepositoryAfterAdd()
78 RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
79 assertNotNull( servlet );
81 ArchivaConfiguration archivaConfiguration = servlet.getConfiguration();
82 Configuration c = archivaConfiguration.getConfiguration();
83 ManagedRepositoryConfiguration repo = new ManagedRepositoryConfiguration();
84 repo.setId( NEW_REPOSITORY_ID );
85 repo.setName( NEW_REPOSITORY_NAME );
86 File repoRoot = new File( "target/test-repository-root" );
87 if ( !repoRoot.exists() )
91 repo.setLocation( repoRoot.getAbsolutePath() );
92 c.addManagedRepository( repo );
93 saveConfiguration( archivaConfiguration );
95 ManagedRepositoryConfiguration repository = servlet.getRepository( NEW_REPOSITORY_ID );
96 assertNotNull( repository );
97 assertEquals( NEW_REPOSITORY_NAME, repository.getName() );
99 // check other is still intact
100 assertRepositoryValid( servlet, REPOID_INTERNAL );
104 public void testGetRepositoryInvalidPathPassthroughPresent()
107 String path = REQUEST_PATH + ".index/filecontent/segments.gen";
109 populateRepo( repoRootInternal, ".index/filecontent/segments.gen", "index file" );
111 WebRequest request = new GetMethodWebRequest( path );
112 WebResponse response = sc.getResponse( request );
113 assertResponseOK( response );
114 assertEquals( "index file", response.getText() );
118 public void testGetRepositoryInvalidPathPassthroughMissing()
121 String path = REQUEST_PATH + ".index/filecontent/foo.bar";
123 WebRequest request = new GetMethodWebRequest( path );
124 WebResponse response = sc.getResponse( request );
125 assertResponseNotFound( response );
126 assertEquals( "Invalid path to Artifact: legacy paths should have an expected type ending in [s] in the second part of the path.", response.getResponseMessage() );