]> source.dussan.org Git - archiva.git/blob
c2eca44af1b92ec994dd8c65a6f9491b42409afb
[archiva.git] /
1 package org.apache.maven.archiva.repository.content;
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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.repository.ArchivaArtifact;
24 import org.apache.maven.archiva.repository.ArchivaRepository;
25 import org.codehaus.plexus.PlexusTestCase;
26
27 import java.io.File;
28
29 /**
30  * AbstractBidirectionalRepositoryLayoutTestCase 
31  *
32  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
33  * @version $Id$
34  */
35 public class AbstractBidirectionalRepositoryLayoutTestCase extends PlexusTestCase
36 {
37     protected ArchivaRepository repository;
38
39     protected void setUp() throws Exception
40     {
41         super.setUp();
42         
43         repository = createTestRepository();
44     }
45     
46     protected ArchivaRepository createTestRepository()
47     {
48         File targetDir = new File( getBasedir(), "target" );
49         File testRepo = new File( targetDir, "test-repo" );
50     
51         if ( !testRepo.exists() )
52         {
53             testRepo.mkdirs();
54         }
55     
56         String repoUri = "file://" + StringUtils.replace( testRepo.getAbsolutePath(), "\\", "/" ) ;
57     
58         ArchivaRepository repo = new ArchivaRepository( "testRepo", "Test Repository", repoUri );
59     
60         return repo;
61     }
62
63     protected ArchivaArtifact createArtifact( String groupId, String artifactId, String version, String classifier, String type )
64     {
65         ArchivaArtifact artifact = new ArchivaArtifact( repository, groupId, artifactId, version, classifier, type );
66         assertNotNull( artifact );
67         return artifact;
68     }
69
70     protected void assertArtifact( ArchivaArtifact actualArtifact, String groupId, String artifactId, String version, String classifier, String type )
71     {
72         String expectedId = groupId + ":" + artifactId + ":" + version + ":" + classifier + ":" + type;
73     
74         assertEquals( expectedId + " - Group ID", actualArtifact.getGroupId(), groupId );
75         assertEquals( expectedId + " - Artifact ID", actualArtifact.getArtifactId(), artifactId );
76         assertEquals( expectedId + " - Version ID", actualArtifact.getVersion(), version );
77         assertEquals( expectedId + " - Classifier", actualArtifact.getClassifier(), classifier );
78         assertEquals( expectedId + " - Type", actualArtifact.getType(), type );
79     }
80
81     protected void assertSnapshotArtifact( ArchivaArtifact actualArtifact, String groupId, String artifactId, String version, String classifier, String type )
82     {
83         String expectedId = groupId + ":" + artifactId + ":" + version + ":" + classifier + ":" + type;
84     
85         assertEquals( expectedId + " - Group ID", actualArtifact.getGroupId(), groupId );
86         assertEquals( expectedId + " - Artifact ID", actualArtifact.getArtifactId(), artifactId );
87         assertEquals( expectedId + " - Version ID", actualArtifact.getVersion(), version );
88         assertEquals( expectedId + " - Classifier", actualArtifact.getClassifier(), classifier );
89         assertEquals( expectedId + " - Type", actualArtifact.getType(), type );
90         assertTrue( expectedId + " - Snapshot", actualArtifact.isSnapshot() );
91     }
92
93 }