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

📄 testimgtag3.jsp

📁 这是STRUTS1.2。6的开发包。。这是我从芝APACHE网站下下来
💻 JSP
字号:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@page import="junit.framework.Assert"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>

<!-- --------Testing attributes using page------ -->
<logic:equal name="runTest" value="testImgPageKeyAlign1">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="left"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="left">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign2">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="right"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="right">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign3">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="top"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="top">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign4">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="middle"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="middle">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign5">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="bottom"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="bottom">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign6">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="texttop"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="texttop">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign7">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="absmiddle"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="absmiddle">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign8">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="absbottom"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="absbottom">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign9">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="any value"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="any value">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlign10">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" align="XXX"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" align="XXX">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAlt">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" alt="XXX"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" alt="XXX">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAltKeyDefaultBundle">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" altKey="default.bundle.message"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" alt="Testing Message">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAltKeyAlternateBundle">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="alternate.testing.image" altKey="alternate.bundle.message" bundle="alternate"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/alternate/myimage.gif")%>" alt="Testing Message">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAltKeyDefaultBundle_fr">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" altKey="default.bundle.message"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/fr/default/myimage.gif")%>" alt="Message D'Essai">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyAltKeyAlternateBundle_fr">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="alternate.testing.image" altKey="alternate.bundle.message" bundle="alternate"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/fr/alternate/myimage.gif")%>" alt="Message D'Essai">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyBorder">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" border="XXX"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" border="XXX">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyHeight1">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" height="15"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" height="15">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyHeight2">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" height="155px"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" height="155px">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyHspace">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" hspace="15"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" hspace="15">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyImageName">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" imageName="nameOfImage"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" name="nameOfImage">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyImageIsmap">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" ismap="nameOfMap"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/default/default/myimage.gif")%>" ismap="nameOfMap">
    </bean:define>
</logic:equal>

<logic:equal name="runTest" value="testImgPageKeyLocale">
    <bean:define id="TEST_RESULTS" toScope="page">
        <html:img pageKey="default.testing.image" locale="secret locale" altKey="default.bundle.message"/>
    </bean:define>
    <bean:define id="EXPECTED_RESULTS" toScope="page">
        <img src="<%=response.encodeURL( request.getContextPath() + "/images/fr/default/myimage.gif")%>" alt="Message D'Essai">
    </bean:define>
</logic:equal>

<% 
String expected = "";
String compareTo = "";

if (pageContext.getAttribute("EXPECTED_RESULTS") == null){
    throw new javax.servlet.jsp.JspException
    	("No tests on this page were called.  Please verify that you've setup the tests correctly.");
}else{
	expected=pageContext.getAttribute("TEST_RESULTS").toString();
}
if (pageContext.getAttribute("TEST_RESULTS") != null){
	compareTo=pageContext.getAttribute("EXPECTED_RESULTS").toString();
}

Assert.assertEquals(expected, compareTo);
%>

⌨️ 快捷键说明

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