[richfaces-svn-commits] JBoss Rich Faces SVN: r342 - trunk/richfaces/panelbar/src/test/java/org/richfaces/component.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Apr 10 10:06:42 EDT 2007


Author: F.antonov
Date: 2007-04-10 10:06:41 -0400 (Tue, 10 Apr 2007)
New Revision: 342

Added:
   trunk/richfaces/panelbar/src/test/java/org/richfaces/component/PanelBarComponentTest.java
Removed:
   trunk/richfaces/panelbar/src/test/java/org/richfaces/component/JSFComponentTest.java
Log:
PanelBar components test cases development.

Deleted: trunk/richfaces/panelbar/src/test/java/org/richfaces/component/JSFComponentTest.java
===================================================================
--- trunk/richfaces/panelbar/src/test/java/org/richfaces/component/JSFComponentTest.java	2007-04-10 13:52:19 UTC (rev 341)
+++ trunk/richfaces/panelbar/src/test/java/org/richfaces/component/JSFComponentTest.java	2007-04-10 14:06:41 UTC (rev 342)
@@ -1,53 +0,0 @@
-/**
- * License Agreement.
- *
- *  JBoss RichFaces 3.0 - Ajax4jsf Component Library
- *
- * Copyright (C) 2007  Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
- */
-
-package org.richfaces.component;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-import javax.faces.component.UIComponent;
-
-/**
- * Unit test for simple Component.
- */
-public class JSFComponentTest 
-    extends TestCase
-{
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public JSFComponentTest( String testName )
-    {
-        super( testName );
-    }
-
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testComponent()
-    {
-        assertTrue( true );
-    }
-}

Copied: trunk/richfaces/panelbar/src/test/java/org/richfaces/component/PanelBarComponentTest.java (from rev 332, trunk/richfaces/panelbar/src/test/java/org/richfaces/component/JSFComponentTest.java)
===================================================================
--- trunk/richfaces/panelbar/src/test/java/org/richfaces/component/PanelBarComponentTest.java	                        (rev 0)
+++ trunk/richfaces/panelbar/src/test/java/org/richfaces/component/PanelBarComponentTest.java	2007-04-10 14:06:41 UTC (rev 342)
@@ -0,0 +1,258 @@
+/**
+ * License Agreement.
+ *
+ *  JBoss RichFaces 3.0 - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007  Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+package org.richfaces.component;
+
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Set;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+import javax.faces.component.UIComponent;
+import javax.faces.component.UIForm;
+import javax.faces.component.html.HtmlForm;
+import javax.faces.event.FacesEvent;
+import javax.faces.event.PhaseId;
+
+import org.ajax4jsf.framework.ajax.AjaxScript;
+import org.ajax4jsf.framework.ajax.ImageCacheScript;
+import org.ajax4jsf.framework.resource.PrototypeScript;
+import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
+import org.ajax4jsf.tests.MockViewRoot;
+import org.apache.commons.collections.Buffer;
+import org.apache.commons.lang.StringUtils;
+import org.richfaces.component.html.HtmlPanelBar;
+import org.richfaces.component.html.HtmlPanelBarItem;
+import org.richfaces.event.SwitchablePanelSwitchEvent;
+
+import com.gargoylesoftware.htmlunit.html.HtmlElement;
+import com.gargoylesoftware.htmlunit.html.HtmlPage;
+import com.gargoylesoftware.htmlunit.html.HtmlScript;
+
+/**
+ * Unit test for PanelBar components.
+ */
+public class PanelBarComponentTest 
+    extends AbstractAjax4JsfTestCase
+{
+	
+	private static Set javaScripts = new HashSet();
+	
+	static {		 
+		javaScripts.add("browser_info.js");
+		javaScripts.add("panelbar.js");
+        javaScripts.add("AjaxScript");
+        javaScripts.add("prototype.js");        
+        javaScripts.add("ImageCacheScript");
+	}
+	
+	private UIPanelBar panelBar;
+	private UIPanelBarItem panelBarItem1;
+	private UIPanelBarItem panelBarItem2;
+	private UIForm form;
+	
+    /**
+     * Create the test case
+     *
+     * @param testName name of the test case
+     */
+    public PanelBarComponentTest( String testName )
+    {
+        super( testName );
+    }
+    
+    /** 
+     * Create the test case
+     *
+     * @param testName name of the test case
+     */
+    public void setUp() throws Exception {
+    	super.setUp();
+    	
+    	form = new HtmlForm();
+    	form.setId("form");
+        facesContext.getViewRoot().getChildren().add(form);
+
+        panelBar = (UIPanelBar) application.createComponent(HtmlPanelBar.COMPONENT_TYPE);
+        panelBar.setId("panelBar");
+        //panelBar.setValue("Menu Item");
+        
+        panelBarItem1 = (UIPanelBarItem) application.createComponent(HtmlPanelBarItem.COMPONENT_TYPE);
+        panelBarItem1.setId("panelBarItem1");
+        panelBarItem1.setLabel("Panel Bar Item 1");
+        panelBarItem2 = (UIPanelBarItem) application.createComponent(HtmlPanelBarItem.COMPONENT_TYPE);
+        panelBarItem2.setId("panelBarItem2");
+        panelBarItem2.setLabel("Panel Bar Item 2");
+        
+        panelBar.getChildren().add(panelBarItem1);
+        panelBar.getChildren().add(panelBarItem2);
+		form.getChildren().add(panelBar);
+    }
+    
+    public void tearDown() throws Exception {
+    	super.tearDown();
+    	
+    	panelBarItem1 = null;
+    	panelBarItem2 = null;
+    	panelBar = null;
+    	form = null;
+    }
+
+    /**
+     * PanelBar components renderer test.
+     */
+    public void testPanelBarRender() throws Exception
+    {
+    	HtmlPage page = renderView();
+        assertNotNull(page);
+        //System.out.println(page.asXml());
+        HtmlElement div = page.getHtmlElementById(panelBar.getClientId(facesContext));
+        assertNotNull(div);
+        assertEquals("div", div.getNodeName());
+        
+        div = page.getHtmlElementById(panelBarItem1.getClientId(facesContext));
+        assertNotNull(div);
+        assertEquals("div", div.getNodeName());
+        
+        div = page.getHtmlElementById(panelBarItem2.getClientId(facesContext));
+        assertNotNull(div);
+        assertEquals("div", div.getNodeName());
+        
+        HtmlElement input = page.getHtmlElementById(panelBar.getClientId(facesContext) + "_panelBarInput");
+        assertNotNull(input);
+        assertEquals("input", input.getNodeName());        
+        assertEquals(input.getAttributeValue("type"), "hidden");
+    }
+    
+    /**
+     * PanelBar attributes test.
+     */
+    public void testPanelBarAttributes() throws Exception
+    {
+    	panelBar.setValue("panelBarItem1");
+    	panelBar.getAttributes().put("styleClass", "panelBarStyleClass");
+    	panelBar.getAttributes().put("headerClassActive", "panelBarHeaderClassActive");
+    	panelBar.getAttributes().put("style", "panelBarHeaderStyle");
+    	panelBar.setWidth("500");    	
+    	
+    	panelBarItem1.getAttributes().put("headerClassActive", "panelBarItem1HeaderClassActive");
+    	panelBarItem1.getAttributes().put("headerClass", "panelBarItem1HeaderClass");
+    	
+    	HtmlPage page = renderView();
+        assertNotNull(page);
+        //System.out.println(page.asXml());
+        
+        HtmlElement div = page.getHtmlElementById(panelBar.getClientId(facesContext));
+        assertNotNull(div);
+        assertEquals("div", div.getNodeName());
+        String classAttr = div.getAttributeValue("class");
+        assertTrue(classAttr.contains("dr-pnlbar rich-panelbar dr-pnlbar-b"));
+        assertTrue(classAttr.contains("panelBarStyleClass"));
+        classAttr = div.getAttributeValue("style");
+        assertTrue(classAttr.contains("width: 500px;"));
+        
+        HtmlElement input = page.getHtmlElementById(panelBar.getClientId(facesContext) + "_panelBarInput");
+        assertNotNull(input);
+        assertEquals("input", input.getNodeName()); 
+        classAttr = input.getAttributeValue("value");
+        assertTrue(classAttr.contains(panelBarItem1.getClientId(facesContext)));
+        
+        div = page.getHtmlElementById(panelBarItem1.getClientId(facesContext));
+        assertNotNull(div);
+        assertEquals("div", div.getNodeName());
+        classAttr = div.getAttributeValue("class");
+        assertTrue(classAttr.contains("dr-pnlbar rich-panelbar dr-pnlbar-ext"));
+        assertTrue(classAttr.contains("panelBarStyleClass"));
+        classAttr = div.getAttributeValue("style");
+        assertTrue(classAttr.contains("panelBarHeaderStyle"));
+        List children = div.getHtmlElementsByTagName("div");
+        assertEquals(3, children.size()); 
+        
+    }    
+        
+    /**
+     * CSS link test.
+     */    
+    public void testRenderStyle() throws Exception {
+        HtmlPage page = renderView();
+        assertNotNull(page);
+        List links = page.getDocumentElement().getHtmlElementsByTagName("link");
+        //Assert.assertEquals(1, links.size());
+        assertNotNull(links);
+        HtmlElement link = (HtmlElement) links.get(0);
+        assertTrue(link.getAttributeValue("href").contains("org/richfaces/renderkit/html/css/panelbar.xcss"));
+    }
+    
+    /**
+     * Scripts link test.
+     */
+    public void testRenderScript() throws Exception {
+        HtmlPage page = renderView();
+        System.out.println(page.asXml());
+        
+        assertNotNull(page);
+        List scripts = page.getDocumentElement().getHtmlElementsByTagName("script");
+        for (Iterator it = scripts.iterator(); it.hasNext();) {
+            HtmlScript item = (HtmlScript) it.next();
+            String srcAttr = item.getSrcAttribute();
+
+            if (StringUtils.isNotBlank(srcAttr)) {
+                boolean found = false;
+                for (Iterator srcIt = javaScripts.iterator(); srcIt.hasNext();) {
+                    String src = (String) srcIt.next();
+
+                    found = srcAttr.contains(src);
+                    if (found) {
+                        break;
+                    }
+                }
+
+                assertTrue(found);
+            }
+        }
+    }
+    
+    /**
+     * doDecode method trst.
+     */    
+    public void testPanelBarDoDecode() throws Exception {
+    	
+    	panelBar.setImmediate(true);
+    	panelBar.setSwitchType(UISwitchablePanel.AJAX_METHOD);
+    	    	
+		externalContext.getRequestParameterMap().put(panelBar.getClientId(facesContext), "Swich");		
+		panelBar.decode(facesContext);
+		
+		MockViewRoot mockViewRoot = (MockViewRoot) facesContext.getViewRoot();
+		Buffer events = mockViewRoot.getEventsQueue(facesContext, PhaseId.APPLY_REQUEST_VALUES);
+		assertNotNull(events);
+		assertEquals(1, events.size());
+		
+		FacesEvent event = (FacesEvent) events.iterator().next();
+		assertTrue(event instanceof SwitchablePanelSwitchEvent);
+		SwitchablePanelSwitchEvent switchEvent = (SwitchablePanelSwitchEvent) event;
+		assertEquals(switchEvent.getValue(), "Swich");
+
+    }
+}




More information about the richfaces-svn-commits mailing list