]> source.dussan.org Git - archiva.git/blob
21d2bce305bef3148ad7ab1e5d6e83972f2204f9
[archiva.git] /
1 package org.apache.maven.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 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;
26
27 import com.meterware.httpunit.GetMethodWebRequest;
28 import com.meterware.httpunit.WebRequest;
29 import com.meterware.httpunit.WebResponse;
30 import org.junit.Test;
31
32 import java.io.File;
33
34 /**
35  * RepositoryServletTest 
36  *
37  * @version $Id$
38  */
39 public class RepositoryServletTest
40     extends AbstractRepositoryServletTestCase
41 {
42     private static final String REQUEST_PATH = "http://machine.com/repository/internal/";
43
44     private static final String NEW_REPOSITORY_ID = "new-id";
45
46     private static final String NEW_REPOSITORY_NAME = "New Repository";
47
48     @Test
49     public void testGetRepository()
50         throws Exception
51     {
52         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
53         assertNotNull( servlet );
54
55         assertRepositoryValid( servlet, REPOID_INTERNAL );
56     }
57
58     @Test
59     public void testGetRepositoryAfterDelete()
60         throws Exception
61     {
62         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
63         assertNotNull( servlet );
64
65         ArchivaConfiguration archivaConfiguration = servlet.getConfiguration();
66         Configuration c = archivaConfiguration.getConfiguration();
67         c.removeManagedRepository( c.findManagedRepositoryById( REPOID_INTERNAL ) );
68         saveConfiguration( archivaConfiguration );
69
70         ManagedRepositoryConfiguration repository = servlet.getRepository( REPOID_INTERNAL );
71         assertNull( repository );
72     }
73
74     @Test
75     public void testGetRepositoryAfterAdd()
76         throws Exception
77     {
78         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
79         assertNotNull( servlet );
80
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() )
88         {
89             repoRoot.mkdirs();
90         }
91         repo.setLocation( repoRoot.getAbsolutePath() );
92         c.addManagedRepository( repo );
93         saveConfiguration( archivaConfiguration );
94
95         ManagedRepositoryConfiguration repository = servlet.getRepository( NEW_REPOSITORY_ID );
96         assertNotNull( repository );
97         assertEquals( NEW_REPOSITORY_NAME, repository.getName() );
98
99         // check other is still intact
100         assertRepositoryValid( servlet, REPOID_INTERNAL );
101     }
102
103     @Test
104     public void testGetRepositoryInvalidPathPassthroughPresent()
105         throws Exception
106     {
107         String path = REQUEST_PATH + ".index/filecontent/segments.gen";
108
109         populateRepo( repoRootInternal, ".index/filecontent/segments.gen", "index file" );
110         
111         WebRequest request = new GetMethodWebRequest( path );
112         WebResponse response = sc.getResponse( request );
113         assertResponseOK( response );
114         assertEquals( "index file", response.getText() );        
115     }
116
117     @Test
118     public void testGetRepositoryInvalidPathPassthroughMissing()
119         throws Exception
120     {
121         String path = REQUEST_PATH + ".index/filecontent/foo.bar";
122
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() );
127     }
128 }