You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mf...@apache.org on 2010/10/19 23:55:52 UTC

svn commit: r1024428 [4/4] - in /myfaces/portlet-bridge/tck/trunk_2.0.x: ./ portlet-bridge-tck-main/src/main/webapp/WEB-INF/ portlet-bridge-tck-main/src/main/webapp/tests/ portlet-bridge-tck-section6-2-configured-response-wrapper/ portlet-bridge-tck-se...

Modified: myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_2_1/Tests.java
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_2_1/Tests.java?rev=1024428&r1=1024427&r2=1024428&view=diff
==============================================================================
--- myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_2_1/Tests.java (original)
+++ myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_2_1/Tests.java Tue Oct 19 21:55:51 2010
@@ -57,6 +57,7 @@ import javax.portlet.WindowState;
 import javax.portlet.faces.Bridge;
 import javax.portlet.faces.BridgeUtil;
 
+import javax.portlet.faces.BridgeWriteBehindResponse;
 import javax.portlet.faces.annotation.ExcludeFromManagedRequestScope;
 import javax.portlet.faces.annotation.PortletNamingContainer;
 
@@ -135,5 +136,103 @@ public class Tests
       return Constants.TEST_SUCCESS;
   }
   
+  // Test is SingleRequest -- Render
+  // Test #6.132
+  @BridgeTest(test = "implementsBridgeWriteBehindResponseTest")
+  public String implementsBridgeWriteBehindResponseTest(TestRunnerBean testRunner)
+  { 
+    testRunner.setTestComplete(true);
+    
+    // test is run/checked in the jsp which adds request attrs which we read here
+    
+    Map m = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
+    Boolean b = (Boolean) m.get("org.apache.myfaces.portlet.faces.TCK.status");
+
+    if (b == null)
+    {
+      testRunner.setTestResult(false,  
+                             "Error in running the test.  The JSP for this test didn't set the expected request attributes indicating the test status");
+      return Constants.TEST_FAILED;
+    }
+    else if (b.equals(Boolean.TRUE))
+    {
+      testRunner.setTestResult(true,  
+                             (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_SUCCESS;
+
+    }
+    else
+    {
+      testRunner.setTestResult(false,  
+      (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_FAILED;
+    }
+  }  
+  
+  // Test is SingleRequest -- Render
+  // Test #6.133
+  @BridgeTest(test = "usesConfiguredRenderResponseWrapperTest")
+  public String usesConfiguredRenderResponseWrapperTest(TestRunnerBean testRunner)
+  { 
+    testRunner.setTestComplete(true);
+    
+    // test is run/checked in the jsp which adds request attrs which we read here
+    
+    Map m = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
+    Boolean b = (Boolean) m.get("org.apache.myfaces.portlet.faces.TCK.status");
+
+    if (b == null)
+    {
+      testRunner.setTestResult(false,  
+                             "Error in running the test.  The JSP for this test didn't set the expected request attributes indicating the test status");
+      return Constants.TEST_FAILED;
+    }
+    else if (b.equals(Boolean.TRUE))
+    {
+      testRunner.setTestResult(true,  
+                             (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_SUCCESS;
+
+    }
+    else
+    {
+      testRunner.setTestResult(false,  
+      (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_FAILED;
+    }
+  } 
+  
+  // Test is SingleRequest -- Render
+  // Test #6.134
+  @BridgeTest(test = "usesConfiguredResourceResponseWrapperTest")
+  public String usesConfiguredResourceResponseWrapperTest(TestRunnerBean testRunner)
+  { 
+    testRunner.setTestComplete(true);
+    
+    // test is run/checked in the jsp which adds request attrs which we read here
+    
+    Map m = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
+    Boolean b = (Boolean) m.get("org.apache.myfaces.portlet.faces.TCK.status");
+
+    if (b == null)
+    {
+      testRunner.setTestResult(false,  
+                             "Error in running the test.  The JSP for this test didn't set the expected request attributes indicating the test status");
+      return Constants.TEST_FAILED;
+    }
+    else if (b.equals(Boolean.TRUE))
+    {
+      testRunner.setTestResult(true,  
+                             (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_SUCCESS;
+
+    }
+    else
+    {
+      testRunner.setTestResult(false,  
+      (String) m.get("org.apache.myfaces.portlet.faces.TCK.detail"));
+      return Constants.TEST_FAILED;
+    }
+  }   
 
 }

Added: myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_9/Tests.java
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_9/Tests.java?rev=1024428&view=auto
==============================================================================
--- myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_9/Tests.java (added)
+++ myfaces/portlet-bridge/tck/trunk_2.0.x/src/main/java/org/apache/myfaces/portlet/faces/testsuite/tests/chapter_6/section_6_9/Tests.java Tue Oct 19 21:55:51 2010
@@ -0,0 +1,200 @@
+/* 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 org.apache.myfaces.portlet.faces.testsuite.tests.chapter_6.section_6_9;
+
+
+import java.util.Iterator;
+import java.util.Map;
+
+import javax.faces.component.UIViewRoot;
+
+import javax.faces.context.ExternalContext;
+import javax.faces.context.FacesContext;
+
+
+import javax.faces.render.ResponseStateManager;
+
+import javax.portlet.RenderResponse;
+import javax.portlet.faces.Bridge;
+import javax.portlet.faces.BridgeUtil;
+import javax.portlet.faces.annotation.PortletNamingContainer;
+
+
+import javax.portlet.faces.component.PortletNamingContainerUIViewRoot;
+
+import org.apache.myfaces.portlet.faces.testsuite.annotation.BridgeTest;
+import org.apache.myfaces.portlet.faces.testsuite.beans.TestRunnerBean;
+import org.apache.myfaces.portlet.faces.testsuite.common.Constants;
+
+
+
+public class Tests
+  extends Object
+{
+  public static final String ACTION_TEST_RESULT = "org.apache.myfaces.portlet.faces.tck.actionTestResult";
+
+  // Test is MultiRequest -- 
+  // Test #6.135
+  @BridgeTest(test = "usesConfiguredRenderKitTest")
+  public String usesConfiguredRenderKitTest(TestRunnerBean testRunner)
+  { 
+    FacesContext ctx = FacesContext.getCurrentInstance();
+    ExternalContext extCtx = ctx.getExternalContext();
+    Map<String, Object> m = extCtx.getRequestMap();
+    
+    // This tests that we can encode a new mode in an actionURL
+    // done by navigation rule.
+    if (BridgeUtil.getPortletRequestPhase() ==
+        Bridge.PortletPhase.ACTION_PHASE)
+    {
+      // Verify that the configured attribute is passed as a parameter
+      Map<String, String> rParams = extCtx.getRequestParameterMap();
+      Map<String, String[]> rParamValues = extCtx.getRequestParameterValuesMap();
+      Iterator<String> rParamNames = extCtx.getRequestParameterNames();
+      
+      String detail = "";
+      boolean found = false;
+      
+      for (Iterator<String> s = rParamNames; s.hasNext();)
+      {
+        if (s.next().equals(ResponseStateManager.RENDER_KIT_ID_PARAM))
+        {
+          found = true;
+          break;
+        }
+      }
+      
+      if (!found)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterNames iterator during the action request.<br> ";
+      }
+      
+      String[] vals = rParamValues.get(ResponseStateManager.RENDER_KIT_ID_PARAM);
+      if (vals == null)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterValuesMap map during the action request.<br> ";
+      }
+      else if (!vals[0].equalsIgnoreCase("org.apache.myfaces.trinidad.core"))
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name from the ExternalContext.getRequestParameterValuesMap map during the action request contains an unexpected value.  Expected: org.apache.myfaces.trinidad.core but received:" +
+                  vals[0] + ".<br> ";
+      }
+      
+      String val = rParams.get(ResponseStateManager.RENDER_KIT_ID_PARAM);
+      if (val == null)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterMap map during the action request.<br> ";
+      }
+      else if (!val.equalsIgnoreCase("org.apache.myfaces.trinidad.core"))
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name from the ExternalContext.getRequestParameterMap map during the action request contains an unexpected value.  Expected: org.apache.myfaces.trinidad.core but received:" +
+                  val + ".<br> ";
+      }  
+      
+      if (detail.length() == 0)
+      {
+        detail = Constants.TEST_SUCCESS;
+      }
+      
+      m.put(ACTION_TEST_RESULT, detail);
+      
+      return "usesConfiguredRenderKitTest"; // action Navigation result
+    }
+    else
+    {
+      testRunner.setTestComplete(true);
+      
+      String actionResult = (String) m.get(ACTION_TEST_RESULT);
+      
+      if (actionResult == null)
+      {
+        testRunner.setTestResult(false,
+                               "Action result not available during the render");
+        return Constants.TEST_FAILED;
+      }
+      else if (!actionResult.equals(Constants.TEST_SUCCESS))
+      {
+        testRunner.setTestResult(false, actionResult);
+        return Constants.TEST_FAILED;
+      }
+      
+      // Otherwise verify all things are set in the render
+      // Verify that the configured attribute is passed as a parameter
+      Map<String, String> rParams = extCtx.getRequestParameterMap();
+      Map<String, String[]> rParamValues = extCtx.getRequestParameterValuesMap();
+      Iterator<String> rParamNames = extCtx.getRequestParameterNames();
+      
+      String detail = "";
+      boolean found = false;
+      
+      for (Iterator<String> s = rParamNames; s.hasNext();)
+      {
+        if (s.next().equals(ResponseStateManager.RENDER_KIT_ID_PARAM))
+        {
+          found = true;
+          break;
+        }
+      }
+      
+      if (!found)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterNames iterator during the render request.<br> ";
+      }
+      
+      String[] vals = rParamValues.get(ResponseStateManager.RENDER_KIT_ID_PARAM);
+      if (vals == null)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterValuesMap map during the render request.<br> ";
+      }
+      else if (!vals[0].equalsIgnoreCase("org.apache.myfaces.trinidad.core"))
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name from the ExternalContext.getRequestParameterValuesMap map during the render request contains an unexpected value.  Expected: org.apache.myfaces.trinidad.core but received:" +
+                  vals[0] + ".<br> ";
+      }
+      
+      String val = rParams.get(ResponseStateManager.RENDER_KIT_ID_PARAM);
+      if (val == null)
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name isn't in the ExternalContext.getRequestParameterMap map during the render request.<br> ";
+      }
+      else if (!val.equalsIgnoreCase("org.apache.myfaces.trinidad.core"))
+      {
+        detail += "There is a portlet specific configured renderkit but its corresponding parameter name from the ExternalContext.getRequestParameterMap map during the render request contains an unexpected value.  Expected: org.apache.myfaces.trinidad.core but received:" +
+                  val + ".<br> ";
+      }  
+      
+      
+      if (detail.length() == 0)
+      {
+        testRunner.setTestResult(true,
+                               "The portlet configured renderkit was correctly expressed as a request parameter (via the ExternalContext apis) in both the action and render phases.");
+        return Constants.TEST_SUCCESS;
+      }
+      else
+      {
+        testRunner.setTestResult(false, detail);
+        return Constants.TEST_FAILED;
+      }
+    }
+  }
+  
+
+
+}