1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.admin.test;
18
19
20
21 import java.net.URL;
22 import java.net.URLEncoder;
23 import java.util.Arrays;
24 import java.util.HashMap;
25 import java.util.Iterator;
26 import java.util.List;
27 import java.util.Map;
28
29 import com.thoughtworks.selenium.DefaultSelenium;
30 import com.thoughtworks.selenium.Selenium;
31 import org.apache.commons.lang.StringUtils;
32 import org.junit.After;
33 import org.junit.Before;
34 import org.junit.Ignore;
35 import org.junit.Test;
36 import org.kuali.rice.kew.docsearch.DocumentSearchCriteriaProcessorKEWAdapter;
37 import org.kuali.rice.kew.impl.document.search.DocumentSearchCriteriaBoLookupableHelperService;
38 import org.kuali.rice.kew.util.Utilities;
39
40 import com.gargoylesoftware.htmlunit.ElementNotFoundException;
41 import com.gargoylesoftware.htmlunit.html.HtmlAnchor;
42 import com.gargoylesoftware.htmlunit.html.HtmlInput;
43 import com.gargoylesoftware.htmlunit.html.HtmlPage;
44 import org.kuali.rice.krad.util.KRADConstants;
45 import org.openqa.selenium.By;
46 import org.openqa.selenium.NoSuchElementException;
47 import org.openqa.selenium.WebDriver;
48 import org.openqa.selenium.WebDriverBackedSelenium;
49 import org.openqa.selenium.WebElement;
50 import org.openqa.selenium.firefox.FirefoxDriver;
51 import org.openqa.selenium.remote.DesiredCapabilities;
52 import org.openqa.selenium.remote.RemoteWebDriver;
53
54 import static org.junit.Assert.*;
55 import static org.junit.Assert.assertEquals;
56
57
58
59
60 @Ignore
61 public class DocumentSearchURLParametersIT {
62 private static final String ADMIN_USER_NETWORK_ID = "admin";
63
64 private WebDriver driver;
65 private String base;
66
67 private static final String DOCUMENT_TYPE_NAME = "KualiNotification";
68 private static final String ADVANCED_SEARCH_ONLY_FIELD = "applicationDocumentId";
69
70 private static final Map<String, String> CORE_FIELDS = new HashMap<String, String>();
71 static {
72
73 CORE_FIELDS.put("documentTypeName", DOCUMENT_TYPE_NAME);
74 CORE_FIELDS.put("documentId", "1234");
75 CORE_FIELDS.put("initiatorPrincipalName", "CURRENT_USER");
76 CORE_FIELDS.put("dateCreated", "11/11/11");
77
78 }
79 private static final Map<String, String> BASIC_FIELDS = new HashMap<String, String>();
80 static {
81 BASIC_FIELDS.putAll(CORE_FIELDS);
82
83 BASIC_FIELDS.put("documentAttribute.notificationContentType", "testType");
84 BASIC_FIELDS.put("documentAttribute.notificationChannel", "testChannel");
85 BASIC_FIELDS.put("documentAttribute.notificationProducer", "testProducer");
86 BASIC_FIELDS.put("documentAttribute.notificationPriority", "testPriority");
87 BASIC_FIELDS.put("documentAttribute.notificationRecipients", "testRecipients");
88 BASIC_FIELDS.put("documentAttribute.notificationSenders", "testSenders");
89 BASIC_FIELDS.put("saveName", "testBasicSearchFields_saved_search");
90 BASIC_FIELDS.put("isAdvancedSearch", "NO");
91 }
92
93 private static final Map<String, String> ADVANCED_FIELDS = new HashMap<String, String>();
94 static {
95 ADVANCED_FIELDS.put("approverPrincipalName", "testApproverName");
96 ADVANCED_FIELDS.put("viewerPrincipalName", "testViewerName");
97 ADVANCED_FIELDS.put("applicationDocumentId", "testApplicationDocumentId");
98
99 ADVANCED_FIELDS.put("dateApproved", "01/01/01");
100 ADVANCED_FIELDS.put("dateLastModified", "02/02/02");
101 ADVANCED_FIELDS.put("dateFinalized", "03/03/03");
102 ADVANCED_FIELDS.put("title", "test title");
103 ADVANCED_FIELDS.put("isAdvancedSearch", "YES");
104 }
105
106 @Before
107 public void setUp() throws Exception {
108 driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), DesiredCapabilities.firefox());
109
110 base = StringUtils.defaultIfEmpty(System.getProperty("remote.public.url"), "http://localhost:8080/kr-dev");
111 }
112
113 @After
114 public void tearDown() throws Exception {
115 driver.quit();
116 }
117
118 private void performLogin() {
119 driver.get(base);
120 assertEquals("Login", driver.getTitle());
121 driver.findElement(By.name("__login_user")).sendKeys(ADMIN_USER_NETWORK_ID);
122 driver.findElement(By.xpath("//input[@value='Login']")).click();
123 }
124
125 private String getDocSearchURL(Map<String, String> params) {
126 StringBuilder sb = new StringBuilder();
127 for (Map.Entry<String, String> entry: params.entrySet()) {
128 sb.append(URLEncoder.encode(entry.getKey()) + "=" + URLEncoder.encode(entry.getValue()) + "&");
129 }
130 return getDocSearchURL(sb.toString());
131
132 }
133 private String getDocSearchURL(String params) {
134 return base + "/kew/DocumentSearch.do?" + params;
135 }
136
137 private WebElement findElementByTagAndName(String tag, String name) {
138 return driver.findElement(By.xpath("//" + tag + "[@name='" + name + "']"));
139 }
140
141 private WebElement findInput(String name) {
142 return findElementByTagAndName("input", name);
143 }
144
145 private WebElement findModeToggleButton() {
146 WebElement toggleAdvancedSearch = null;
147 try {
148 return driver.findElement(By.id("toggleAdvancedSearch"));
149 } catch (NoSuchElementException e) {
150 fail("toggleAdvancedSearch button not found");
151 return null;
152 }
153 }
154
155 private void assertSearchDetailMode(WebElement e, boolean advanced) {
156 assertEquals((advanced ? "basic" : "detailed") + " search", e.getAttribute("title"));
157
158 try {
159 findInput(ADVANCED_SEARCH_ONLY_FIELD);
160 if (!advanced) fail("Advanced search field found in basic search");
161 } catch (NoSuchElementException nsee) {
162 if (advanced) fail("Advanced search field not found in advancedsearch");
163 }
164 }
165
166 @Test
167 public void testBasicSearchMode() throws InterruptedException{
168 performLogin();
169 driver.get(getDocSearchURL(""));
170 WebElement toggle = findModeToggleButton();
171 assertSearchDetailMode(toggle, false);
172 toggle.click();
173 assertSearchDetailMode(findModeToggleButton(), true);
174 }
175
176 @Test
177 public void testAdvancedSearchMode() {
178 performLogin();
179 driver.get(getDocSearchURL((KRADConstants.ADVANCED_SEARCH_FIELD + "=YES")));
180 WebElement toggle = findModeToggleButton();
181 assertSearchDetailMode(toggle, true);
182 toggle.click();
183 assertSearchDetailMode(findModeToggleButton(), false);
184 }
185
186 @Test
187 public void testHeaderBarDisabled() throws InterruptedException{
188 performLogin();
189
190 driver.get(getDocSearchURL("headerBarEnabled=false"));
191 assertTrue(driver.findElements(By.id("headerarea-small")).isEmpty());
192 assertInputPresence(CORE_FIELDS, true);
193 driver.get(getDocSearchURL("headerBarEnabled=true"));
194 assertFalse(driver.findElements(By.id("headerarea-small")).isEmpty());
195 assertInputPresence(CORE_FIELDS, true);
196 }
197
198 @Test
199 public void testCriteriaDisabled() throws InterruptedException{
200 performLogin();
201 driver.get(getDocSearchURL("searchCriteriaEnabled=NO"));
202 assertInputPresence(CORE_FIELDS, false);
203 driver.get(getDocSearchURL("searchCriteriaEnabled=true"));
204 assertInputPresence(CORE_FIELDS, true);
205 }
206
207 @Test
208 public void testBasicSearchFields() throws InterruptedException{
209 performLogin();
210
211
212 driver.get(getDocSearchURL(BASIC_FIELDS));
213
214 assertInputValues(BASIC_FIELDS);
215
216 driver.findElement(By.id("toggleAdvancedSearch")).click();
217
218 Map<String, String> expected = new HashMap<String, String>(BASIC_FIELDS);
219 for (Map.Entry<String, String> entry: ADVANCED_FIELDS.entrySet()) {
220 if (!"isAdvancedSearch".equals(entry.getKey())) {
221 expected.put(entry.getKey(), "");
222 } else {
223 expected.put(entry.getKey(), entry.getValue());
224 }
225 }
226 assertInputValues(expected);
227 }
228
229 @Test
230 public void testBasicSearchFieldsAndExecuteSearch() throws InterruptedException {
231 performLogin();
232
233
234 Map<String, String> fields = new HashMap<String, String>();
235 fields.putAll(BASIC_FIELDS);
236 fields.put("methodToCall", "search");
237 driver.get(getDocSearchURL(fields));
238
239 assertInputValues(BASIC_FIELDS);
240
241
242 assertTrue(driver.getPageSource().contains("No values match this search"));
243
244 driver.findElement(By.id("toggleAdvancedSearch")).click();
245
246 Map<String, String> expected = new HashMap<String, String>(BASIC_FIELDS);
247 for (Map.Entry<String, String> entry: ADVANCED_FIELDS.entrySet()) {
248 if (!"isAdvancedSearch".equals(entry.getKey())) {
249 expected.put(entry.getKey(), "");
250 } else {
251 expected.put(entry.getKey(), entry.getValue());
252 }
253 }
254 assertInputValues(expected);
255
256
257
258 }
259
260 @Test
261 public void testBasicSearchFieldsAndExecuteSearchWithHiddenCriteria() throws InterruptedException {
262 performLogin();
263
264
265 Map<String, String> fields = new HashMap<String, String>();
266 fields.putAll(BASIC_FIELDS);
267 fields.put("methodToCall", "search");
268 fields.put("searchCriteriaEnabled", "NO");
269 driver.get(getDocSearchURL(fields));
270
271 assertInputPresence(BASIC_FIELDS, false);
272
273
274 assertTrue(driver.getPageSource().contains("No values match this search"));
275
276
277 }
278
279 @Test
280 public void testAdvancedSearchFields() throws InterruptedException{
281 performLogin();
282
283
284 Map<String, String> values = new HashMap<String, String>(BASIC_FIELDS);
285 values.putAll(ADVANCED_FIELDS);
286 driver.get(getDocSearchURL(values));
287
288 assertInputValues(values);
289
290 driver.findElement(By.id("toggleAdvancedSearch")).click();
291
292 assertInputValues(BASIC_FIELDS);
293 }
294
295 @Test
296 public void testAdvancedSearchFieldsAndExecuteSearch() throws InterruptedException{
297 performLogin();
298
299
300 Map<String, String> expected = new HashMap<String, String>(BASIC_FIELDS);
301 expected.putAll(ADVANCED_FIELDS);
302
303 Map<String, String> values = new HashMap<String, String>(expected);
304 values.put("methodToCall", "search");
305 driver.get(getDocSearchURL(values));
306
307 assertInputValues(expected);
308
309
310 assertTrue(driver.getPageSource().contains("No values match this search"));
311
312 driver.findElement(By.id("toggleAdvancedSearch")).click();
313
314 assertInputValues(BASIC_FIELDS);
315 }
316
317 @Test
318 public void testAdvancedSearchFieldsAndExecuteSearchWithHiddenCriteria() throws InterruptedException {
319 performLogin();
320
321
322 Map<String, String> expected = new HashMap<String, String>(BASIC_FIELDS);
323 expected.putAll(ADVANCED_FIELDS);
324
325 Map<String, String> values = new HashMap<String, String>(expected);
326 values.put("methodToCall", "search");
327 values.put("searchCriteriaEnabled", "NO");
328 driver.get(getDocSearchURL(values));
329
330 assertInputPresence(expected, false);
331
332
333 assertTrue(driver.getPageSource().contains("No values match this search"));
334
335
336 }
337
338
339
340
341
342 @Test
343 public void testSupplyingSavedSearchNameDoesNothing() throws InterruptedException {
344 performLogin();
345
346
347 driver.get(getDocSearchURL(BASIC_FIELDS));
348
349 driver.get(getDocSearchURL("saveName=testBasicSearchFields_saved_search"));
350
351 Map<String, String> emptyForm = new HashMap<String, String>();
352 for (String key: CORE_FIELDS.keySet()) {
353 emptyForm.put(key, "");
354 }
355
356 assertInputValues(emptyForm);
357 }
358
359 private void assertInputValues(Map<String, String> fields) {
360 for (Map.Entry<String, String> entry: fields.entrySet()) {
361 String value = findInput(entry.getKey()).getAttribute("value");
362 assertEquals("Field '" + entry.getKey() + "' expected '" + entry.getValue() + "' got '" + value + "'", entry.getValue(), value);
363 }
364 }
365
366 private void assertInputPresence(Map<String, String> fields, boolean present) {
367 for (String name: fields.keySet()) {
368 if (present) {
369 assertTrue("Expected field '" + name + "' to be present", driver.findElements(By.name(name)).size() != 0);
370 } else {
371 assertEquals("Expected field '" + name + "' not to be present", 0, driver.findElements(By.name(name)).size());
372 }
373 }
374 }
375 }