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