Package org.apache.strutsel.taglib.html

Source Code of org.apache.strutsel.taglib.html.TestELErrorsTag

/*
* $Header: /home/cvs/jakarta-struts/contrib/struts-el/src/test/org/apache/strutsel/taglib/html/TestELErrorsTag.java,v 1.3 2002/11/16 05:12:06 jmitchell Exp $
* $Revision: 1.3 $
* $Date: 2002/11/16 05:12:06 $
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2002 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 acknowledgement:
*       "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.strutsel.taglib.html;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
import junit.framework.Test;
import junit.framework.TestSuite;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.strutsel.taglib.utils.DOMHelper;
import org.apache.strutsel.taglib.utils.HashMapMessageResources;
import org.apache.strutsel.taglib.utils.JspTagTestCase;
import org.apache.strutsel.taglib.utils.TestHelper;


public class TestELErrorsTag
    extends JspTagTestCase {
    protected static final String FOOTER_VALUE            = "zzz";
    protected static final String HEADER_VALUE            = "aaa";
    protected static final String PREFIX_VALUE            = "[[[";
    protected static final String PROPERTY_KEY            = "property";
    protected static final String REQUIRED_TEXT_VALUE_KEY =
            "RequiredTextValue";
    protected static final String SUFFIX_VALUE            = "]]]";
    protected static final String XXX_VALUE               = "xxx";
    protected static final String YYY_VALUE               = "yyy";
    protected ELErrorsTag         elErrorsTag             = null;
    private static Log            log                     =
            LogFactory.getLog(TestELErrorsTag.class);

    public TestELErrorsTag(String theName) {
        super(theName);
    }

    public static void main(String[] args) {
        junit.awtui.TestRunner.main(
                new String[] { TestELErrorsTag.class.getName() });
    }

    public static Test suite() {
        return new TestSuite(TestELErrorsTag.class);
    }

    public void setUp() {
        elErrorsTag = new ELErrorsTag();
        elErrorsTag.setPageContext(pageContext);
    }

    /**
     * Tests simple global error with all tag attributes set to default, and no
     * header, footer, prefix or suffix.
     */
    public void testPlain()
                   throws ServletException, JspException {
        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(ActionErrors.GLOBAL_ERROR, error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = XXX_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endPlain(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    /**
     * Tests multiple errors put in errors list, with two different property
     * names, but referring to the same error, but still using the default
     * value of "property", which will cause both errors to be retrieved.
     */
    public void testMultiProperties()
                             throws ServletException, JspException {
        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(PROPERTY_KEY + "1", error);
        errors.add(PROPERTY_KEY + "2", error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = XXX_VALUE + " " + XXX_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endMultiProperties(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    /**
     * Tests putting in two errors in errors list, with two different property
     * names, and referring to two different error keys, and the "property"
     * attribute set to only one of them.
     */
    public void testOnlyWantOneProperty()
                                 throws ServletException, JspException {
        elErrorsTag.setProperty(PROPERTY_KEY + "2");

        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error1.misc", XXX_VALUE);
        messageResources.addMessage("error2.misc", YYY_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        errors.add(PROPERTY_KEY + "1", new ActionError("error1.misc"));
        errors.add(PROPERTY_KEY + "2", new ActionError("error2.misc"));
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = YYY_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endOnlyWantOneProperty(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    /**
     * Tests one error on a specific property, with "property" attribute set to
     * default.
     */
    public void testProperty()
                      throws ServletException, JspException {
        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(PROPERTY_KEY, error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = XXX_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endProperty(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    /**
     * Just like "testPropertySpecified", but the "property" value is an EL
     * expression, evaluating to the same value as in the other test.
     */
    public void testPropertySpecifiedEL()
                                 throws ServletException, JspException {
        String varName = "targetVar";
        pageContext.setAttribute(varName, PROPERTY_KEY);
        elErrorsTag.setProperty("${" + varName + "}");
        testPropertySpecified();
    }

    public void endPropertySpecifiedEL(com.meterware.httpunit.WebResponse testResponse) {
        endPropertySpecified(testResponse);
    }

    /**
     * Tests one error in errors list, set to a property, and the "property"
     * attribute set to that property key.
     */
    public void testPropertySpecified()
                               throws ServletException, JspException {
        elErrorsTag.setProperty(PROPERTY_KEY);

        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(PROPERTY_KEY, error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = XXX_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endPropertySpecified(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    /**
     * Tests one error in the errors list, set to a property, and the
     * "property" attribute set to a different property key.
     */
    public void testPropertySpecifiedWrong()
                                    throws ServletException, JspException {
        elErrorsTag.setProperty(PROPERTY_KEY + "x");

        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(PROPERTY_KEY, error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = "";
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endPropertySpecifiedWrong(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }

    public void tearDown() {
        elErrorsTag = null;
    }

    /**
     * Tests a single error in errors list, with the "header" and "footer"
     * resource set to non-empty strings.
     */
    public void testHeaderFooter()
                          throws ServletException, JspException {
        HashMapMessageResources messageResources = new HashMapMessageResources(
                                                           null, null, true);
        messageResources.addMessage("error.misc", XXX_VALUE);
        messageResources.addMessage("errors.header", HEADER_VALUE);
        messageResources.addMessage("errors.footer", FOOTER_VALUE);
        String bundle   = elErrorsTag.getBundle();
        if (bundle == null)
            bundle   = Action.MESSAGES_KEY;
        pageContext.setAttribute(bundle, messageResources,
                                 PageContext.APPLICATION_SCOPE);

        ActionErrors errors = new ActionErrors();
        ActionError  error = new ActionError("error.misc");
        errors.add(ActionErrors.GLOBAL_ERROR, error);
        pageContext.setAttribute(elErrorsTag.getName(), errors,
                                 PageContext.REQUEST_SCOPE);

        HttpServletResponse response     = (HttpServletResponse)pageContext.getResponse();
        String              requiredText = HEADER_VALUE + " " + XXX_VALUE +
                                           " " + FOOTER_VALUE;
        response.addHeader(REQUIRED_TEXT_VALUE_KEY, requiredText);

        int startTagReturn  = elErrorsTag.doStartTag();
        int afterBodyReturn = elErrorsTag.doAfterBody();
        int endTagReturn    = elErrorsTag.doEndTag();
    }

    public void endHeaderFooter(com.meterware.httpunit.WebResponse testResponse) {
        try {
            TestHelper.printResponse(testResponse);

            org.w3c.dom.Document document = testResponse.getDOM();
            DOMHelper.printNode(document.getDocumentElement());

            String nodeText = DOMHelper.getNodeText(document, "/html/body");
            log.debug("nodeText[" + nodeText + "]");

            String requiredTextValue = (String)testResponse.getHeaderField(
                                               REQUIRED_TEXT_VALUE_KEY);

            if (!nodeText.equals(requiredTextValue)) {
                fail("The <errors> tag instance should have resulted " +
                     "in the text " + "\"" + requiredTextValue +
                     "\", but instead had the value \"" + nodeText + "\".");
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
    }
}
TOP

Related Classes of org.apache.strutsel.taglib.html.TestELErrorsTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.