View Javadoc
1   package org.apache.maven.report.projectinfo;
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.net.URL;
23  import java.util.Locale;
24  
25  import org.apache.maven.report.projectinfo.MailingListsReport.MailingListsRenderer;
26  
27  import junitx.util.PrivateAccessor;
28  
29  import com.meterware.httpunit.GetMethodWebRequest;
30  import com.meterware.httpunit.TextBlock;
31  import com.meterware.httpunit.WebConversation;
32  import com.meterware.httpunit.WebRequest;
33  import com.meterware.httpunit.WebResponse;
34  
35  /**
36   * @author Edwin Punzalan
37   * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
38   * @version $Id$
39   */
40  public class MailingListsReportTest
41      extends AbstractProjectInfoTestCase
42  {
43      /**
44       * WebConversation object
45       */
46      private static final WebConversation WEB_CONVERSATION = new WebConversation();
47  
48      /**
49       * Test report
50       *
51       * @throws Exception if any
52       */
53      public void testReport()
54          throws Exception
55      {
56          generateReport( "mailing-lists", "mailing-lists-plugin-config.xml" );
57          assertTrue( "Test html generated", getGeneratedReport( "mailing-lists.html" ).exists() );
58  
59          URL reportURL = getGeneratedReport( "mailing-lists.html" ).toURI().toURL();
60          assertNotNull( reportURL );
61  
62          // HTTPUnit
63          WebRequest request = new GetMethodWebRequest( reportURL.toString() );
64          WebResponse response = WEB_CONVERSATION.getResponse( request );
65  
66          // Basic HTML tests
67          assertTrue( response.isHTML() );
68          assertTrue( response.getContentLength() > 0 );
69  
70          // Test the Page title
71          String expectedTitle = prepareTitle( getString( "report.mailing-lists.name" ),
72              getString( "report.mailing-lists.title" ) );
73          assertEquals( expectedTitle, response.getTitle() );
74  
75          // Test the texts
76          TextBlock[] textBlocks = response.getTextBlocks();
77          assertEquals( getString( "report.mailing-lists.title" ), textBlocks[0].getText() );
78          assertEquals( getString( "report.mailing-lists.intro" ), textBlocks[1].getText() );
79      }
80  
81      /**
82       * Test report in French (MPIR-59)
83       *
84       * @throws Exception if any
85       */
86      public void testFrenchReport()
87          throws Exception
88      {
89          Locale oldLocale = Locale.getDefault();
90  
91          try
92          {
93              Locale.setDefault( Locale.FRENCH );
94  
95              generateReport( "mailing-lists", "mailing-lists-plugin-config.xml" );
96              assertTrue( "Test html generated", getGeneratedReport( "mailing-lists.html" ).exists() );
97          }
98          finally
99          {
100             Locale.setDefault( oldLocale );
101         }
102     }
103 
104     /**
105      * @throws Throwable if any
106      */
107     public void testGetArchiveServer()
108         throws Throwable
109     {
110         String server = "http://mail-archives.apache.org/mod_mbox/maven-announce/";
111         assertEquals( "mail-archives.apache.org", invokeGetArchiveServer( server ) );
112 
113         server = "http://mail-archives.apache.org/mod_mbox/maven-announce";
114         assertEquals( "mail-archives.apache.org", invokeGetArchiveServer( server ) );
115 
116         server = "http://www.mail-archive.com/announce@maven.apache.org";
117         assertEquals( "www.mail-archive.com", invokeGetArchiveServer( server ) );
118 
119         server = "http://www.nabble.com/Maven-Announcements-f15617.html";
120         assertEquals( "www.nabble.com", invokeGetArchiveServer( server ) );
121 
122         server = "http://maven.announce.markmail.org/";
123         assertEquals( "maven.announce.markmail.org", invokeGetArchiveServer( server ) );
124 
125         server = "http://maven.announce.markmail.org";
126         assertEquals( "maven.announce.markmail.org", invokeGetArchiveServer( server ) );
127     }
128 
129     /**
130      * @throws Throwable if any
131      */
132     private static String invokeGetArchiveServer( String s )
133         throws Throwable
134     {
135         return (String) PrivateAccessor.invoke( MailingListsRenderer.class, "getArchiveServer",
136                                                 new Class[] { String.class }, new Object[] { s } );
137     }
138 }