blob: 51bc76013f8e7875ef02e822b138db71e84e54a3 [file] [log] [blame]
// Copyright 2011-2013 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.app1;
import org.testng.annotations.Test;
// Disabled these tests because they are time sensitive and cause build failures.
public class ZoneRefreshTest extends App1TestCase
{
@Test(enabled = false)
public void test_if_zone_with_event_handler_returning_void_works() throws Exception
{
openBaseURL();
clickAndWait("link=Zone Refresh With Event Handler Returning Void");
sleep(AJAX_WAIT_TIME);
checkZoneValues("zone", 3);
}
@Test(enabled = false)
public void test_if_zone_with_event_handler_returning_zone_works() throws Exception
{
openBaseURL();
clickAndWait("link=Zone Refresh With Event Handler Returning Zone");
sleep(AJAX_WAIT_TIME);
checkZoneValues("zone", 3);
}
private void checkZoneValues(String zone, int times) throws Exception
{
// Wait until Prototype is loaded ...
waitForCondition("selenium.browserbot.getCurrentWindow().Ajax", "20000");
for (int i = 1; i <= times; ++i)
{
// Wait for ajax call to begin
waitForCondition("selenium.browserbot.getCurrentWindow().Ajax.activeRequestCount != 0", "20000");
// Wait for ajax call from end
waitForCondition("selenium.browserbot.getCurrentWindow().Ajax.activeRequestCount == 0", "20000");
// Check the value changed
assertText(zone, String.valueOf(i));
}
}
}