?? testimgtag1a.jsp
字號(hào):
<%@ 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" %>
<logic:equal name="runTest" value="testImgPageNameNoScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramMapNoScope"/>
</bean:define>
<bean:define id="thisMap1" name="paramMapNoScope" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap1, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNamePropertyNoScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramPropertyMapNoScope" property="map"/>
</bean:define>
<bean:define id="thisMap2" name="paramPropertyMapNoScope" property="map" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap2, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNameApplicationScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramMapApplicationScope"/>
</bean:define>
<bean:define id="thisMap1" name="paramMapApplicationScope" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap1, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNamePropertyApplicationScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramPropertyMapApplicationScope" property="map"/>
</bean:define>
<bean:define id="thisMap2" name="paramPropertyMapApplicationScope" property="map" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap2, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNameSessionScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramMapSessionScope"/>
</bean:define>
<bean:define id="thisMap1" name="paramMapSessionScope" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap1, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNamePropertySessionScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramPropertyMapSessionScope" property="map"/>
</bean:define>
<bean:define id="thisMap2" name="paramPropertyMapSessionScope" property="map" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap2, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNameRequestScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramMapRequestScope"/>
</bean:define>
<bean:define id="thisMap1" name="paramMapRequestScope" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap1, null, false)%>">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testImgPageNamePropertyRequestScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:img page="/some/image.gif" name="paramPropertyMapRequestScope" property="map"/>
</bean:define>
<bean:define id="thisMap2" name="paramPropertyMapRequestScope" property="map" type="java.util.Map"/>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<img src="<%=org.apache.struts.taglib.TagUtils.getInstance().computeURL(pageContext, null, null, "/some/image.gif", null, null, thisMap2, null, false)%>">
</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);
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -