?? testframetag8.jsp
字號:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@page import="junit.framework.Assert"%>
<%@page import="java.util.HashMap"%>
<%@ 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="testFramePageParamIdParamNameNoScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam" paramName="paramName"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameParamPropertyNoScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam"
paramName="testingParamProperty" paramProperty="string"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramPropertyValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameApplicationScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam" paramName="paramName"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameParamPropertyApplicationScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam"
paramName="testingParamProperty" paramProperty="string"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramPropertyValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameSessionScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam" paramName="paramName"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameParamPropertySessionScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam"
paramName="testingParamProperty" paramProperty="string"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramPropertyValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameRequestScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam" paramName="paramName"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageParamIdParamNameParamPropertyRequestScope">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" paramId="myParam"
paramName="testingParamProperty" paramProperty="string"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?myParam=paramPropertyValue">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling1">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="yes"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="yes">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling2">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="Yes"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="Yes">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling3">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="YES"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="YES">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling4">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="no"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="no">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling5">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="No"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="No">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling6">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="NO"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="NO">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling7">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="auto"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="auto">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling8">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="Auto"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="Auto">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling9">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="AUTO"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="AUTO">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageScrolling10">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" scrolling="XXX"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" scrolling="XXX">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageStyle">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" style="XXX"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" style="XXX">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageTitle">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" title="XXX"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" title="XXX">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageTitleKey">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" titleKey="default.bundle.message"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>" title="Testing Message">
</bean:define>
</logic:equal>
<logic:equal name="runTest" value="testFramePageTransaction">
<bean:define id="TEST_RESULTS" toScope="page">
<html:frame page="/path/to/non/existing/jsp.jsp" transaction="true"/>
</bean:define>
<bean:define id="EXPECTED_RESULTS" toScope="page">
<frame src="<%=response.encodeURL( request.getContextPath() + "/path/to/non/existing/jsp.jsp")%>?org.apache.struts.taglib.html.TOKEN=Some_Token_Here">
</bean:define>
</logic:equal>
<%
String expected = (String) pageContext.getAttribute("EXPECTED_RESULTS");
String compareTo = (String) pageContext.getAttribute("TEST_RESULTS");
if ((expected == null) || (expected == null)){
Assert.fail("An invalid (or mispelled) test on this page was called. Please verify that you've setup the tests (and spellings) correctly.");
}
Assert.assertEquals(expected, compareTo);
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -