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