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