blob: bb6a9078f55be91df16fd077232c580acc62b2b2 [file] [log] [blame]
/*
* 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.
*/
package org.apache.wicket.extensions.markup.html.tree;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.wicket.WicketTestCase;
/**
* Test for the Tree component. Also tests header insertion as that is what the
* Tree component uses.
*
* @author Juergen Donnerstag
* @author Eelco Hillenius
*/
public class TreeTest extends WicketTestCase
{
private static final Log log = LogFactory.getLog(TreeTest.class);
/**
* Create the test.
*
* @param name
* The test name
*/
public TreeTest(String name)
{
super(name);
}
/**
* Test Tree put on a plain page. Tests first render, and render after a
* node click.
*
* @throws Exception
*/
public void testRenderTreePage_1() throws Exception
{
executeTest(TreePage.class, "TreePageExpectedResult_1.html");
executedListener(TreePage.class,
tester.getLastRenderedPage().get("tree:tree:3:node:junctionLink"),
"TreePageExpectedResult_1-1.html");
}
/**
* Test Tree put on a page with a border. Tests first render, and render
* after a node click.
*
* @throws Exception
*/
public void testRenderTreePageWithBorder_1() throws Exception
{
executeTest(TreePageWithBorder.class, "TreePageWithBorderExpectedResult_1.html");
executedListener(TreePageWithBorder.class,
tester.getLastRenderedPage().get("tree:tree:3:node:junctionLink"),
"TreePageWithBorderExpectedResult_1-1.html");
}
/**
* Test Tree put on a plain page with a html head section, but without a
* wicket:head tag. Tests first render, and render after a node click.
*
* @throws Exception
*/
public void testRenderTreePageNoWicketHeadTag_1() throws Exception
{
executeTest(TreePageNoWicketHeadTag.class, "TreePageNoWicketHeadTagExpectedResult_1.html");
executedListener(TreePageNoWicketHeadTag.class,
tester.getLastRenderedPage().get("tree:tree:3:node:junctionLink"),
"TreePageNoWicketHeadTagExpectedResult_1-1.html");
}
}