⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testelformtag.java

📁 jakarta-struts-1.2.4-src
💻 JAVA
字号:
/*
 * $Header: /home/cvs/jakarta-struts/contrib/struts-el/src/test/org/apache/strutsel/taglib/html/TestELFormTag.java,v 1.8 2004/06/24 01:27:31 jmitchell Exp $
 * $Revision: 1.8 $
 * $Date: 2004/06/24 01:27:31 $
 *
 * Copyright 1999-2004 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.strutsel.taglib.html;

import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.strutsel.taglib.utils.JspTagTestCase;

public class TestELFormTag extends JspTagTestCase
{

    protected static final String   ACTION_NAME   = "stuff";
    protected static final String   FORM_BEAN_CLASS   =
        "org.apache.strutsel.taglib.utils.TestFormBean";

    protected static final String REQUIRED_NAME_VALUE_KEY   =
            "RequiredNameValue";
    protected static final String REQUIRED_METHOD_VALUE_KEY   =
            "RequiredMethodValue";
    protected static final String REQUIRED_ACTION_VALUE_KEY   =
            "RequiredActionValue";

    protected ELFormTag elFormTag   = null;

    private static Log  log   = LogFactory.getLog(TestELFormTag.class);

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

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

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

    public void setUp() {
        elFormTag = new ELFormTag();
        elFormTag.setPageContext(pageContext);
    }

    /**
     * Converts an action name into the path associated with it.  The basic
     * contents of this function was copied from
     * "FormTag.getActionMappingName()".
     */
    protected  String   convertActionNameToPath(String actionName)
    {
        String value = actionName;

        int questionLoc = actionName.indexOf("?");
        if (questionLoc >= 0)
            value = value.substring(0, questionLoc);

        int slashLoc = value.lastIndexOf("/");
        int periodLoc   = value.lastIndexOf(".");

        if ((periodLoc >= 0) && (periodLoc > slashLoc))
            value = value.substring(0, periodLoc);

        if (!value.startsWith("/"))
            value = "/" + value;

        return (value);
    }

//     /**
//      * Return the form action converted into a server-relative URL.
//      * <p>
//      * This is copied from FormTag, with the small change of passing the action
//      * name as a parameter, and calling
//      * <code>convertActionNameToPath(actionName)</code> instead of the
//      * original's <code>getActionMappingName()</code>.
//      */
//     protected String getActionMappingURL(String actionName) {

//         HttpServletRequest request =
//             (HttpServletRequest) pageContext.getRequest();
//         StringBuffer value = new StringBuffer(request.getContextPath());
//         ApplicationConfig config = (ApplicationConfig)
//             pageContext.getRequest().getAttribute(Action.APPLICATION_KEY);
//         if (config != null) {
//             value.append(config.getPrefix());
//         }

//         // Use our servlet mapping, if one is specified
//         String servletMapping = (String)
//             pageContext.getAttribute(Action.SERVLET_KEY,
//                                      PageContext.APPLICATION_SCOPE);
//         if (servletMapping != null) {
//             String queryString = null;
//             int question = actionName.indexOf("?");
//             if (question >= 0) {
//                 queryString = actionName.substring(question);
//             }
//             String actionMapping = convertActionNameToPath(actionName);
//             if (servletMapping.startsWith("*.")) {
//                 value.append(actionMapping);
//                 value.append(servletMapping.substring(1));
//             } else if (servletMapping.endsWith("/*")) {
//                 value.append(servletMapping.substring
//                              (0, servletMapping.length() - 2));
//                 value.append(actionMapping);
//             } else if (servletMapping.equals("/")) {
//                 value.append(actionMapping);
//             }
//             if (queryString != null) {
//                 value.append(queryString);
//             }
//         }

//         // Otherwise, assume extension mapping is in use and extension is
//         // already included in the action property
//         else {
//             if (!actionName.startsWith("/")) {
//                 value.append("/");
//             }
//             value.append(actionName);
//         }

//         // Return the completed value
//         return (value.toString());
//     }

//     protected void setupServletEnvironment()
//         throws ServletException
//     {
//         ActionServlet   actionServlet  = new ActionServlet();
//         actionServlet.init(pageContext.getServletConfig());
//         actionServlet.init();

//         ApplicationConfig  appConfig   = new ApplicationConfig("");

//         pageContext.setAttribute(Action.APPLICATION_KEY, appConfig,
//                                  PageContext.APPLICATION_SCOPE);
//     }

    public void testDummy()
    {
    }

//     public void testPlain()
//         throws ServletException, JspException
//     {
//         ActionServlet   actionServlet  = new ActionServlet();
//         actionServlet.init(pageContext.getServletConfig());
//         actionServlet.init();

// //         ApplicationConfig  appConfig   = new ApplicationConfig("");

// //         pageContext.setAttribute(Action.APPLICATION_KEY, appConfig,
// //                                  PageContext.APPLICATION_SCOPE);

//         ActionMapping   mapping  = new ActionMapping();
//         mapping.setName(ACTION_NAME);
//         mapping.setPath(convertActionNameToPath(mapping.getName()));

//         ActionFormBean  formBean =
//             new ActionFormBean(mapping.getName(), FORM_BEAN_CLASS);

//         appConfig.addActionConfig(mapping);
//         appConfig.addFormBeanConfig(formBean);

//         HttpServletResponse response   =
//             (HttpServletResponse)pageContext.getResponse();

//         String encodedURL  =
//             response.encodeURL(RequestUtils.
//                                getActionMappingURL(mapping.getName(),
//                                                    pageContext));

//         response.addHeader(REQUIRED_NAME_VALUE_KEY, ACTION_NAME);
//         response.addHeader(REQUIRED_METHOD_VALUE_KEY, "post");
//         response.addHeader(REQUIRED_ACTION_VALUE_KEY, encodedURL);

//         elFormTag.setActionExpr(ACTION_NAME);

//         int startTagReturn = elFormTag.doStartTag();
//         int endTagReturn   = elFormTag.doEndTag();
//     }

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

//             Element docElement = testResponse.getDOM().getDocumentElement();
//             DOMHelper.printNode(docElement);

//             HashMap attrMap = new HashMap();

//             DOMHelper.recordFoundAttributes(testResponse.getDOM(),
//                                             "/html/body/form", attrMap);
//             DOMHelper.verifyAttributesPresent(attrMap,
//                                               new String[] { "name", "method",
//                                                              "action" },
//                                               false);
//             checkAttrValue(attrMap, testResponse, REQUIRED_NAME_VALUE_KEY,
//                            "form", "name");
//             checkAttrValue(attrMap, testResponse, REQUIRED_METHOD_VALUE_KEY,
//                            "form", "method");
//             checkAttrValue(attrMap, testResponse, REQUIRED_ACTION_VALUE_KEY,
//                            "form", "action");
//         } catch (Exception ex) {
//             ex.printStackTrace();
//             fail();
//         }
//     }

//     public void testMethod()
//         throws ServletException, JspException
//     {
//         ActionServlet   actionServlet  = new ActionServlet();
//         actionServlet.init(pageContext.getServletConfig());
//         actionServlet.init();

//         ApplicationConfig  appConfig   = new ApplicationConfig("");

//         pageContext.setAttribute(Action.APPLICATION_KEY, appConfig,
//                                  PageContext.APPLICATION_SCOPE);

//         ActionMapping   mapping  = new ActionMapping();
//         mapping.setName(ACTION_NAME);
//         mapping.setPath(convertActionNameToPath(mapping.getName()));

//         ActionFormBean  formBean =
//             new ActionFormBean(mapping.getName(), FORM_BEAN_CLASS);

//         appConfig.addActionConfig(mapping);
//         appConfig.addFormBeanConfig(formBean);

//         HttpServletResponse response   =
//             (HttpServletResponse)pageContext.getResponse();

//         String encodedURL  =
//             response.encodeURL(RequestUtils.
//                                getActionMappingURL(mapping.getName(),
//                                                    pageContext));

//         response.addHeader(REQUIRED_NAME_VALUE_KEY, ACTION_NAME);
//         response.addHeader(REQUIRED_METHOD_VALUE_KEY, "GET");
//         response.addHeader(REQUIRED_ACTION_VALUE_KEY, encodedURL);

//         elFormTag.setActionExpr(ACTION_NAME);
//         elFormTag.setMethodExpr("GET");

//         int startTagReturn = elFormTag.doStartTag();
//         int endTagReturn   = elFormTag.doEndTag();
//     }

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

//             Element docElement = testResponse.getDOM().getDocumentElement();
//             DOMHelper.printNode(docElement);

//             HashMap attrMap = new HashMap();

//             DOMHelper.recordFoundAttributes(testResponse.getDOM(),
//                                             "/html/body/form", attrMap);
//             DOMHelper.verifyAttributesPresent(attrMap,
//                                               new String[] { "name", "method",
//                                                              "action" },
//                                               false);
//             checkAttrValue(attrMap, testResponse, REQUIRED_NAME_VALUE_KEY,
//                            "form", "name");
//             checkAttrValue(attrMap, testResponse, REQUIRED_METHOD_VALUE_KEY,
//                            "form", "method");
//             checkAttrValue(attrMap, testResponse, REQUIRED_ACTION_VALUE_KEY,
//                            "form", "action");
//         } catch (Exception ex) {
//             ex.printStackTrace();
//             fail();
//         }
//     }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -