1 package org.apache.maven.archiva.reporting;
4 * Copyright 2005-2006 The Apache Software Foundation.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.factory.ArtifactFactory;
21 import org.apache.maven.artifact.repository.ArtifactRepository;
22 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
23 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
24 import org.codehaus.plexus.PlexusTestCase;
31 public abstract class AbstractRepositoryReportsTestCase
32 extends PlexusTestCase
35 * This should only be used for the few that can't use the query layer.
37 protected ArtifactRepository repository;
39 private ArtifactFactory artifactFactory;
41 private ArtifactRepositoryFactory factory;
43 private ArtifactRepositoryLayout layout;
45 protected void setUp()
50 File repositoryDirectory = getTestFile( "src/test/repository" );
52 factory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.ROLE );
53 layout = (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, "default" );
55 repository = factory.createArtifactRepository( "repository", repositoryDirectory.toURL().toString(), layout,
57 artifactFactory = (ArtifactFactory) lookup( ArtifactFactory.ROLE );
60 protected Artifact createArtifactFromRepository( File repository, String groupId, String artifactId,
64 Artifact artifact = artifactFactory.createBuildArtifact( groupId, artifactId, version, "jar" );
66 artifact.setRepository(
67 factory.createArtifactRepository( "repository", repository.toURL().toString(), layout, null, null ) );
69 artifact.isSnapshot();
74 protected Artifact createArtifact( String groupId, String artifactId, String version )
76 return createArtifact( groupId, artifactId, version, "jar" );
79 protected Artifact createArtifact( String groupId, String artifactId, String version, String type )
81 Artifact artifact = artifactFactory.createBuildArtifact( groupId, artifactId, version, type );
82 artifact.setRepository( repository );
83 artifact.isSnapshot();
87 protected Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type,
91 artifactFactory.createArtifactWithClassifier( groupId, artifactId, version, type, classifier );
92 artifact.setRepository( repository );