in portlet-tck_3.0/V2DispatcherReqRespTests2/src/main/java/javax/portlet/tck/servlets/DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_servlet.java [127:813]
protected void processTCKReq(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
PortletRequest portletReq = (PortletRequest) request.getAttribute("javax.portlet.request");
PortletResponse portletResp = (PortletResponse) request.getAttribute("javax.portlet.response");
PrintWriter writer = ((MimeResponse)portletResp).getWriter();
JSR286DispatcherReqRespTestCaseDetails tcd = new JSR286DispatcherReqRespTestCaseDetails();
// Create result objects for the tests
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getAttribute */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getAttribute must provide the same */
/* functionality as ResourceRequest.getAttribute" */
TestResult tr0 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETATTRIBUTE);
try {
String hval = (String)request.getAttribute(ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getAttribute");
String pval = (String)portletReq.getAttribute(ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getAttribute");
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr0);
} catch(Exception e) {tr0.appendTcDetail(e.toString());}
tr0.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getAttributeNames */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getAttributeNames must provide the */
/* same functionality as ResourceRequest.getAttributeNames" */
TestResult tr1 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETATTRIBUTENAMES);
try {
Enumeration<String> he = request.getAttributeNames();
Enumeration<String> pe = portletReq.getAttributeNames();
CompareUtils.enumsEqual("HttpServletRequest attribute names", he, "ResourceRequest attribute names", pe,tr1);
} catch(Exception e) {tr1.appendTcDetail(e.toString());}
tr1.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getAuthType */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getAuthType must provide the same */
/* functionality as ResourceRequest.getAuthType" */
TestResult tr2 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETAUTHTYPE);
try {
String hval = request.getAuthType();
String pval = ((ResourceRequest)portletReq).getAuthType();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr2);
} catch(Exception e) {tr2.appendTcDetail(e.toString());}
tr2.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getCharacterEncoding */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getCharacterEncoding must provide */
/* the same functionality as ResourceRequest.getCharacterEncoding" */
TestResult tr3 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETCHARACTERENCODING);
try {
String hval = request.getCharacterEncoding();
String pval = ((ResourceRequest)portletReq).getCharacterEncoding();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr3);
} catch(Exception e) {tr3.appendTcDetail(e.toString());}
tr3.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getContentLength */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getContentLength must provide the */
/* same functionality as ResourceRequest.getContentLength" */
TestResult tr4 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETCONTENTLENGTH);
try {
int hval = request.getContentLength();
int pval = ((ResourceRequest)portletReq).getContentLength();
String str = "Value " + hval + " from " + "HttpServletRequest" + " does not equal value " + pval + " + ResourceRequest";
if (hval != pval) {
tr4.appendTcDetail(str);
}
tr4.setTcSuccess(hval == pval);
} catch(Exception e) {tr4.appendTcDetail(e.toString());}
tr4.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getContentType */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getContentType must provide the same */
/* functionality as ResourceRequest.getContentType" */
TestResult tr5 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETCONTENTTYPE);
try {
String hval = request.getContentType();
String pval = ((ResourceRequest)portletReq).getContentType();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr5);
} catch(Exception e) {tr5.appendTcDetail(e.toString());}
tr5.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getContextPath */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getContextPath must provide the same */
/* functionality as ResourceRequest.getContextPath" */
TestResult tr6 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETCONTEXTPATH);
try {
String hval = request.getContextPath();
String pval = ((ResourceRequest)portletReq).getContextPath();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr6);
} catch(Exception e) {tr6.appendTcDetail(e.toString());}
tr6.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getCookies */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getCookies must provide the same */
/* functionality as ResourceRequest.getCookies" */
TestResult tr7 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETCOOKIES);
try {
Cookie[] hvals = request.getCookies();
Cookie[] pvals = ((ResourceRequest)portletReq).getCookies();
HashSet<Cookie> hsc = new HashSet<Cookie>(Arrays.asList(hvals));
HashSet<Cookie> psc = new HashSet<Cookie>(Arrays.asList(pvals));
CompareUtils.setsEqual("cookies from HttpServletRequest", hsc, "cookies from from ResourceRequest", psc, tr7);
} catch(Exception e) {tr7.appendTcDetail(e.toString());}
tr7.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getDateHeader */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getDateHeader must return a value */
/* corresponding to that returned by ResourceRequest.getProperty for */
/* the corresponding header name" */
TestResult tr8 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETDATEHEADER);
try {
long hval = request.getDateHeader(DATE_HEADER);
String pstr = portletReq.getProperty(DATE_HEADER);
long pval = (pstr == null) ? -1 : Long.parseLong(pstr);
boolean ok = (hval == pval);
if (!ok) {
String str = DATE_HEADER + " from HttpServletRequest: " + hval + ", did not equal " + pval + " from ResourceRequest";
tr8.appendTcDetail(str);
}
tr8.setTcSuccess(ok);
} catch(Exception e) {tr8.appendTcDetail(e.toString());}
tr8.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getHeader */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getHeader must return a value */
/* corresponding to that returned by ResourceRequest.getProperty for */
/* the corresponding header name" */
TestResult tr9 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETHEADER);
try {
String hval = request.getHeader(ACCEPT_HEADER);
String pval = portletReq.getProperty(ACCEPT_HEADER);
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr9);
} catch(Exception e) {tr9.appendTcDetail(e.toString());}
tr9.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getHeaderNames */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the Enumeration returned by HttpServletRequest.getHeaderNames must */
/* be contained in the Enumeration returned by */
/* ResourceRequest.getPropertyNames" */
TestResult tr10 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETHEADERNAMES);
try {
// he must be contained in pe
Enumeration<String> he = request.getHeaderNames();
Enumeration<String> pe = portletReq.getPropertyNames();
HashSet<String> hs = new HashSet<String>();
while (he.hasMoreElements()) {
hs.add(he.nextElement());
}
HashSet<String> ps = new HashSet<String>();
while (pe.hasMoreElements()) {
ps.add(pe.nextElement());
}
boolean ok = ps.containsAll(hs);
if (!ok) {
hs.removeAll(ps);
String str = "The following headers from HttpServletRequest are not contained in ResourceRequest: ";
for (String h : hs) {;
str += "\"" + h + "\", ";
};
tr10.appendTcDetail(str);
}
tr10.setTcSuccess(ok);
} catch(Exception e) {tr10.appendTcDetail(e.toString());}
tr10.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getHeaders */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getHeaders must return a value */
/* corresponding to that returned by ResourceRequest.getProperties */
/* for the corresponding header name" */
TestResult tr11 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETHEADERS);
try {
Enumeration<String> he = request.getHeaders(ACCEPT_LANG_HEADER);
Enumeration<String> pe = portletReq.getProperties(ACCEPT_LANG_HEADER);
CompareUtils.enumsEqual("HttpServletRequest parameter names", he, "ResourceRequest parameter names", pe,tr11);
} catch(Exception e) {tr11.appendTcDetail(e.toString());}
tr11.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getIntHeader */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getIntHeader must return a value */
/* corresponding to that returned by ResourceRequest.getProperty for */
/* the corresponding header name" */
TestResult tr12 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETINTHEADER);
try {
int hval = request.getIntHeader(CONTENT_LENGTH_HEADER);
String pstr = portletReq.getProperty(CONTENT_LENGTH_HEADER);
int pval = (pstr == null) ? -1 : Integer.parseInt(pstr);
boolean ok = (hval == pval);
if (!ok) {
String str = CONTENT_LENGTH_HEADER + " from HttpServletRequest: " + hval + ", did not equal " + pval + " from ResourceRequest";
tr12.appendTcDetail(str);
}
tr12.setTcSuccess(ok);
} catch(Exception e) {tr12.appendTcDetail(e.toString());}
tr12.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getLocalAddr */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getLocalAddr must return null" */
TestResult tr13 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETLOCALADDR);
try {
String isval = request.getLocalAddr();
CompareUtils.stringsEqual(isval, null, tr13);
} catch(Exception e) {tr13.appendTcDetail(e.toString());}
tr13.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getLocalName */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getLocalName must return null" */
TestResult tr14 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETLOCALNAME);
try {
String isval = request.getLocalName();
CompareUtils.stringsEqual(isval, null, tr14);
} catch(Exception e) {tr14.appendTcDetail(e.toString());}
tr14.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getLocalPort */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getLocalPort must return 0" */
TestResult tr15 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETLOCALPORT);
try {
int isval = request.getLocalPort();
if (isval != 0) tr15.appendTcDetail("Returned value was: " + isval);
tr15.setTcSuccess(isval == 0);
} catch(Exception e) {tr15.appendTcDetail(e.toString());}
tr15.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getLocale */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getLocale must provide the same */
/* functionality as ResourceRequest.getLocale" */
TestResult tr16 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETLOCALE);
try {
Locale hl = request.getLocale();
Locale pl = portletReq.getLocale();
String hval = hl.getDisplayName();
String pval = pl.getDisplayName();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr16);
} catch(Exception e) {tr16.appendTcDetail(e.toString());}
tr16.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getLocales */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getLocales must provide the same */
/* functionality as ResourceRequest.getLocales" */
TestResult tr17 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETLOCALES);
try {
Enumeration<Locale> he = request.getLocales();
Enumeration<Locale> pe = portletReq.getLocales();
CompareUtils.enumsEqual("HttpServletRequest locales", he, "ResourceRequest locales", pe,tr17);
} catch(Exception e) {tr17.appendTcDetail(e.toString());}
tr17.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getMethod */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getMethod must provide the same */
/* functionality as ResourceRequest.getMethod" */
TestResult tr18 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETMETHOD);
try {
String hval = request.getMethod();
String pval = ((ResourceRequest)portletReq).getMethod();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr18);
} catch(Exception e) {tr18.appendTcDetail(e.toString());}
tr18.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getParameter */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getParameter must provide the same */
/* functionality as ResourceRequest.getParameter" */
TestResult tr19 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPARAMETER);
try {
// TestSetupLink
String val = portletReq.getParameter(PARM_NAME);
if (val != null) {
String hval = request.getParameter(PARM_NAME);
String pval = portletReq.getParameter(PARM_NAME);
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr19);
tr19.writeTo(writer);
}
} catch(Exception e) {tr19.appendTcDetail(e.toString());}
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getParameterMap */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getParameterMap must provide the */
/* same functionality as ResourceRequest.getParameterMap" */
TestResult tr20 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPARAMETERMAP);
try {
// TestSetupLink
String val = portletReq.getParameter(PARM_NAME);
if (val != null) {
Map<String, String[]> hmap = request.getParameterMap();
Map<String, String[]> pmap = portletReq.getParameterMap();
CompareUtils.mapsEqual("map from HttpServletRequest", hmap, "map from ResourceRequest", pmap, tr20);
tr20.writeTo(writer);
}
} catch(Exception e) {tr20.appendTcDetail(e.toString());}
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getParameterNames */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getParameterNames must provide the */
/* same functionality as ResourceRequest.getParameterNames" */
TestResult tr21 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPARAMETERNAMES);
try {
// TestSetupLink
String val = portletReq.getParameter(PARM_NAME);
if (val != null) {
Enumeration<String> he = request.getParameterNames();
Enumeration<String> pe = portletReq.getParameterNames();
CompareUtils.enumsEqual("HttpServletRequest parameter names", he, "ResourceRequest parameter names", pe,tr21);
tr21.writeTo(writer);
}
} catch(Exception e) {tr21.appendTcDetail(e.toString());}
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getParameterValues */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getParameterValues must provide the */
/* same functionality as ResourceRequest.getParameterValues" */
TestResult tr22 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPARAMETERVALUES);
try {
// TestSetupLink
String val = portletReq.getParameter(PARM_NAME);
if (val != null) {
String[] hvals = request.getParameterValues(PARM_NAME);
String[] pvals = portletReq.getParameterValues(PARM_NAME);
String hval = ((hvals==null) ? "null" : hvals[0]);
String pval = ((pvals==null) ? "null" : pvals[0]);
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr22);
tr22.writeTo(writer);
}
} catch(Exception e) {tr22.appendTcDetail(e.toString());}
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getPathInfo */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getPathInfo must a value */
/* corresponding to the path used to obtain the */
/* PortletRequestDispatcher" */
TestResult tr23 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPATHINFO);
try {
String hval = request.getPathInfo();
String pval = null;
CompareUtils.stringsEqual("HttpServletRequest", hval, " defined: ", pval, tr23);
} catch(Exception e) {tr23.appendTcDetail(e.toString());}
tr23.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getPathTranslated */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getPathTranslated must a value */
/* corresponding to the path used to obtain the */
/* PortletRequestDispatcher" */
TestResult tr24 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPATHTRANSLATED);
try {
String hval = request.getPathTranslated();
String pval = null;
CompareUtils.stringsEqual("HttpServletRequest", hval, " defined: ", pval, tr24);
} catch(Exception e) {tr24.appendTcDetail(e.toString());}
tr24.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getProtocol */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getProtocol must return */
/* \"HTTP/1.1\"" */
TestResult tr25 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETPROTOCOL);
try {
String isval = request.getProtocol();
CompareUtils.stringsEqual(isval, "HTTP/1.1", tr25);
} catch(Exception e) {tr25.appendTcDetail(e.toString());}
tr25.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getQueryString */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getQueryString must a value */
/* corresponding to the query string information used to obtain the */
/* PortletRequestDispatcher" */
TestResult tr26 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETQUERYSTRING);
try {
String hval = request.getQueryString();
String pval = QUERY_STRING;
CompareUtils.stringsEqual("HttpServletRequest", hval, " defined: ", pval, tr26);
} catch(Exception e) {tr26.appendTcDetail(e.toString());}
tr26.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRealPath */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRealPath must return null" */
TestResult tr27 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREALPATH);
try {
String isval = request.getRealPath("/WEB-INF/portlet.xml");
CompareUtils.stringsEqual(isval, null, tr27);
} catch(Exception e) {tr27.appendTcDetail(e.toString());}
tr27.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRemoteAddr */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRemoteAddr must return null" */
TestResult tr28 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREMOTEADDR);
try {
String isval = request.getRemoteAddr();
CompareUtils.stringsEqual(isval, null, tr28);
} catch(Exception e) {tr28.appendTcDetail(e.toString());}
tr28.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRemoteHost */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRemoteHost must return null" */
TestResult tr29 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREMOTEHOST);
try {
String isval = request.getRemoteHost();
CompareUtils.stringsEqual(isval, null, tr29);
} catch(Exception e) {tr29.appendTcDetail(e.toString());}
tr29.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRemotePort */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRemotePort must return 0" */
TestResult tr30 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREMOTEPORT);
try {
int isval = request.getRemotePort();
if (isval != 0) tr30.appendTcDetail("Returned value was: " + isval);
tr30.setTcSuccess(isval == 0);
} catch(Exception e) {tr30.appendTcDetail(e.toString());}
tr30.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRemoteUser */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRemoteUser must provide the same */
/* functionality as ResourceRequest.getRemoteUser" */
TestResult tr31 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREMOTEUSER);
try {
String hval = request.getRemoteUser();
String pval = ((ResourceRequest)portletReq).getRemoteUser();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr31);
} catch(Exception e) {tr31.appendTcDetail(e.toString());}
tr31.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRequestDispatcher */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRequestDispatcher must provide */
/* functionality as defined in the servlet specification" */
TestResult tr32 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREQUESTDISPATCHER);
try {
String sname = SERVLET_PREFIX + "DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_servlet" + SERVLET_SUFFIX;
RequestDispatcher hval = request.getRequestDispatcher(sname);
if (hval == null) {
tr32.appendTcDetail("Could not obtain request dispatcher for " + sname);
}
tr32.setTcSuccess(hval != null);
} catch(Exception e) {tr32.appendTcDetail(e.toString());}
tr32.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRequestURI */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRequestURI must a value */
/* corresponding to the path and query string information used to */
/* obtain the PortletRequestDispatcher" */
TestResult tr33 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREQUESTURI);
try {
String sname = SERVLET_PREFIX + "DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_servlet" + SERVLET_SUFFIX;
String hval = request.getRequestURI();
if (!hval.contains(sname)) {
tr33.appendTcDetail("Request URI " + hval + " does not contain " + sname);
}
tr33.setTcSuccess(hval.contains(sname));
} catch(Exception e) {tr33.appendTcDetail(e.toString());}
tr33.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRequestURL */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRequestURL must return null" */
TestResult tr34 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREQUESTURL);
try {
StringBuffer isval = request.getRequestURL();
if (isval != null) tr34.appendTcDetail("Request URL is " + isval.toString());
tr34.setTcSuccess(isval == null);
} catch(Exception e) {tr34.appendTcDetail(e.toString());}
tr34.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getRequestedSessionId */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getRequestedSessionId must provide */
/* the same functionality as ResourceRequest.getRequestedSessionId" */
TestResult tr35 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETREQUESTEDSESSIONID);
try {
String hval = request.getRequestedSessionId();
String pval = ((ResourceRequest)portletReq).getRequestedSessionId();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr35);
} catch(Exception e) {tr35.appendTcDetail(e.toString());}
tr35.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getScheme */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getScheme must provide the same */
/* functionality as ResourceRequest.getScheme" */
TestResult tr36 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETSCHEME);
try {
String hval = request.getScheme();
String pval = ((ResourceRequest)portletReq).getScheme();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr36);
} catch(Exception e) {tr36.appendTcDetail(e.toString());}
tr36.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getServerName */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getServerName must provide the same */
/* functionality as ResourceRequest.getServerName" */
TestResult tr37 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETSERVERNAME);
try {
String hval = request.getServerName();
String pval = ((ResourceRequest)portletReq).getServerName();
CompareUtils.stringsEqual("HttpServletRequest", hval, "ResourceRequest", pval, tr37);
} catch(Exception e) {tr37.appendTcDetail(e.toString());}
tr37.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getServerPort */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getServerPort must provide the same */
/* functionality as ResourceRequest.getServerPort" */
TestResult tr38 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETSERVERPORT);
try {
int hval = request.getServerPort();
int pval = ((ResourceRequest)portletReq).getServerPort();
String str = "Value " + hval + " from " + "HttpServletRequest" + " does not equal value " + pval + " + ResourceRequest";
if (hval != pval) {
tr38.appendTcDetail(str);
}
tr38.setTcSuccess(hval == pval);
} catch(Exception e) {tr38.appendTcDetail(e.toString());}
tr38.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getServletPath */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getServletPath must a value */
/* corresponding to the path used to obtain the */
/* PortletRequestDispatcher" */
TestResult tr39 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETSERVLETPATH);
try {
String sname = SERVLET_PREFIX + "DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_servlet" + SERVLET_SUFFIX;
String hval = request.getServletPath();
String pval = sname;
CompareUtils.stringsEqual("HttpServletRequest", hval, " defined: ", pval, tr39);
} catch(Exception e) {tr39.appendTcDetail(e.toString());}
tr39.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getSession */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getSession must provide the same */
/* functionality as */
/* ResourceRequest.getPortletSession(APPLICATION_SCOPE)" */
TestResult tr40 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETSESSION);
try {
HttpSession hval = request.getSession();
if (hval == null) {
tr40.appendTcDetail("Could not get session from HttpServletRequest");
}
tr40.setTcSuccess(hval != null);
} catch(Exception e) {tr40.appendTcDetail(e.toString());}
tr40.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_getUserPrincipal */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.getUserPrincipal must provide the */
/* same functionality as ResourceRequest.getUserPrincipal" */
TestResult tr41 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_GETUSERPRINCIPAL);
try {
java.security.Principal hpal = request.getUserPrincipal();
java.security.Principal ppal = ((ResourceRequest)portletReq).getUserPrincipal();
String str = "Value " + hpal.toString() + " from " + "HttpServletRequest" + " does not equal value " + ppal.toString() + " + ResourceRequest";
if (!hpal.equals(ppal)) {
tr41.appendTcDetail(str);
}
tr41.setTcSuccess(hpal.equals(ppal));
} catch(Exception e) {tr41.appendTcDetail(e.toString());}
tr41.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_isRequestedSessionIdValid */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.isRequestedSessionIdValid must */
/* provide the same functionality as */
/* ResourceRequest.isRequestedSessionIdValid" */
TestResult tr42 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_ISREQUESTEDSESSIONIDVALID);
try {
boolean hval = request.isRequestedSessionIdValid();
boolean pval = ((ResourceRequest)portletReq).isRequestedSessionIdValid();
String str = "Value " + hval + " from " + "HttpServletRequest" + " does not equal value " + pval + " + ResourceRequest";
if (hval != pval) {
tr42.appendTcDetail(str);
}
tr42.setTcSuccess(hval == pval);
} catch(Exception e) {tr42.appendTcDetail(e.toString());}
tr42.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_isSecure */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.isSecure must provide the same */
/* functionality as ResourceRequest.isSecure" */
TestResult tr43 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_ISSECURE);
try {
boolean hval = request.isSecure();
boolean pval = ((ResourceRequest)portletReq).isSecure();
String str = "Value " + hval + " from " + "HttpServletRequest" + " does not equal value " + pval + " + ResourceRequest";
if (hval != pval) {
tr43.appendTcDetail(str);
}
tr43.setTcSuccess(hval == pval);
} catch(Exception e) {tr43.appendTcDetail(e.toString());}
tr43.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_isUserInRole */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.isUserInRole must provide the same */
/* functionality as ResourceRequest.isUserInRole" */
TestResult tr44 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_ISUSERINROLE);
try {
boolean hval = request.isUserInRole(ROLE_NAME);
boolean pval = ((ResourceRequest)portletReq).isUserInRole(ROLE_NAME);
String str = "Value " + hval + " from " + "HttpServletRequest" + " does not equal value " + pval + " + ResourceRequest";
if (hval != pval) {
tr44.appendTcDetail(str);
}
tr44.setTcSuccess(hval == pval);
} catch(Exception e) {tr44.appendTcDetail(e.toString());}
tr44.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_removeAttribute */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.removeAttribute must provide the */
/* same functionality as ResourceRequest.removeAttribute" */
TestResult tr45 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_REMOVEATTRIBUTE);
try {
String hname = ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_removeAttribute1";
String pname = ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_removeAttribute2";
request.setAttribute(hname, "Value");
portletReq.setAttribute(pname, "Value");
request.removeAttribute(hname);
portletReq.removeAttribute(pname);
String hval = (String)request.getAttribute(hname);
String pval = (String)portletReq.getAttribute(pname);
boolean ok = (hval == null) && (pval == null);
String str = "";
if (!ok) {;
if (hval != null) str += "Attribute could not be removed through HttpServletRequest." ;
if (pval != null) str += "Attribute could not be removed through ResourceRequest." ;
tr45.appendTcDetail(str);
};
tr45.setTcSuccess(ok);
} catch(Exception e) {tr45.appendTcDetail(e.toString());}
tr45.writeTo(writer);
/* TestCase: V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_setAttribute */
/* Details: "In a target servlet of a forward in the Resource phase, */
/* the method HttpServletRequest.setAttribute must provide the same */
/* functionality as ResourceRequest.setAttribute" */
TestResult tr46 = tcd.getTestResultFailed(V2DISPATCHERREQRESPTESTS2_SPEC2_19_FORWARDSERVLETRESOURCEREQUEST_SETATTRIBUTE);
try {
String hname = ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_setAttribute1";
String pname = ATTR_PREFIX + "V2DispatcherReqRespTests2_SPEC2_19_ForwardServletResourceRequest_setAttribute2";
request.setAttribute(hname, "Value");
portletReq.setAttribute(pname, "Value");
String hval = (String)request.getAttribute(hname);
String pval = (String)portletReq.getAttribute(pname);
request.removeAttribute(hname);
portletReq.removeAttribute(pname);
boolean ok = (hval.equals("Value") && pval.equals("Value")) ;
String str = "";
if (!ok) {;
if (!hval.equals("Value")) str += "Attribute could not be set/read through HttpServletRequest." ;
if (!pval.equals("Value")) str += "Attribute could not be set/read through ResourceRequest." ;
tr46.appendTcDetail(str);
};
tr46.setTcSuccess(ok);
} catch(Exception e) {tr46.appendTcDetail(e.toString());}
tr46.writeTo(writer);
}