You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by jm...@apache.org on 2003/02/06 05:36:30 UTC

cvs commit: jakarta-struts/src/test/org/apache/struts/taglib/logic TestGreaterThanTag.java

jmitchell    2003/02/05 20:36:30

  Added:       src/test/org/apache/struts/taglib/logic
                        TestGreaterThanTag.java
  Log:
  Adding more tests for taglibs. (this one is not complete yet, just wanted to get it in before hitting the sack)
  
  I hope to have every single tag and every combination of attributes
  covered by the 1.2 release.
  
  If anyone sees that I'm doing this wrong, please let me know so we can keep
  this as clean as possible.
  
  Revision  Changes    Path
  1.1                  jakarta-struts/src/test/org/apache/struts/taglib/logic/TestGreaterThanTag.java
  
  Index: TestGreaterThanTag.java
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Struts", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written
   *    permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */
  package org.apache.struts.taglib.logic;
  
  import javax.servlet.ServletException;
  import javax.servlet.jsp.JspException;
  import javax.servlet.jsp.PageContext;
  import junit.framework.Test;
  import junit.framework.TestSuite;
  import org.apache.cactus.JspTestCase;
  import org.apache.cactus.WebRequest;
  import org.apache.struts.util.LabelValueBean;
  
  /**
   * Suite of unit tests for the
   * <code>org.apache.struts.taglib.logic.GreaterThanTag</code> class.
   *
   * @author James Mitchell
   */
  public class TestGreaterThanTag extends JspTestCase {
      protected final static String COOKIE_KEY = "org.apache.struts.taglib.logic.COOKIE_KEY";
      protected final static String COOKIE_VAL = "5";
      protected final static String HEADER_KEY = "org.apache.struts.taglib.logic.HEADER_KEY";
      protected final static String HEADER_VAL = "5";
      protected final static String PARAMETER_KEY = "org.apache.struts.taglib.logic.PARAMETER_KEY";
      protected final static String PARAMETER_VAL = "5";
  
      /**
       * Defines the testcase name for JUnit.
       *
       * @param theName the testcase's name.
       */
      public TestGreaterThanTag(String theName) {
          super(theName);
      }
  
      /**
       * Start the tests.
       *
       * @param theArgs the arguments. Not used
       */
      public static void main(String[] theArgs) {
          junit.awtui.TestRunner.main(new String[] {TestGreaterThanTag.class.getName()});
      }
  
      /**
       * @return a test suite (<code>TestSuite</code>) that includes all methods
       *         starting with "test"
       */
      public static Test suite() {
          // All methods starting with "test" will be executed in the test suite.
          return new TestSuite(TestGreaterThanTag.class);
      }
  
      //----- Test initApplication() method --------------------------------------
  	
      /**
       * Create cookie for testCookiePresent method test.
      */
      public void beginCookieGreaterThan(WebRequest testRequest) {
         testRequest.addCookie(COOKIE_KEY, COOKIE_VAL);
      }
  
      /**
       * Create header for testHeaderGreaterThan method test.
      */
      public void beginHeaderGreaterThan(WebRequest testRequest) {
         testRequest.addHeader(HEADER_KEY, HEADER_VAL);
      }
  
      /**
       * Create header for testParameterGreaterThan method test.
      */
      public void beginParameterGreaterThan(WebRequest testRequest) {
         testRequest.addParameter(PARAMETER_KEY, PARAMETER_VAL);
      }
  
      /**
       * Verify the value stored in a cookie using <code>GreaterThanTag</code>.
      */
      public void testCookieGreaterThan() throws ServletException,  JspException {
          GreaterThanTag gt = new GreaterThanTag();
          String testVal = "4";
          gt.setPageContext(pageContext);
          gt.setCookie(COOKIE_KEY);
          gt.setValue(testVal);
  
          assertTrue(
          	"Cookie Value (" + COOKIE_VAL + ") is greater than test value (" + testVal + ")", 
          	gt.condition());
      }
      
      /**
       * Verify the value stored in header using <code>GreaterThanTag</code>.
      */
      public void testHeaderGreaterThan() throws ServletException,  JspException {
          GreaterThanTag gt = new GreaterThanTag();
          String testVal = "4";
          gt.setPageContext(pageContext);
          gt.setHeader(HEADER_KEY);
          gt.setValue(testVal);
  
          assertTrue(
          	"Header Value (" + HEADER_VAL + ") is greater than test value (" + testVal + ")", 
          	gt.condition());
      }
  
      /**
       * Verify the value stored in parameter using <code>GreaterThanTag</code>.
      */
      public void testParameterGreaterThan() throws ServletException,  JspException {
          GreaterThanTag gt = new GreaterThanTag();
          String testVal = "4";
          gt.setPageContext(pageContext);
          gt.setParameter(PARAMETER_KEY);
          gt.setValue(testVal);
  
          assertTrue(
          	"Parameter Value (" + PARAMETER_VAL + ") is greater than test value (" + testVal + ")", 
          	gt.condition());
      }
      
      
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-dev-help@jakarta.apache.org