blob: b714996b8fe9ea929116630569ea4e8de4f1b948 [file] [log] [blame]
package org.apache.maven.doxia.siterenderer;
/*
* 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 com.gargoylesoftware.htmlunit.html.HtmlBase;
import com.gargoylesoftware.htmlunit.html.HtmlElement;
import com.gargoylesoftware.htmlunit.html.HtmlLink;
import com.gargoylesoftware.htmlunit.html.HtmlMeta;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.html.HtmlStyle;
import com.gargoylesoftware.htmlunit.html.HtmlTitle;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
/**
* Verify correct rendering of <code>site/xdoc/head.xml</code>.
*
* @author ltheussl
* @version $Id$
*/
public class HeadVerifier
extends AbstractVerifier
{
/** {@inheritDoc} */
public void verify( String file )
throws Exception
{
HtmlPage page = htmlPage( file );
assertNotNull( page );
HtmlElement html = page.getDocumentElement();
assertNotNull( html );
List<String> tagNames = new ArrayList<String>( 2 );
tagNames.add( "head" );
List<HtmlElement> heads = html.getHtmlElementsByTagNames( tagNames );
assertEquals( 1, heads.size() );
HtmlElement head = heads.get( 0 );
assertNotNull( head );
Iterator<HtmlElement> elementIterator = head.getHtmlElementDescendants().iterator();
// ----------------------------------------------------------------------
//
// ----------------------------------------------------------------------
HtmlMeta meta = (HtmlMeta) elementIterator.next();
assertEquals( meta.getAttribute( "http-equiv" ), "Content-Type" );
assertEquals( meta.getAttribute( "content" ), "text/html; charset=UTF-8" );
HtmlTitle title = (HtmlTitle) elementIterator.next();
assertNotNull( title );
HtmlStyle style = (HtmlStyle) elementIterator.next();
assertNotNull( style );
HtmlLink link = (HtmlLink) elementIterator.next();
assertNotNull( link );
meta = (HtmlMeta) elementIterator.next();
assertEquals( meta.getAttribute( "name" ), "author" );
assertEquals( meta.getAttribute( "content" ).trim(), "John Doe" );
meta = (HtmlMeta) elementIterator.next();
assertEquals( meta.getAttribute( "http-equiv" ), "Content-Language" );
assertEquals( meta.getAttribute( "content" ), "en" );
meta = (HtmlMeta) elementIterator.next();
assertEquals( meta.getAttribute( "name" ), "description" );
assertEquals( meta.getAttribute( "content" ), "Free Web tutorials" );
meta = (HtmlMeta) elementIterator.next();
assertEquals( meta.getAttribute( "name" ), "keywords" );
assertEquals( meta.getAttribute( "content" ), "HTML,CSS,XML,JavaScript" );
HtmlBase base = (HtmlBase) elementIterator.next();
assertEquals( base.getAttribute( "href" ), "http://maven.apache.org/" );
}
}