KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > struts > taglib > html > TestImageTag2


1 /*
2  * $Id: TestImageTag2.java 54929 2004-10-16 16:38:42Z germuska $
3  *
4  * Copyright 1999-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18 package org.apache.struts.taglib.html;
19
20 import java.util.ArrayList JavaDoc;
21 import java.util.HashMap JavaDoc;
22 import java.util.Locale JavaDoc;
23 import java.util.StringTokenizer JavaDoc;
24
25 import javax.servlet.jsp.PageContext JavaDoc;
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 /**
34  * Suite of unit tests for the
35  * <code>org.apache.struts.taglib.html.ImageTag</code> class.
36  *
37  */

38 public class TestImageTag2 extends JspTestCase {
39
40     /**
41      * Defines the testcase name for JUnit.
42      *
43      * @param theName the testcase's name.
44      */

45     public TestImageTag2(String JavaDoc theName) {
46         super(theName);
47     }
48
49     /**
50      * Start the tests.
51      *
52      * @param theArgs the arguments. Not used
53      */

54     public static void main(String JavaDoc[] theArgs) {
55         junit.awtui.TestRunner.main(new String JavaDoc[] {TestImageTag2.class.getName()});
56     }
57
58     /**
59      * @return a test suite (<code>TestSuite</code>) that includes all methods
60      * starting with "test"
61      */

62     public static Test suite() {
63         // All methods starting with "test" will be executed in the test suite.
64
return new TestSuite(TestImageTag2.class);
65     }
66
67     private void runMyTest(String JavaDoc whichTest, String JavaDoc locale) throws Exception JavaDoc {
68         pageContext.setAttribute(Globals.LOCALE_KEY, new Locale JavaDoc(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/TestImageTag2.jsp");
72     }
73
74     /*
75      * Testing ImageTag.
76      */

77
78 //--------Testing attributes using page------
79

80     public void testImagePageOnmousedown() throws Exception JavaDoc {
81         runMyTest("testImagePageOnmousedown", "");
82     }
83
84     public void testImagePageOnmousemove() throws Exception JavaDoc {
85         runMyTest("testImagePageOnmousemove", "");
86     }
87
88     public void testImagePageOnmouseout() throws Exception JavaDoc {
89         runMyTest("testImagePageOnmouseout", "");
90     }
91
92     public void testImagePageOnmouseover() throws Exception JavaDoc {
93         runMyTest("testImagePageOnmouseover", "");
94     }
95
96     public void testImagePageOnmouseup() throws Exception JavaDoc {
97         runMyTest("testImagePageOnmouseup", "");
98     }
99
100     public void testImagePageProperty() throws Exception JavaDoc {
101         runMyTest("testImagePageProperty", "");
102     }
103
104     public void testImagePageStyle() throws Exception JavaDoc {
105         runMyTest("testImagePageStyle", "");
106     }
107
108     public void testImagePageStyleClass() throws Exception JavaDoc {
109         runMyTest("testImagePageStyleClass", "");
110     }
111
112     public void testImagePageStyleId() throws Exception JavaDoc {
113         runMyTest("testImagePageStyleId", "");
114     }
115
116     public void testImagePageTabindex() throws Exception JavaDoc {
117         runMyTest("testImagePageTabindex", "");
118     }
119
120     public void testImagePageTitle() throws Exception JavaDoc {
121         runMyTest("testImagePageTitle", "");
122     }
123
124     public void testImagePageTitleKeyDefaultBundle() throws Exception JavaDoc {
125 // runMyTest("testImagePageTitleKeyDefaultBundle", "");
126
}
127
128     public void testImagePageTitleKeyAlternateBundle() throws Exception JavaDoc {
129 // runMyTest("testImagePageTitleKeyAlternateBundle", "");
130
}
131
132     public void testImagePageTitleKeyDefaultBundle_fr() throws Exception JavaDoc {
133         runMyTest("testImagePageTitleKeyDefaultBundle_fr", "fr");
134     }
135
136     public void testImagePageTitleKeyAlternateBundle_fr() throws Exception JavaDoc {
137         runMyTest("testImagePageTitleKeyAlternateBundle_fr", "fr");
138     }
139
140     public void testImagePageIndexedArray() throws Exception JavaDoc {
141         ArrayList JavaDoc lst = new ArrayList JavaDoc();
142         lst.add("Test Message");
143         pageContext.setAttribute("lst", lst, PageContext.REQUEST_SCOPE);
144         runMyTest("testImagePageIndexedArray", "");
145         }
146
147     public void testImagePageIndexedArrayProperty() throws Exception JavaDoc {
148         SimpleBeanForTesting sbft = new SimpleBeanForTesting();
149         ArrayList JavaDoc lst = new ArrayList JavaDoc();
150         lst.add("Test Message");
151         sbft.setList(lst);
152         pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE);
153         runMyTest("testImagePageIndexedArrayProperty", "");
154         }
155
156     public void testImagePageIndexedMap() throws Exception JavaDoc {
157         HashMap JavaDoc map = new HashMap JavaDoc();
158         map.put("tst1", "Test Message");
159         pageContext.setAttribute("lst", map, PageContext.REQUEST_SCOPE);
160         runMyTest("testImagePageIndexedMap", "");
161         }
162
163     public void testImagePageIndexedMapProperty() throws Exception JavaDoc {
164         SimpleBeanForTesting sbft = new SimpleBeanForTesting();
165         HashMap JavaDoc map = new HashMap JavaDoc();
166         map.put("tst1", "Test Message");
167         sbft.setMap(map);
168         pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE);
169         runMyTest("testImagePageIndexedMapProperty", "");
170         }
171
172     public void testImagePageIndexedEnumeration() throws Exception JavaDoc {
173         StringTokenizer JavaDoc st = new StringTokenizer JavaDoc("Test Message");
174         pageContext.setAttribute("lst", st, PageContext.REQUEST_SCOPE);
175         runMyTest("testImagePageIndexedEnumeration", "");
176         }
177
178     public void testImagePageIndexedEnumerationProperty() throws Exception JavaDoc {
179         SimpleBeanForTesting sbft = new SimpleBeanForTesting();
180         StringTokenizer JavaDoc st = new StringTokenizer JavaDoc("Test Message");
181         sbft.setEnumeration(st);
182         pageContext.setAttribute("lst", sbft, PageContext.REQUEST_SCOPE);
183         runMyTest("testImagePageIndexedEnumerationProperty", "");
184         }
185
186
187
188
189 }
190
Popular Tags