blob: fbb6aeceba490f04b8999d6fa6d9de5d91f341aa [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to you 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 javax.portlet.tck.portlets;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Locale;
import java.util.ResourceBundle;
import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.Portlet;
import javax.portlet.PortletConfig;
import javax.portlet.PortletException;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import javax.portlet.tck.beans.JSR286SpecTestCaseDetails;
import javax.portlet.tck.beans.TestResult;
import static javax.portlet.tck.beans.JSR286SpecTestCaseDetails.V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE5;
import static javax.portlet.tck.beans.JSR286SpecTestCaseDetails.V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE6;
import static javax.portlet.tck.beans.JSR286SpecTestCaseDetails.V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE7;
import static javax.portlet.tck.constants.Constants.THREADID_ATTR;
/**
* This portlet implements several test cases for the JSR 362 TCK. The test case names are defined
* in the /src/main/resources/xml-resources/additionalTCs.xml file. The build process will integrate
* the test case names defined in the additionalTCs.xml file into the complete list of test case
* names for execution by the driver.
*
* This is the main portlet for the test cases. If the test cases call for events, this portlet will
* initiate the events, but not process them. The processing is done in the companion portlet
* AddlPortletTests_SPEC2_6_RenderConfig3_event
*
* @author ahmed
*/
public class AddlPortletTests_SPEC2_6_RenderConfig3 implements Portlet {
private PortletConfig portletConfig = null;
@Override
public void init(PortletConfig config) throws PortletException {
this.portletConfig = config;
}
@Override
public void destroy() {}
@Override
public void processAction(ActionRequest portletReq, ActionResponse portletResp)
throws PortletException, IOException {
portletResp.setRenderParameters(portletReq.getParameterMap());
long tid = Thread.currentThread().getId();
portletReq.setAttribute(THREADID_ATTR, tid);
}
@Override
public void render(RenderRequest portletReq, RenderResponse portletResp)
throws PortletException, IOException {
long tid = Thread.currentThread().getId();
portletReq.setAttribute(THREADID_ATTR, tid);
PrintWriter writer = portletResp.getWriter();
JSR286SpecTestCaseDetails tcd = new JSR286SpecTestCaseDetails();
Locale locale = portletReq.getLocale();
ResourceBundle res = portletConfig.getResourceBundle(locale);
// Create result objects for the tests
/* TestCase: V2AddlPortletTests_SPEC2_6_RenderConfig3_getResourceBundle5 */
/* Details: "If the resource bundle does not contain a */
/* \"javax.portlet.title\" property, the value defined in the */
/* deployment descriptor <title> element is returned by the */
/* corresponding getString method call" */
TestResult tr0 =
tcd.getTestResultFailed(V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE5);
if (res.getString("javax.portlet.title").equals("AddlPortletTests_SPEC2_6_RenderConfig3")) {
tr0.setTcSuccess(true);
} else {
tr0.appendTcDetail("Failed because title is " + res.getString("javax.portlet.title"));
}
tr0.writeTo(writer);
/* TestCase: V2AddlPortletTests_SPEC2_6_RenderConfig3_getResourceBundle6 */
/* Details: "If the resource bundle does not contain a */
/* \"javax.portlet.short-title\" property, the value defined in the */
/* deployment descriptor <short-title> element is returned by */
/* the corresponding getString method call" */
TestResult tr1 =
tcd.getTestResultFailed(V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE6);
if (res.getString("javax.portlet.short-title")
.equals("AddlPortletTests_SPEC2_6_RenderConfig3_a")) {
tr1.setTcSuccess(true);
} else {
tr1.appendTcDetail(
"Failed because short-title is " + res.getString("javax.portlet.short-title"));
}
tr1.writeTo(writer);
/* TestCase: V2AddlPortletTests_SPEC2_6_RenderConfig3_getResourceBundle7 */
/* Details: "If the resource bundle does not contain a */
/* \"javax.portlet.keywords\" property, the value defined in the */
/* deployment descriptor <keywords> element is returned by the */
/* corresponding getString method call" */
TestResult tr2 =
tcd.getTestResultFailed(V2ADDLPORTLETTESTS_SPEC2_6_RENDERCONFIG3_GETRESOURCEBUNDLE7);
if (res.getString("javax.portlet.keywords")
.equals("AddlPortletTests_SPEC2_6_RenderConfig3_b")) {
tr2.setTcSuccess(true);
} else {
tr2.appendTcDetail("Failed because keyword is " + res.getString("javax.portlet.keywords"));
}
tr2.writeTo(writer);
}
}