]> source.dussan.org Git - archiva.git/blob
2db6fa32e039016e889478df55b3595dc562c0f7
[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 com.meterware.httpunit.GetMethodWebRequest;
23 import com.meterware.httpunit.WebRequest;
24 import com.meterware.httpunit.WebResponse;
25
26 import org.apache.commons.io.FileUtils;
27
28 import java.io.File;
29
30 /**
31  * RepositoryServletTest 
32  *
33  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
34  * @version $Id$
35  */
36 public class RepositoryServletNoProxyMetadataTest
37     extends AbstractRepositoryServletTestCase
38 {
39     public void testGetVersionMetadataDefaultLayout()
40         throws Exception
41     {
42         String commonsLangMetadata = "commons-lang/commons-lang/2.1/maven-metadata.xml";
43         String expectedMetadataContents = "metadata-for-commons-lang-version-2.1";
44
45         File checksumFile = new File( repoRootInternal, commonsLangMetadata );
46         checksumFile.getParentFile().mkdirs();
47
48         FileUtils.writeStringToFile( checksumFile, expectedMetadataContents, null );
49
50         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + commonsLangMetadata );
51         WebResponse response = sc.getResponse( request );
52         assertResponseOK( response );
53
54         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
55     }
56
57     public void testGetProjectMetadataDefaultLayout()
58         throws Exception
59     {
60         String commonsLangMetadata = "commons-lang/commons-lang/maven-metadata.xml";
61         String expectedMetadataContents = "metadata-for-commons-lang-version-for-project";
62
63         File checksumFile = new File( repoRootInternal, commonsLangMetadata );
64         checksumFile.getParentFile().mkdirs();
65
66         FileUtils.writeStringToFile( checksumFile, expectedMetadataContents, null );
67
68         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + commonsLangMetadata );
69         WebResponse response = sc.getResponse( request );
70         assertResponseOK( response );
71
72         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
73     }
74
75     public void testGetSnapshotVersionMetadataDefaultLayout()
76         throws Exception
77     {
78         String assemblyPluginMetadata = "org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-2-SNAPSHOT/maven-metadata.xml";
79         String expectedMetadataContents = "metadata-for-assembly-plugin-version-2.2-beta-2-SNAPSHOT";
80
81         File checksumFile = new File( repoRootInternal, assemblyPluginMetadata );
82         checksumFile.getParentFile().mkdirs();
83
84         FileUtils.writeStringToFile( checksumFile, expectedMetadataContents, null );
85
86         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + assemblyPluginMetadata );
87         WebResponse response = sc.getResponse( request );
88         assertResponseOK( response );
89
90         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
91     }
92
93 }