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