]> source.dussan.org Git - archiva.git/blob
a5dc3491c7905f030b0919df2d4c01b6fd338c66
[archiva.git] /
1 package org.apache.archiva.metadata.repository.storage.maven2;
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.archiva.metadata.model.ProjectVersionMetadata;
23 import org.apache.archiva.metadata.repository.filter.AllFilter;
24 import org.apache.archiva.metadata.repository.filter.Filter;
25 import org.apache.archiva.metadata.repository.storage.ReadMetadataRequest;
26 import org.apache.archiva.metadata.repository.storage.RepositoryStorageRuntimeException;
27 import org.apache.archiva.proxy.maven.WagonFactory;
28 import org.apache.archiva.repository.RepositoryRegistry;
29 import org.junit.Before;
30 import org.junit.Test;
31
32 import javax.inject.Inject;
33 import javax.inject.Named;
34
35
36 public class Maven2RepositoryMetadataResolverManagedReleaseTest
37     extends Maven2RepositoryMetadataResolverTest
38 {
39     private static final Filter<String> ALL = new AllFilter<String>();
40
41     @Inject
42     @Named ( "repositoryStorage#maven2")
43     private Maven2RepositoryStorage storage;
44
45     @Inject
46     RepositoryRegistry repositoryRegistry;
47
48     private static final String TEST_REPO_ID = "test";
49
50     private static final String TEST_REMOTE_REPO_ID = "central";
51
52     private static final String ASF_SCM_CONN_BASE = "scm:svn:http://svn.apache.org/repos/asf/";
53
54     private static final String ASF_SCM_DEV_CONN_BASE = "scm:svn:https://svn.apache.org/repos/asf/";
55
56     private static final String ASF_SCM_VIEWVC_BASE = "http://svn.apache.org/viewvc/";
57
58     private static final String TEST_SCM_CONN_BASE = "scm:svn:http://svn.example.com/repos/";
59
60     private static final String TEST_SCM_DEV_CONN_BASE = "scm:svn:https://svn.example.com/repos/";
61
62     private static final String TEST_SCM_URL_BASE = "http://svn.example.com/repos/";
63
64     private static final String EMPTY_MD5 = "d41d8cd98f00b204e9800998ecf8427e";
65
66     private static final String EMPTY_SHA1 = "da39a3ee5e6b4b0d3255bfef95601890afd80709";
67
68     private WagonFactory wagonFactory;
69
70     @Before
71     @Override
72     public void setUp()
73         throws Exception
74     {
75         super.setUp();
76
77         testRepo.setReleases( true );
78         testRepo.setSnapshots( false );
79
80         configuration.save( c );
81
82         repositoryRegistry.reload();
83
84         assertFalse( c.getManagedRepositories().get( 0 ).isSnapshots() );
85         assertTrue( c.getManagedRepositories().get( 0 ).isReleases() );
86
87     }
88
89     @Test
90     @Override
91     public void testModelWithJdkProfileActivation()
92         throws Exception
93     {
94         // skygo IMHO must fail because TEST_REPO_ID ( is snap ,no release) and we seek for a snapshot
95
96         ReadMetadataRequest readMetadataRequest =
97             new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "org.apache.maven" ).projectId(
98                 "maven-archiver" ).projectVersion( "2.4.1" );
99
100         ProjectVersionMetadata metadata = storage.readProjectVersionMetadata( readMetadataRequest );
101     }
102
103     @Test (expected = RepositoryStorageRuntimeException.class)
104     @Override
105     public void testGetProjectVersionMetadataForTimestampedSnapshotMissingMetadata()
106         throws Exception
107     {
108         ReadMetadataRequest readMetadataRequest =
109             new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "com.example.test" ).projectId(
110                 "missing-metadata" ).projectVersion( "1.0-SNAPSHOT" );
111         storage.readProjectVersionMetadata( readMetadataRequest );
112     }
113
114     @Test (expected = RepositoryStorageRuntimeException.class)
115     @Override
116     public void testGetProjectVersionMetadataForTimestampedSnapshotMalformedMetadata()
117         throws Exception
118     {
119         ReadMetadataRequest readMetadataRequest =
120             new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "com.example.test" ).projectVersion(
121                 "malformed-metadata" ).projectVersion( "1.0-SNAPSHOT" );
122         storage.readProjectVersionMetadata( readMetadataRequest );
123     }
124
125     @Test (expected = RepositoryStorageRuntimeException.class)
126     @Override
127     public void testGetProjectVersionMetadataForTimestampedSnapshot()
128         throws Exception
129     {
130         super.testGetProjectVersionMetadataForTimestampedSnapshot();
131     }
132
133
134     @Test (expected = RepositoryStorageRuntimeException.class)
135     @Override
136     public void testGetProjectVersionMetadataForTimestampedSnapshotIncompleteMetadata()
137         throws Exception
138     {
139         super.testGetProjectVersionMetadataForTimestampedSnapshotIncompleteMetadata();
140     }
141
142 }