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