blob: 5dbd945d0671254f71973ffbaef1e3b352493d43 [file] [log] [blame]
// Copyright 2008 The Apache Software Foundation
//
// Licensed 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.tapestry5.integration;
import org.apache.tapestry5.dom.Document;
import org.apache.tapestry5.test.PageTester;
import org.testng.Assert;
import org.testng.annotations.Test;
import java.util.Collections;
import java.util.Map;
/**
* Tests on PageTester itself.
*/
public class PageTesterTest extends Assert
{
private static final String PACKAGE = "org.apache.tapestry5.integration.app2";
@Test
public void on_activate_chain_is_followed()
{
PageTester tester = new PageTester(PACKAGE, "", "src/test/app2");
Document launchDoc = tester.renderPage("Launch");
Map<String, String> parameters = Collections.emptyMap();
// Submit the form, which will then skip through Intermediate and
// arrive at Final.
Document finalDoc = tester.submitForm(launchDoc.getElementById("form"), parameters);
assertEquals(finalDoc.getElementById("page-name").getChildMarkup(), "Final");
tester.shutdown();
}
}