blob: 91768f249fee91a6f0bf5ebbc324f343247c8eda [file] [log] [blame]
package org.apache.maven.report.projectinfo;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.net.URL;
import com.meterware.httpunit.GetMethodWebRequest;
import com.meterware.httpunit.TextBlock;
import com.meterware.httpunit.WebConversation;
import com.meterware.httpunit.WebRequest;
import com.meterware.httpunit.WebResponse;
/**
* @author Edwin Punzalan
* @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
* @version $Id$
*/
public class DependencyConvergenceReportTest
extends AbstractProjectInfoTestCase
{
/**
* WebConversation object
*/
private static final WebConversation WEB_CONVERSATION = new WebConversation();
/**
* Test report
*
* @throws Exception if any
*/
public void testReport()
throws Exception
{
generateReport( "dependency-convergence", "dependency-convergence-plugin-config.xml" );
assertTrue( "Test html generated", getGeneratedReport( "dependency-convergence.html" ).exists() );
URL reportURL = getGeneratedReport( "dependency-convergence.html" ).toURI().toURL();
assertNotNull( reportURL );
// HTTPUnit
WebRequest request = new GetMethodWebRequest( reportURL.toString() );
WebResponse response = WEB_CONVERSATION.getResponse( request );
// Basic HTML tests
assertTrue( response.isHTML() );
assertTrue( response.getContentLength() > 0 );
// Test the Page title
String expectedTitle = prepareTitle( "dependency convergence project info",
getString( "report.dependency-convergence.reactor.title" ) );
assertEquals( expectedTitle, response.getTitle() );
// Test the texts
TextBlock[] textBlocks = response.getTextBlocks();
assertEquals( getString( "report.dependency-convergence.reactor.name" ), textBlocks[0].getText() );
}
}