[richfaces-svn-commits] JBoss Rich Faces SVN: r11484 - in trunk/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Dec 2 07:05:48 EST 2008


Author: konstantin.mishin
Date: 2008-12-02 07:05:48 -0500 (Tue, 02 Dec 2008)
New Revision: 11484

Modified:
   trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/message/message.xhtml
   trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/MessageTest.java
Log:
RF-5125

Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/message/message.xhtml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/message/message.xhtml	2008-12-02 11:18:44 UTC (rev 11483)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/message/message.xhtml	2008-12-02 12:05:48 UTC (rev 11484)
@@ -37,6 +37,8 @@
 					showSummary="#{messageBean.showSummary}"
 					showDetail="#{messageBean.showDetail}"
 					rendered="#{messageBean.rendered}"
+					styleClass="noname"
+					style="color: blue; text-decoration: underline;"
 					>
 					<f:facet name="fatalMarker">
 						<h:outputText id="fatalMarker" value="fatalMarker"></h:outputText>

Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/MessageTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/MessageTest.java	2008-12-02 11:18:44 UTC (rev 11483)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/MessageTest.java	2008-12-02 12:05:48 UTC (rev 11484)
@@ -1,5 +1,8 @@
 package org.richfaces.testng;
 
+import java.util.HashMap;
+import java.util.Map;
+
 import org.ajax4jsf.template.Template;
 import org.richfaces.SeleniumTestBase;
 import org.testng.Assert;
@@ -37,6 +40,19 @@
     }
 
     /**
+     *  style and classes, standard HTML attributes are output to client
+     */
+	@Test
+	public void testHTMLAttributes(Template template) {
+        init(template);
+		Map<String, String> styleAttributes = new HashMap<String, String>();
+		styleAttributes.put("color", "blue");
+		styleAttributes.put("text-decoration", "underline");			
+        assertClassNames(message,new String [] {"noname"}, "Component's rendering invalid", true);
+        assertStyleAttributes(message, styleAttributes);
+	}
+
+	/**
      * showDetail and showSummary attributes work
      */
     @Test




More information about the richfaces-svn-commits mailing list