]> source.dussan.org Git - archiva.git/blob
44eca506958cf41f2bd7793c698582c6fbf49806
[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.util.ArrayList;
23 import java.util.Calendar;
24 import java.util.Date;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29 import org.apache.archiva.rss.RssFeedGenerator;
30 import org.apache.archiva.rss.stubs.ArtifactDAOStub;
31 import org.apache.maven.archiva.model.ArchivaArtifact;
32 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
33
34 import com.sun.syndication.feed.synd.SyndEntry;
35 import com.sun.syndication.feed.synd.SyndFeed;
36
37 public class NewVersionsOfArtifactRssFeedProcessorTest
38     extends PlexusInSpringTestCase
39 {
40     private static final String TEST_REPO = "test-repo";
41
42     private NewVersionsOfArtifactRssFeedProcessor newVersionsProcessor;
43
44     private ArtifactDAOStub artifactDAOStub;
45
46     private RssFeedGenerator rssFeedGenerator;
47
48     @Override
49     public void setUp()
50         throws Exception
51     {
52         super.setUp();
53
54         newVersionsProcessor = new NewVersionsOfArtifactRssFeedProcessor();
55         artifactDAOStub = new ArtifactDAOStub();
56
57         rssFeedGenerator = new RssFeedGenerator();
58
59         newVersionsProcessor.setGenerator( rssFeedGenerator );
60         newVersionsProcessor.setArtifactDAO( artifactDAOStub );
61     }
62
63     public void testProcess()
64         throws Exception
65     {
66         List<ArchivaArtifact> artifacts = new ArrayList<ArchivaArtifact>();
67
68         Date whenGathered = Calendar.getInstance().getTime();
69         whenGathered.setTime( 123456789 );
70  
71         ArchivaArtifact artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.1", "", "jar", TEST_REPO );
72         artifact.getModel().setWhenGathered( whenGathered );
73         artifacts.add( artifact );
74
75         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.2", "", "jar", TEST_REPO );
76         artifact.getModel().setWhenGathered( whenGathered );
77         artifacts.add( artifact );
78
79         Date whenGatheredNext = Calendar.getInstance().getTime();
80         whenGatheredNext.setTime( 345678912 );      
81
82         artifact = new ArchivaArtifact( "org.apache.archiva", "artifact-two", "1.0.3-SNAPSHOT", "", "jar", TEST_REPO );
83         artifact.getModel().setWhenGathered( whenGatheredNext );
84         artifacts.add( artifact );
85
86         artifactDAOStub.setArtifacts( artifacts );
87
88         Map<String, String> reqParams = new HashMap<String, String>();
89         reqParams.put( RssFeedProcessor.KEY_REPO_ID, "test-repo" );
90         reqParams.put( RssFeedProcessor.KEY_GROUP_ID, "org.apache.archiva" );
91         reqParams.put( RssFeedProcessor.KEY_ARTIFACT_ID, "artifact-two" );
92
93         SyndFeed feed = newVersionsProcessor.process( reqParams );
94
95         assertEquals( "New Versions of Artifact 'org.apache.archiva:artifact-two'", feed.getTitle() );        
96         assertEquals(
97                       "New versions of artifact 'org.apache.archiva:artifact-two' found in repository 'test-repo' during repository scan.",
98                       feed.getDescription() );
99         assertEquals( "en-us", feed.getLanguage() );
100         assertEquals( artifacts.get( 2 ).getModel().getWhenGathered(), feed.getPublishedDate() );
101
102         List<SyndEntry> entries = feed.getEntries();
103
104         assertEquals( 2, entries.size() );
105         
106         assertEquals( "New Versions of Artifact 'org.apache.archiva:artifact-two' as of " + whenGathered,
107                       entries.get( 0 ).getTitle() );
108         assertEquals( whenGathered, entries.get( 0 ).getPublishedDate() );
109         
110         assertEquals( "New Versions of Artifact 'org.apache.archiva:artifact-two' as of " + whenGatheredNext,
111                       entries.get( 1 ).getTitle() );
112         assertEquals( whenGatheredNext, entries.get( 1 ).getPublishedDate() );
113     }
114 }