1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.krad.compview;
18
19 import edu.samplu.common.UpgradedSeleniumITBase;
20 import junit.framework.Assert;
21 import org.junit.Test;
22
23
24
25
26 public class ValidCharsConstraintIT extends UpgradedSeleniumITBase {
27 @Override
28 public String getTestUrl() {
29 return "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page4";
30 }
31
32 @Test
33 public void testValidCharsConstraintIT() throws Exception {
34 selenium.focus("name=field50");
35 selenium.type("name=field50", "12.333");
36 selenium.fireEvent("name=field50", "blur");
37 Assert.assertTrue(selenium.getAttribute("name=field50@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
38 selenium.focus("name=field50");
39 selenium.type("name=field50", "123.33");
40 selenium.fireEvent("name=field50", "blur");
41 Assert.assertTrue(selenium.getAttribute("name=field50@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
42 selenium.focus("name=field51");
43 selenium.type("name=field51", "A");
44 selenium.fireEvent("name=field51", "blur");
45 Assert.assertTrue(selenium.getAttribute("name=field51@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
46 selenium.focus("name=field51");
47 selenium.type("name=field51", "-123.33");
48 selenium.fireEvent("name=field51", "blur");
49 Assert.assertTrue(selenium.getAttribute("name=field51@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
50 selenium.focus("name=field77");
51 selenium.type("name=field77", "1.1");
52 selenium.fireEvent("name=field77", "blur");
53 Assert.assertTrue(selenium.getAttribute("name=field77@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
54 selenium.focus("name=field77");
55 selenium.type("name=field77", "12");
56 selenium.fireEvent("name=field77", "blur");
57 Assert.assertTrue(selenium.getAttribute("name=field77@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
58 selenium.focus("name=field52");
59 selenium.type("name=field52", "5551112222");
60 selenium.fireEvent("name=field52", "blur");
61 Assert.assertTrue(selenium.getAttribute("name=field52@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
62 selenium.focus("name=field52");
63 selenium.type("name=field52", "555-111-1111");
64 selenium.fireEvent("name=field52", "blur");
65 Assert.assertTrue(selenium.getAttribute("name=field52@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
66 selenium.focus("name=field53");
67 selenium.type("name=field53", "1ClassName.java");
68 selenium.fireEvent("name=field53", "blur");
69 Assert.assertTrue(selenium.getAttribute("name=field53@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
70 selenium.focus("name=field53");
71 selenium.type("name=field53", "ClassName.java");
72 selenium.fireEvent("name=field53", "blur");
73 Assert.assertTrue(selenium.getAttribute("name=field53@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
74 selenium.focus("name=field54");
75 selenium.type("name=field54", "aaaaa");
76 selenium.fireEvent("name=field54", "blur");
77 Assert.assertTrue(selenium.getAttribute("name=field54@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
78 selenium.focus("name=field54");
79 selenium.type("name=field54", "aaaaa@kuali.org");
80 selenium.fireEvent("name=field54", "blur");
81 Assert.assertTrue(selenium.getAttribute("name=field54@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
82 selenium.focus("name=field84");
83 selenium.type("name=field84", "aaaaa");
84 selenium.fireEvent("name=field84", "blur");
85 Assert.assertTrue(selenium.getAttribute("name=field84@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
86 selenium.focus("name=field84");
87 selenium.type("name=field84", "http://www.kuali.org");
88 selenium.fireEvent("name=field84", "blur");
89 Assert.assertTrue(selenium.getAttribute("name=field84@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
90 selenium.focus("name=field55");
91 selenium.type("name=field55", "023512");
92 selenium.fireEvent("name=field55", "blur");
93 Assert.assertTrue(selenium.getAttribute("name=field55@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
94 selenium.focus("name=field55");
95 selenium.type("name=field55", "022812");
96 selenium.fireEvent("name=field55", "blur");
97 Assert.assertTrue(selenium.getAttribute("name=field55@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
98 selenium.focus("name=field75");
99 selenium.type("name=field75", "02/35/12");
100 selenium.fireEvent("name=field75", "blur");
101 Assert.assertTrue(selenium.getAttribute("name=field75@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
102 selenium.focus("name=field75");
103 selenium.type("name=field75", "02/28/12");
104 selenium.fireEvent("name=field75", "blur");
105 Assert.assertTrue(selenium.getAttribute("name=field75@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
106 selenium.focus("name=field82");
107 selenium.type("name=field82", "13:22");
108 selenium.fireEvent("name=field82", "blur");
109 Assert.assertTrue(selenium.getAttribute("name=field82@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
110 selenium.focus("name=field82");
111 selenium.type("name=field82", "02:33");
112 selenium.fireEvent("name=field82", "blur");
113 Assert.assertTrue(selenium.getAttribute("name=field82@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
114 selenium.focus("name=field83");
115 selenium.type("name=field83", "25:22");
116 selenium.fireEvent("name=field83", "blur");
117 Assert.assertTrue(selenium.getAttribute("name=field83@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
118 selenium.focus("name=field83");
119 selenium.type("name=field83", "14:33");
120 selenium.fireEvent("name=field83", "blur");
121 Assert.assertTrue(selenium.getAttribute("name=field83@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
122 selenium.focus("name=field57");
123 selenium.type("name=field57", "0");
124 selenium.fireEvent("name=field57", "blur");
125 Assert.assertTrue(selenium.getAttribute("name=field57@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
126 selenium.focus("name=field57");
127 selenium.type("name=field57", "2020");
128 selenium.fireEvent("name=field57", "blur");
129 Assert.assertTrue(selenium.getAttribute("name=field57@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
130 selenium.focus("name=field58");
131 selenium.type("name=field58", "13");
132 selenium.fireEvent("name=field58", "blur");
133 Assert.assertTrue(selenium.getAttribute("name=field58@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
134 selenium.focus("name=field58");
135 selenium.type("name=field58", "12");
136 selenium.fireEvent("name=field58", "blur");
137 Assert.assertTrue(selenium.getAttribute("name=field58@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
138 selenium.focus("name=field61");
139 selenium.type("name=field61", "5555-444");
140 selenium.fireEvent("name=field61", "blur");
141 Assert.assertTrue(selenium.getAttribute("name=field61@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
142 selenium.focus("name=field61");
143 selenium.type("name=field61", "55555-4444");
144 selenium.fireEvent("name=field61", "blur");
145 Assert.assertTrue(selenium.getAttribute("name=field61@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
146 selenium.focus("name=field62");
147 selenium.type("name=field62", "aa5bb6_a");
148 selenium.fireEvent("name=field62", "blur");
149 Assert.assertTrue(selenium.getAttribute("name=field62@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
150 selenium.focus("name=field62");
151 selenium.type("name=field62", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890");
152 selenium.fireEvent("name=field62", "blur");
153 Assert.assertTrue(selenium.getAttribute("name=field62@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
154 selenium.focus("name=field63");
155 selenium.type("name=field63", "fff555$");
156 selenium.fireEvent("name=field63", "blur");
157 Assert.assertTrue(selenium.getAttribute("name=field63@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
158 selenium.focus("name=field63");
159 selenium.type("name=field63", "aa22 _/");
160 selenium.fireEvent("name=field63", "blur");
161 Assert.assertTrue(selenium.getAttribute("name=field63@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
162 selenium.focus("name=field64");
163 selenium.type("name=field64", "AABB55");
164 selenium.fireEvent("name=field64", "blur");
165 Assert.assertTrue(selenium.getAttribute("name=field64@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
166 selenium.focus("name=field64");
167 selenium.type("name=field64", "ABCDEFGHIJKLMNOPQRSTUVWXY,Z abcdefghijklmnopqrstuvwxy,z");
168 selenium.fireEvent("name=field64", "blur");
169 Assert.assertTrue(selenium.getAttribute("name=field64@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
170 selenium.focus("name=field76");
171 selenium.type("name=field76", "AA~BB%");
172 selenium.fireEvent("name=field76", "blur");
173 Assert.assertTrue(selenium.getAttribute("name=field76@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
174 selenium.focus("name=field76");
175 selenium.type("name=field76", "abcABC %$#@&<>\\{}[]*-+!=.()/\"\"',:;?");
176 selenium.fireEvent("name=field76", "blur");
177 Assert.assertTrue(selenium.getAttribute("name=field76@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
178 selenium.focus("name=field65");
179 selenium.type("name=field65", "sdfs$#$# dsffs");
180 selenium.fireEvent("name=field65", "blur");
181 Assert.assertTrue(selenium.getAttribute("name=field65@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
182 selenium.focus("name=field65");
183 selenium.type("name=field65", "sdfs$#$#sffs");
184 selenium.fireEvent("name=field65", "blur");
185 Assert.assertTrue(selenium.getAttribute("name=field65@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
186 selenium.focus("name=field66");
187 selenium.type("name=field66", "abcABCD");
188 selenium.fireEvent("name=field66", "blur");
189 Assert.assertTrue(selenium.getAttribute("name=field66@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
190 selenium.focus("name=field66");
191 selenium.type("name=field66", "ABCabc");
192 selenium.fireEvent("name=field66", "blur");
193 Assert.assertTrue(selenium.getAttribute("name=field66@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
194 selenium.focus("name=field67");
195 selenium.type("name=field67", "(111)B-(222)A");
196 selenium.fireEvent("name=field67", "blur");
197 Assert.assertTrue(selenium.getAttribute("name=field67@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
198 selenium.focus("name=field67");
199 selenium.type("name=field67", "(12345)-(67890)");
200 selenium.fireEvent("name=field67", "blur");
201 Assert.assertTrue(selenium.getAttribute("name=field67@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
202 selenium.focus("name=field68");
203 selenium.type("name=field68", "A.66");
204 selenium.fireEvent("name=field68", "blur");
205 Assert.assertTrue(selenium.getAttribute("name=field68@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
206 selenium.focus("name=field68");
207 selenium.type("name=field68", "a.4");
208 selenium.fireEvent("name=field68", "blur");
209 Assert.assertTrue(selenium.getAttribute("name=field68@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
210 selenium.focus("name=field56");
211 selenium.type("name=field56", "2020-06-02");
212 selenium.fireEvent("name=field56", "blur");
213 Assert.assertTrue(selenium.getAttribute("name=field56@class").matches("^[\\s\\S]*error[\\s\\S]*$"));
214 selenium.focus("name=field56");
215 selenium.type("name=field56", "2020-06-02 03:30:30.22");
216 selenium.fireEvent("name=field56", "blur");
217 Assert.assertTrue(selenium.getAttribute("name=field56@class").matches("^[\\s\\S]*valid[\\s\\S]*$"));
218 }
219 }