]> source.dussan.org Git - archiva.git/blob
1c51598490272f89f00871e61d48bc543f83d5b0
[archiva.git] /
1 package org.apache.maven.archiva.web.repository;
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 java.io.File;
27
28 /**
29  * RepositoryServletTest 
30  *
31  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
32  * @version $Id$
33  */
34 public class RepositoryServletTest
35     extends AbstractRepositoryServletTestCase
36 {
37     private static final String REQUEST_PATH = "http://machine.com/repository/internal/";
38
39     private static final String NEW_REPOSITORY_ID = "new-id";
40
41     private static final String NEW_REPOSITORY_NAME = "New Repository";
42
43     public void testGetRepository()
44         throws Exception
45     {
46         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
47         assertNotNull( servlet );
48
49         assertRepositoryValid( servlet, REPOID_INTERNAL );
50     }
51
52     public void testGetRepositoryAfterDelete()
53         throws Exception
54     {
55         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
56         assertNotNull( servlet );
57
58         ArchivaConfiguration archivaConfiguration = servlet.getConfiguration();
59         Configuration c = archivaConfiguration.getConfiguration();
60         c.removeManagedRepository( c.findManagedRepositoryById( REPOID_INTERNAL ) );
61         saveConfiguration( archivaConfiguration );
62
63         ManagedRepositoryConfiguration repository = servlet.getRepository( REPOID_INTERNAL );
64         assertNull( repository );
65     }
66
67     public void testGetRepositoryAfterAdd()
68         throws Exception
69     {
70         RepositoryServlet servlet = (RepositoryServlet) sc.newInvocation( REQUEST_PATH ).getServlet();
71         assertNotNull( servlet );
72
73         ArchivaConfiguration archivaConfiguration = servlet.getConfiguration();
74         Configuration c = archivaConfiguration.getConfiguration();
75         ManagedRepositoryConfiguration repo = new ManagedRepositoryConfiguration();
76         repo.setId( NEW_REPOSITORY_ID );
77         repo.setName( NEW_REPOSITORY_NAME );
78         File repoRoot = new File( getBasedir(), "target/test-repository-root" );
79         if ( !repoRoot.exists() )
80         {
81             repoRoot.mkdirs();
82         }
83         repo.setLocation( repoRoot.getAbsolutePath() );
84         c.addManagedRepository( repo );
85         saveConfiguration( archivaConfiguration );
86
87         ManagedRepositoryConfiguration repository = servlet.getRepository( NEW_REPOSITORY_ID );
88         assertNotNull( repository );
89         assertEquals( NEW_REPOSITORY_NAME, repository.getName() );
90
91         // check other is still intact
92         assertRepositoryValid( servlet, REPOID_INTERNAL );
93     }
94 }