]> source.dussan.org Git - archiva.git/blob
b638c6dc60bb31c5e17765d99421d5812666df69
[archiva.git] /
1 package org.apache.archiva.rss.processor;
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 java.io.File;
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.apache.archiva.rss.RssFeedGenerator;
27 import org.apache.maven.archiva.model.ArchivaArtifact;
28 import org.codehaus.plexus.PlexusTestCase;
29
30 /**
31  * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
32  * @version
33  */
34 public class NewArtifactsRssFeedProcessorTest
35     extends PlexusTestCase
36 {
37     private RssFeedProcessor newArtifactsProcessor;
38     
39     private String rssDirectory;
40
41     public void setUp()
42         throws Exception
43     {
44         super.setUp();
45
46         newArtifactsProcessor = (RssFeedProcessor) lookup( RssFeedProcessor.class, "new-artifacts" );
47         rssDirectory = getBasedir() + "/target/test-classes/rss-feeds/";
48         
49         RssFeedGenerator generator = ( ( NewArtifactsRssFeedProcessor ) newArtifactsProcessor ).getGenerator();
50         generator.setRssDirectory( rssDirectory );
51         ( (NewArtifactsRssFeedProcessor) newArtifactsProcessor ).setGenerator( generator );
52     }
53
54     public void testProcess()
55         throws Exception
56     {
57         List<ArchivaArtifact> newArtifacts = new ArrayList<ArchivaArtifact>();
58         
59         ArchivaArtifact artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-one", "1.0", "", "jar" );
60         artifact.getModel().setRepositoryId( "test-repo" );
61         newArtifacts.add( artifact );
62         
63         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-one", "1.1", "", "jar" );
64         artifact.getModel().setRepositoryId( "test-repo" );
65         newArtifacts.add( artifact );
66         
67         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-one", "2.0", "", "jar" );
68         artifact.getModel().setRepositoryId( "test-repo" );
69         newArtifacts.add( artifact );
70
71         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.1", "", "jar" );
72         artifact.getModel().setRepositoryId( "test-repo" );
73         newArtifacts.add( artifact );
74         
75         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.2", "", "jar" );
76         artifact.getModel().setRepositoryId( "test-repo" );
77         newArtifacts.add( artifact );
78         
79         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.3-SNAPSHOT", "", "jar" );
80         artifact.getModel().setRepositoryId( "test-repo" );
81         newArtifacts.add( artifact );
82         
83         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-three", "2.0-SNAPSHOT", "", "jar" );
84         artifact.getModel().setRepositoryId( "test-repo" );
85         newArtifacts.add( artifact );
86         
87         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-four", "1.1-beta-2", "", "jar" );
88         artifact.getModel().setRepositoryId( "test-repo" );
89         newArtifacts.add( artifact );
90         
91         newArtifactsProcessor.process( newArtifacts );
92
93         File outputFile = new File( rssDirectory, "new_artifacts_test-repo.xml" );        
94         assertTrue( outputFile.exists() );
95         
96         outputFile = new File( rssDirectory, "new_versions_test-repo_org.apache.archiva:artifact-one.xml" );        
97         assertTrue( outputFile.exists() );
98         
99         outputFile = new File( rssDirectory, "new_versions_test-repo_org.apache.archiva:artifact-two.xml" );        
100         assertTrue( outputFile.exists() );
101         
102         outputFile = new File( rssDirectory, "new_versions_test-repo_org.apache.archiva:artifact-three.xml" );        
103         assertTrue( outputFile.exists() );
104         
105         outputFile = new File( rssDirectory, "new_versions_test-repo_org.apache.archiva:artifact-four.xml" );        
106         assertTrue( outputFile.exists() );
107     }
108 }