]> source.dussan.org Git - archiva.git/blob
ddd2283648b24870ba287d9b83afbce30900722b
[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.meterware.httpunit.GetMethodWebRequest;
23 import com.meterware.httpunit.WebRequest;
24 import com.meterware.httpunit.WebResponse;
25 import org.apache.commons.io.FileUtils;
26 import org.junit.Test;
27
28 import java.io.File;
29 import java.nio.charset.Charset;
30
31 /**
32  * RepositoryServletTest
33  */
34 public class RepositoryServletNoProxyMetadataTest
35     extends AbstractRepositoryServletTestCase
36 {
37     @Test
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, Charset.defaultCharset() );
48
49         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + commonsLangMetadata );
50         WebResponse response = getServletUnitClient().getResponse( request );
51         assertResponseOK( response );
52
53         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
54     }
55
56     @Test
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, Charset.defaultCharset() );
67
68         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + commonsLangMetadata );
69         WebResponse response = getServletUnitClient().getResponse( request );
70         assertResponseOK( response );
71
72         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
73     }
74
75     @Test
76     public void testGetGroupMetadataDefaultLayout()
77         throws Exception
78     {
79         String commonsLangMetadata = "commons-lang/maven-metadata.xml";
80         String expectedMetadataContents = "metadata-for-commons-lang-group";
81
82         File checksumFile = new File( repoRootInternal, commonsLangMetadata );
83         checksumFile.getParentFile().mkdirs();
84
85         FileUtils.writeStringToFile( checksumFile, expectedMetadataContents, Charset.defaultCharset() );
86
87         WebRequest request = new GetMethodWebRequest( "http://machine.com/repository/internal/" + commonsLangMetadata );
88         WebResponse response = getServletUnitClient().getResponse( request );
89         assertResponseOK( response );
90
91         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
92     }
93
94     @Test
95     public void testGetSnapshotVersionMetadataDefaultLayout()
96         throws Exception
97     {
98         String assemblyPluginMetadata =
99             "org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-2-SNAPSHOT/maven-metadata.xml";
100         String expectedMetadataContents = "metadata-for-assembly-plugin-version-2.2-beta-2-SNAPSHOT";
101
102         File checksumFile = new File( repoRootInternal, assemblyPluginMetadata );
103         checksumFile.getParentFile().mkdirs();
104
105         FileUtils.writeStringToFile( checksumFile, expectedMetadataContents, Charset.defaultCharset() );
106
107         WebRequest request =
108             new GetMethodWebRequest( "http://machine.com/repository/internal/" + assemblyPluginMetadata );
109         WebResponse response = getServletUnitClient().getResponse( request );
110         assertResponseOK( response );
111
112         assertEquals( "Expected file contents", expectedMetadataContents, response.getText() );
113     }
114
115 }