/* * JBoss, Home of Professional Open Source. * Copyright 2007, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.jsfunit.example.hellojsf; import com.meterware.httpunit.GetMethodWebRequest; import com.meterware.httpunit.WebRequest; import java.io.IOException; import javax.faces.event.PhaseId; import org.apache.cactus.ServletTestCase; import org.jboss.jsfunit.facade.JSFClientSession; import org.jboss.jsfunit.framework.JSFTimer; import org.jboss.jsfunit.framework.WebConversationFactory; import org.xml.sax.SAXException; /** * Tests the JSFTimer class. * * @author Stan Silvert */ public class JSFTimerTest extends ServletTestCase { public void testSimpleTiming() throws SAXException, IOException { JSFClientSession client = new JSFClientSession("/index.faces"); JSFTimer timer = JSFTimer.getTimer(); assertTrue(timer.getTotalTime() > 0); } public void testNonFacesRequestGeneratesFacesResponse() throws SAXException, IOException { JSFClientSession client = new JSFClientSession("/index.faces"); JSFTimer timer = JSFTimer.getTimer(); assertEquals(0, timer.getPhaseTime(PhaseId.APPLY_REQUEST_VALUES)); assertEquals(0, timer.getPhaseTime(PhaseId.PROCESS_VALIDATIONS)); assertEquals(0, timer.getPhaseTime(PhaseId.UPDATE_MODEL_VALUES)); assertEquals(0, timer.getPhaseTime(PhaseId.INVOKE_APPLICATION)); //assertTrue(timer.getPhaseTime(PhaseId.RENDER_RESPONSE) > 0); } public void testTotalTime() throws SAXException, IOException { JSFClientSession client = new JSFClientSession("/index_longValidator.faces"); client.setParameter("input_foo_text", "Stan"); client.submit("submit_button"); JSFTimer timer = JSFTimer.getTimer(); assertTrue(timer.getTotalTime() >= 1500); } public void testClearTimers() throws SAXException, IOException { JSFClientSession client = new JSFClientSession("/index_longValidator.faces"); JSFTimer timer = JSFTimer.getTimer(); // ProcessValidations should be skipped for a new session assertEquals(0, timer.getPhaseTime(PhaseId.PROCESS_VALIDATIONS)); client.setParameter("input_foo_text", "Stan"); client.submit("submit_button"); timer = JSFTimer.getTimer(); assertTrue(timer.getPhaseTime(PhaseId.PROCESS_VALIDATIONS) >= 1500); // Timer must still be cleared when submitting non-faces request WebRequest req = new GetMethodWebRequest(WebConversationFactory.getWARURL() + "/indexNoButtons.faces"); client.doWebRequest(req); timer = JSFTimer.getTimer(); assertTrue(timer.getPhaseTime(PhaseId.PROCESS_VALIDATIONS) < 1500); } public void testAnyPhase() throws SAXException, IOException { JSFClientSession client = new JSFClientSession("/index.faces"); try { JSFTimer timer = JSFTimer.getTimer(); timer.getPhaseTime(PhaseId.ANY_PHASE); fail("Expected IllegalArgumentException"); } catch (IllegalArgumentException e) { // OK } } /* debugging code System.out.println("Restore View=" + timer.getPhaseTime(PhaseId.RESTORE_VIEW)); System.out.println("Apply Request Values=" + timer.getPhaseTime(PhaseId.APPLY_REQUEST_VALUES)); System.out.println("Process Validations=" + timer.getPhaseTime(PhaseId.PROCESS_VALIDATIONS)); System.out.println("Update Model Values=" + timer.getPhaseTime(PhaseId.UPDATE_MODEL_VALUES)); System.out.println("Invoke Application=" + timer.getPhaseTime(PhaseId.INVOKE_APPLICATION)); System.out.println("Render Response=" + timer.getPhaseTime(PhaseId.RENDER_RESPONSE)); */ }