1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs.kitchensink;
17
18 import org.junit.Test;
19
20
21
22
23
24
25 public class LabsServerSideTestViewAft extends LabsKitchenSinkBase {
26
27
28
29
30 public static final String BOOKMARK_URL =
31 "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page3";
32
33 private static final String ERROR_ELEMENT_XPATH="//div[@class='uif-inputField uif-boxLayoutVerticalItem clearfix uif-hasError']";
34
35 @Override
36 protected String getBookmarkUrl() {
37 return BOOKMARK_URL;
38 }
39
40 @Override
41 protected void navigate() throws InterruptedException {
42 navigateToKitchenSink("Validation");
43
44
45
46 }
47
48
49 protected void testServerSideTestView() throws Exception {
50
51
52 waitAndTypeByName("field9","a");
53 waitAndTypeByName("field10","1");
54 waitAndClickByXpath("//button[@id='usave']");
55 waitForTextPresent("MinMax Length test: Please enter at least 2 characters");
56 assertTextPresent("MinMax Value test: Value must be greater than 2");
57 assertTextPresent(new String[]{"Required constraint", "3 errors"});
58 assertElementPresentByXpath("//div[@class='uif-inputField uif-boxLayoutHorizontalItem uif-hasError']");
59 fireMouseOverEventByName("field3");
60 waitForTextPresent("Required");
61 fireMouseOverEventByName("field4");
62 waitForTextPresent("Required");
63
64 fireMouseOverEventByName("field5");
65 waitForTextPresent("Required");
66
67
68
69 waitAndTypeByName("field6", "test");
70 waitAndTypeByName("field7", "test");
71 fireMouseOverEventByName("field8");
72 waitForTextPresent("Required by Field A");
73 assertTextPresent("Required by Field A");
74
75 clearTextByName("field6");
76 clearTextByName("field7");
77
78 waitAndTypeByName("field8","test");
79 fireMouseOverEventByName("field6");
80 assertTextPresent("Required");
81
82
83
84 waitAndTypeByName("field14","a");
85 waitAndClickByXpath("//button[@id='usave']");
86 Thread.sleep(4000);
87
88
89 waitAndClickByXpath("//input[@name='field24' and @value='case1']");
90 waitAndClickByXpath("//button[@id='usave']");
91 waitForElementPresentByXpath(ERROR_ELEMENT_XPATH+"/input[@name='field25']");
92 waitAndClickByXpath("//input[@name='field24' and @value='case2']");
93 waitAndClickByXpath("//button[@id='usave']");
94 waitForElementPresentByXpath(ERROR_ELEMENT_XPATH+"/input[@name='field25']");
95 waitAndTypeByName("field25","123@#");
96 waitAndClickByXpath("//button[@id='usave']");
97 waitForElementPresentByXpath(ERROR_ELEMENT_XPATH+"/input[@name='field25']");
98 fireMouseOverEventByName("field25");
99 waitForTextPresent(" Can only be alphanumeric characters");
100 waitAndTypeByName("field26","1234");
101 waitAndClickByXpath("//input[@name='field24' and @value='case3']");
102 waitAndClickByXpath("//button[@id='usave']");
103 waitForElementPresentByXpath(ERROR_ELEMENT_XPATH+"/input[@name='field26']");
104 fireMouseOverEventByName("field26");
105 waitForTextPresent(" Must be at most 3 characters");
106 waitAndTypeByName("field31","as");
107 waitAndTypeByName("field32","asd");
108 waitAndClickByXpath("//button[@id='usave']");
109 waitForElementPresentByXpath(ERROR_ELEMENT_XPATH+"/input[@name='field33']");
110
111 }
112
113 @Test
114 public void testServerSideTestViewBookmark() throws Exception {
115 testServerSideTestView();
116 passed();
117 }
118
119 @Test
120 public void testServerSideTestViewNav() throws Exception {
121 testServerSideTestView();
122 passed();
123 }
124 }