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