You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by sh...@locus.apache.org on 2000/01/12 07:14:37 UTC

cvs commit: jakarta-watchdog/src/server/jsp-tests/jsp/core_syntax/beantests/setProperty negativeSetPropNotProperty.jsp negativeSetPropNotWrite.jsp

shemnon     00/01/11 22:14:37

  Added:       src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/getProperty
                        negativeGetPropNotProperty.java
                        negativeGetPropNotRead.java
               src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/setProperty
                        negativeSetPropNotWrite.java
                        negativeSetPropNotProperty.java
               src/server/jsp-tests/jsp/core_syntax/beantests/getProperty
                        negativeGetPropNotRead.jsp
                        negativeGetPropNotProperty.jsp
               src/server/jsp-tests/jsp/core_syntax/beantests/setProperty
                        negativeSetPropNotProperty.jsp
                        negativeSetPropNotWrite.jsp
  Log:
  New tests testing get/set proeprty on absent properties and for properties
  that exist but cannot be read/written as appropriate.
  
  Revision  Changes    Path
  1.1                  jakarta-watchdog/src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/getProperty/negativeGetPropNotProperty.java
  
  Index: negativeGetPropNotProperty.java
  ===================================================================
  /*
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 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", "Tomcat", 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.jcheck.jsp.client.core_syntax.beantests.getProperty;
  
  import org.apache.jcheck.jsp.util.*;
  import org.apache.tools.moo.jsp.*;
  import org.apache.tools.moo.TestResult;
  import java.net.HttpURLConnection;
  
  public class negativeGetPropNotProperty extends NegativeJspCheckTest {
  
      StringManager sm = StringManager.getManager(UtilConstants.Package);
  
      public String getDescription () {
          return sm.getString("negativeGetPropNotProperty.description");
      }
  
      public TestResult runTest () {
          TestResult testResult = null;
          HttpURLConnection connection = null;
  
          setErrorCode (500);
  
          try {
              connection = getConnection();
              int code = connection.getResponseCode();
          } catch (Exception e) {
              try {
                  testResult = getTestResult(connection);
              } catch (Exception m) {
                  testResult = getTestResult(testResult,m);
              }
          }
          return testResult;
      }
  }
  
  
  
  1.1                  jakarta-watchdog/src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/getProperty/negativeGetPropNotRead.java
  
  Index: negativeGetPropNotRead.java
  ===================================================================
  /*
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 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", "Tomcat", 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.jcheck.jsp.client.core_syntax.beantests.getProperty;
  
  import org.apache.jcheck.jsp.util.*;
  import org.apache.tools.moo.jsp.*;
  import org.apache.tools.moo.TestResult;
  import java.net.HttpURLConnection;
  
  public class negativeGetPropNotRead extends NegativeJspCheckTest {
  
      StringManager sm = StringManager.getManager(UtilConstants.Package);
  
      public String getDescription () {
          return sm.getString("negativeGetPropNotRead.description");
      }
  
      public TestResult runTest () {
          TestResult testResult = null;
          HttpURLConnection connection = null;
  
          setErrorCode (500);
  
          try {
              connection = getConnection();
              int code = connection.getResponseCode();
          } catch (Exception e) {
              try {
                  testResult = getTestResult(connection);
              } catch (Exception m) {
                  testResult = getTestResult(testResult,m);
              }
          }
          return testResult;
      }
  }
  
  
  
  1.1                  jakarta-watchdog/src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/setProperty/negativeSetPropNotWrite.java
  
  Index: negativeSetPropNotWrite.java
  ===================================================================
  /*
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 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", "Tomcat", 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.jcheck.jsp.client.core_syntax.beantests.setProperty;
  
  import org.apache.jcheck.jsp.util.*;
  import org.apache.tools.moo.jsp.*;
  import org.apache.tools.moo.TestResult;
  import java.net.HttpURLConnection;
  
  public class negativeSetPropNotWrite extends NegativeJspCheckTest {
  
      StringManager sm = StringManager.getManager(UtilConstants.Package);
  
      public String getDescription () {
  	return sm.getString("negativeSetPropNotWrite.description");
      }
  
      public TestResult runTest () {
          TestResult testResult = null;
  	HttpURLConnection connection = null;
  
          setErrorCode (500);
  
  	try {
  	    connection = getConnection();
  	    int code = connection.getResponseCode();
  	} catch (Exception e) {
  	  try {
  	    testResult = getTestResult(connection);
  	  } catch (Exception m) {
  		testResult = getTestResult(testResult,m);
  	  }
  	}
  	return testResult;
      }
  }
  
  
  
  1.1                  jakarta-watchdog/src/clients/org/apache/jcheck/jsp/client/core_syntax/beantests/setProperty/negativeSetPropNotProperty.java
  
  Index: negativeSetPropNotProperty.java
  ===================================================================
  /*
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 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", "Tomcat", 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.jcheck.jsp.client.core_syntax.beantests.setProperty;
  
  import org.apache.jcheck.jsp.util.*;
  import org.apache.tools.moo.jsp.*;
  import org.apache.tools.moo.TestResult;
  import java.net.HttpURLConnection;
  
  public class negativeSetPropNotProperty extends NegativeJspCheckTest {
  
      StringManager sm = StringManager.getManager(UtilConstants.Package);
  
      public String getDescription () {
  	return sm.getString("negativeSetPropNotProperty.description");
      }
  
      public TestResult runTest () {
          TestResult testResult = null;
  	HttpURLConnection connection = null;
  
          setErrorCode (500);
  
  	try {
  	    connection = getConnection();
  	    int code = connection.getResponseCode();
  	} catch (Exception e) {
  	  try {
  	    testResult = getTestResult(connection);
  	  } catch (Exception m) {
  		testResult = getTestResult(testResult,m);
  	  }
  	}
  	return testResult;
      }
  }
  
  
  
  1.1                  jakarta-watchdog/src/server/jsp-tests/jsp/core_syntax/beantests/getProperty/negativeGetPropNotRead.jsp
  
  Index: negativeGetPropNotRead.jsp
  ===================================================================
  <html>
  <title>negativeGetPropNotRead</title>
  <body>
  <% /** 	Name : negativeGetPropNotRead
  	Description : Accessing a write-only property of an explicit bean 
                        through a getProperty action
  	Result : Should return an error page.
  **/ %>	 
  <!-- Declaring the bean with out body -->
  <jsp:useBean id="myBean" scope="request" class="core_syntax.beantests.getProperty.StringBean" />
  <jsp:getProperty name="myBean" property="bar" />
  </body>
  </html> 
  
  
  
  1.1                  jakarta-watchdog/src/server/jsp-tests/jsp/core_syntax/beantests/getProperty/negativeGetPropNotProperty.jsp
  
  Index: negativeGetPropNotProperty.jsp
  ===================================================================
  <html>
  <title>negativeGetPropNotProperty</title>
  <body>
  <% /** 	Name : negativeGetPropNotProperty
  	Description : Accessing a non-existant property of an explicit bean 
                        through a getProperty action
  	Result : Should return an error page.
  **/ %>	 
  <!-- Declaring the bean with out body -->
  <jsp:useBean id="myBean" scope="request" class="core_syntax.beantests.getProperty.StringBean" />
  <jsp:getProperty name="myBean" property="foo" />
  </body></body>
  </html> 
  
  
  
  1.1                  jakarta-watchdog/src/server/jsp-tests/jsp/core_syntax/beantests/setProperty/negativeSetPropNotProperty.jsp
  
  Index: negativeSetPropNotProperty.jsp
  ===================================================================
  <html>
  <title>negativeSetPropNotProperty</title>
  <body>
  <% /** 	Name : negativeSetPropNotProperty
  	Description : Accessing a non-existant property of an explicit bean 
                        through a getProperty action
  	Result : Should return an error page.
  **/ %>	 
  <!-- Declaring the bean with out body -->
  <jsp:useBean id="myBean" scope="request" class="core_syntax.beantests.setProperty.SetpropBean" />
  <jsp:setProperty name="myBean" property="foo" value="change" />
  </body></body>
  </html> 
  
  
  
  1.1                  jakarta-watchdog/src/server/jsp-tests/jsp/core_syntax/beantests/setProperty/negativeSetPropNotWrite.jsp
  
  Index: negativeSetPropNotWrite.jsp
  ===================================================================
  <html>
  <title>negativeSetPropNotWrite</title>
  <body>
  <% /** 	Name : negativeSetPropNotWrite
  	Description : Accessing a read-only property of an explicit bean 
                        through a getProperty action
  	Result : Should return an error page.
  **/ %>	 
  <!-- Declaring the bean with out body -->
  <jsp:useBean id="myBean" scope="request" class="core_syntax.beantests.setProperty.SetpropBean" />
  <jsp:setProperty name="myBean" property="bar" value="change" />
  </body>
  </html>