1 package org.apache.archiva.repository.maven.metadata.storage;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
21 import org.apache.archiva.filter.AllFilter;
22 import org.apache.archiva.filter.Filter;
23 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
24 import org.apache.archiva.metadata.repository.storage.ReadMetadataRequest;
25 import org.apache.archiva.metadata.repository.storage.RepositoryStorageRuntimeException;
26 import org.apache.archiva.repository.RepositoryRegistry;
27 import org.apache.archiva.repository.base.managed.ManagedRepositoryHandler;
28 import org.junit.Before;
29 import org.junit.Test;
31 import javax.inject.Inject;
32 import javax.inject.Named;
34 public class Maven2RepositoryMetadataResolverManagedSnapshotTest
35 extends Maven2RepositoryMetadataResolverTest
37 private static final Filter<String> ALL = new AllFilter<String>();
40 @Named ( "repositoryStorage#maven2")
41 private Maven2RepositoryStorage storage;
44 RepositoryRegistry repositoryRegistry;
46 @SuppressWarnings( "unused" )
48 ManagedRepositoryHandler managedRepositoryHandler;
51 private static final String TEST_REPO_ID = "test";
53 private static final String TEST_REMOTE_REPO_ID = "central";
55 private static final String ASF_SCM_CONN_BASE = "scm:svn:http://svn.apache.org/repos/asf/";
57 private static final String ASF_SCM_DEV_CONN_BASE = "scm:svn:https://svn.apache.org/repos/asf/";
59 private static final String ASF_SCM_VIEWVC_BASE = "http://svn.apache.org/viewvc/";
61 private static final String TEST_SCM_CONN_BASE = "scm:svn:http://svn.example.com/repos/";
63 private static final String TEST_SCM_DEV_CONN_BASE = "scm:svn:https://svn.example.com/repos/";
65 private static final String TEST_SCM_URL_BASE = "http://svn.example.com/repos/";
67 private static final String EMPTY_MD5 = "d41d8cd98f00b204e9800998ecf8427e";
70 private static final String EMPTY_SHA1 = "da39a3ee5e6b4b0d3255bfef95601890afd80709";
80 testRepo.setReleases( false );
81 testRepo.setSnapshots( true );
83 configuration.save( c );
85 repositoryRegistry.reload();
87 assertTrue( c.getManagedRepositories().get( 0 ).isSnapshots() );
88 assertFalse( c.getManagedRepositories().get( 0 ).isReleases() );
91 @Test (expected = RepositoryStorageRuntimeException.class)
93 public void testModelWithJdkProfileActivation()
96 // skygo IMHO must fail because TEST_REPO_ID ( is snap ,no release) and we seek for a snapshot
98 ReadMetadataRequest readMetadataRequest =
99 new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "org.apache.maven" ).projectId(
100 "maven-archiver" ).projectVersion( "2.4.1" );
102 ProjectVersionMetadata metadata = storage.readProjectVersionMetadata( readMetadataRequest );
105 @Test (expected = RepositoryStorageRuntimeException.class)
107 public void testGetProjectVersionMetadataForMislocatedPom()
110 ReadMetadataRequest readMetadataRequest =
111 new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "com.example.test" ).projectId(
112 "mislocated-pom" ).projectVersion( "1.0" );
113 storage.readProjectVersionMetadata( readMetadataRequest );
119 public void testGetProjectVersionMetadata()
122 // super test is on release
125 @Test (expected = RepositoryStorageRuntimeException.class)
127 public void testGetProjectVersionMetadataForInvalidPom()
130 ReadMetadataRequest readMetadataRequest =
131 new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "com.example.test" ).projectId(
132 "invalid-pom" ).projectVersion( "1.0" );
133 storage.readProjectVersionMetadata( readMetadataRequest );
136 @Test (expected = RepositoryStorageRuntimeException.class)
138 public void testGetProjectVersionMetadataForMissingPom()
141 ReadMetadataRequest readMetadataRequest =
142 new ReadMetadataRequest().repositoryId( TEST_REPO_ID ).namespace( "com.example.test" ).projectId(
143 "missing-pom" ).projectVersion( "1.0" );
144 storage.readProjectVersionMetadata( readMetadataRequest );