1 18 package org.apache.struts.taglib.html; 19 20 import java.util.ArrayList ; 21 import java.util.HashMap ; 22 import java.util.Locale ; 23 import java.util.StringTokenizer ; 24 25 import javax.servlet.jsp.PageContext ; 26 import junit.framework.Test; 27 import junit.framework.TestSuite; 28 29 import org.apache.cactus.JspTestCase; 30 import org.apache.struts.Globals; 31 import org.apache.struts.taglib.SimpleBeanForTesting; 32 33 38 public class TestTextTag2 extends JspTestCase { 39 40 45 public TestTextTag2(String theName) { 46 super(theName); 47 } 48 49 54 public static void main(String [] theArgs) { 55 junit.awtui.TestRunner.main(new String [] {TestTextTag2.class.getName()}); 56 } 57 58 62 public static Test suite() { 63 return new TestSuite(TestTextTag2.class); 65 } 66 67 private void runMyTest(String whichTest, String locale) throws Exception { 68 pageContext.setAttribute(Globals.LOCALE_KEY, new Locale (locale, locale), PageContext.SESSION_SCOPE); 69 pageContext.setAttribute(Constants.BEAN_KEY, new SimpleBeanForTesting("Test Value"), PageContext.REQUEST_SCOPE); 70 request.setAttribute("runTest", whichTest); 71 pageContext.forward("/test/org/apache/struts/taglib/html/TestTextTag2.jsp"); 72 } 73 74 77 78 public void testTextPropertyReadonly() throws Exception { 79 runMyTest("testTextPropertyReadonly", ""); 80 } 81 public void testTextPropertySize() throws Exception { 82 runMyTest("testTextPropertySize", ""); 83 } 84 public void testTextPropertyStyle() throws Exception { 85 runMyTest("testTextPropertyStyle", ""); 86 } 87 public void testTextPropertyErrorStyle() throws Exception { 88 runMyTest("testTextPropertyErrorStyle", ""); 89 } 90 public void testTextPropertyStyleClass() throws Exception { 91 runMyTest("testTextPropertyStyleClass", ""); 92 } 93 public void testTextPropertyErrorStyleClass() throws Exception { 94 runMyTest("testTextPropertyErrorStyleClass", ""); 95 } 96 public void testTextPropertyStyleId() throws Exception { 97 runMyTest("testTextPropertyStyleId", ""); 98 } 99 public void testTextPropertyErrorStyleId() throws Exception { 100 runMyTest("testTextPropertyErrorStyleId", ""); 101 } 102 public void testTextPropertyTitle() throws Exception { 103 runMyTest("testTextPropertyTitle", ""); 104 } 105 public void testTextPropertyTitleKey() throws Exception { 106 runMyTest("testTextPropertyTitleKey", ""); 107 } 108 public void testTextPropertyTitleKey_fr() throws Exception { 109 runMyTest("testTextPropertyTitleKey_fr", "fr"); 110 } 111 public void testTextPropertyValue() throws Exception { 112 runMyTest("testTextPropertyValue", ""); 113 } 114 public void testTextPropertyIndexedArray() throws Exception { 115 ArrayList lst = new ArrayList (); 116 lst.add("Test Message"); 117 pageContext.setAttribute("lst", lst, PageContext.REQUEST_SCOPE); 118 runMyTest("testTextPropertyIndexedArray", ""); 119 } 120 public void testTextPropertyIndexedArrayProperty() throws Exception { 121 SimpleBeanForTesting sbft = new SimpleBeanForTesting(); 122 ArrayList lst = new ArrayList (); 123 lst.add("Test Message"); 124 sbft.setList(lst); 125 pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE); 126 runMyTest("testTextPropertyIndexedArrayProperty", ""); 127 } 128 public void testTextPropertyIndexedMap() throws Exception { 129 HashMap map = new HashMap (); 130 map.put("tst1", "Test Message"); 131 pageContext.setAttribute("lst", map, PageContext.REQUEST_SCOPE); 132 runMyTest("testTextPropertyIndexedMap", ""); 133 } 134 public void testTextPropertyIndexedMapProperty() throws Exception { 135 SimpleBeanForTesting sbft = new SimpleBeanForTesting(); 136 HashMap map = new HashMap (); 137 map.put("tst1", "Test Message"); 138 sbft.setMap(map); 139 pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE); 140 runMyTest("testTextPropertyIndexedMapProperty", ""); 141 } 142 public void testTextPropertyIndexedEnumeration() throws Exception { 143 StringTokenizer st = new StringTokenizer ("Test Message"); 144 pageContext.setAttribute("lst", st, PageContext.REQUEST_SCOPE); 145 runMyTest("testTextPropertyIndexedEnumeration", ""); 146 } 147 public void testTextPropertyIndexedEnumerationProperty() throws Exception { 148 SimpleBeanForTesting sbft = new SimpleBeanForTesting(); 149 StringTokenizer st = new StringTokenizer ("Test Message"); 150 sbft.setEnumeration(st); 151 pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE); 152 runMyTest("testTextPropertyIndexedEnumerationProperty", ""); 153 } 154 155 } 156 | Popular Tags |