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.io.File;
23  import java.net.URL;
24  
25  import org.apache.maven.plugin.Mojo;
26  
27  import com.meterware.httpunit.GetMethodWebRequest;
28  import com.meterware.httpunit.TextBlock;
29  import com.meterware.httpunit.WebConversation;
30  import com.meterware.httpunit.WebRequest;
31  import com.meterware.httpunit.WebResponse;
32  
33  /**
34   * @author Edwin Punzalan
35   * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
36   * @version $Id: ScmReportTest.java 890109 2009-12-13 19:57:28Z ltheussl $
37   */
38  public class ScmReportTest
39      extends AbstractProjectInfoTestCase
40  {
41      /**
42       * WebConversation object
43       */
44      private static final WebConversation WEB_CONVERSATION = new WebConversation();
45  
46      /**
47       * Test report
48       *
49       * @throws Exception if any
50       */
51      public void testReport()
52          throws Exception
53      {
54          generateReport( "scm", "scm-plugin-config.xml" );
55          assertTrue( "Test html generated", getGeneratedReport( "source-repository.html" ).exists() );
56  
57          URL reportURL = getGeneratedReport( "source-repository.html" ).toURI().toURL();
58          assertNotNull( reportURL );
59  
60          // HTTPUnit
61          WebRequest request = new GetMethodWebRequest( reportURL.toString() );
62          WebResponse response = WEB_CONVERSATION.getResponse( request );
63  
64          // Basic HTML tests
65          assertTrue( response.isHTML() );
66          assertTrue( response.getContentLength() > 0 );
67  
68          // Test the Page title
69          assertEquals( getString( "report.scm.name" ) + " - " + getString( "report.scm.title" ),
70                        response.getTitle() );
71  
72          // Test the texts
73          TextBlock[] textBlocks = response.getTextBlocks();
74  
75          assertEquals( textBlocks.length, 6 );
76  
77          assertEquals( getString( "report.scm.overview.title" ), textBlocks[0].getText() );
78          assertEquals( getString( "report.scm.general.intro" ), textBlocks[1].getText() );
79          assertEquals( getString( "report.scm.webaccess.title" ), textBlocks[2].getText() );
80          assertEquals( getString( "report.scm.webaccess.nourl" ), textBlocks[3].getText() );
81          assertEquals( getString( "report.scm.accessbehindfirewall.title" ), textBlocks[4].getText() );
82          assertEquals( getString( "report.scm.accessbehindfirewall.general.intro" ), textBlocks[5].getText() );
83      }
84  
85      /**
86       * Test report with wrong URL
87       *
88       * @throws Exception if any
89       */
90      public void testReportWithWrongUrl()
91          throws Exception
92      {
93          File pluginXmlFile = new File( getBasedir(), "src/test/resources/plugin-configs/"
94                  + "scm-wrong-url-plugin-config.xml" );
95          Mojo mojo = lookupMojo( "scm", pluginXmlFile );
96          assertNotNull( "Mojo found.", mojo );
97  
98          setVariableValueToObject( mojo, "anonymousConnection", "scm:svn" );
99          try
100         {
101             mojo.execute();
102             assertTrue( "IllegalArgumentException NOT catched", false );
103         }
104         catch ( IllegalArgumentException e )
105         {
106             assertTrue( "IllegalArgumentException catched", true );
107         }
108 
109         tearDown();
110         setUp();
111 
112         mojo = lookupMojo( "scm", pluginXmlFile );
113         assertNotNull( "Mojo found.", mojo );
114         setVariableValueToObject( mojo, "anonymousConnection", "scm:svn:http" );
115         try
116         {
117             mojo.execute();
118             assertTrue( "IllegalArgumentException NOT catched", false );
119         }
120         catch ( Exception e )
121         {
122             assertTrue( "IllegalArgumentException catched", true );
123         }
124 
125         tearDown();
126         setUp();
127 
128         mojo = lookupMojo( "scm", pluginXmlFile );
129         assertNotNull( "Mojo found.", mojo );
130         setVariableValueToObject( mojo, "anonymousConnection", "scm" );
131         try
132         {
133             mojo.execute();
134             assertTrue( "IllegalArgumentException NOT catched", false );
135         }
136         catch ( Exception e )
137         {
138             assertTrue( "IllegalArgumentException catched", true );
139         }
140     }
141 }