1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.travel;
17
18 import org.apache.commons.logging.Log;
19 import org.apache.commons.logging.LogFactory;
20 import org.junit.Ignore;
21 import org.junit.Test;
22 import org.kuali.rice.krad.uif.UifConstants;
23 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
24 import org.kuali.rice.testtools.selenium.WebDriverUtils;
25
26 import java.util.HashMap;
27 import java.util.Map;
28
29 import static org.junit.Assert.*;
30
31
32
33
34
35
36 public class UifDataAttributesNavAft extends WebDriverLegacyITBase {
37
38 public static String BOOKMARK_URL = WebDriverUtils.getBaseUrlString()+ "/kr-krad/data-attributes-test-uif-controller?viewId=dataAttributesView_selenium&methodToCall=start";
39
40 @Override
41 protected String getBookmarkUrl() {
42 return BOOKMARK_URL;
43 }
44
45 private Log log = LogFactory.getLog(getClass());
46
47
48
49
50
51
52
53
54 private void verifySimpleAttributes(String tag, String tagId, String tagIdSuffix) throws Exception{
55
56 tagId = tagId + tagIdSuffix;
57 String simpleAttributesXpath="//" + tag + "[@id='" + tagId + "' and @data-iconTemplateName='cool-icon-%s.png' and @data-transitions='3']";
58 assertTrue(tagId + " does not have simple data attributes (via list) present", isElementPresentByXpath(simpleAttributesXpath));
59 verifyStaticDataAttributes(tag, tagId);
60
61 }
62
63
64
65
66
67
68
69 private void verifyStaticDataAttributes(String tag, String tagId) {
70 final String simpleAttributesXpath;
71 simpleAttributesXpath="//" + tag + "[@id='" + tagId + "'"
72 + " and @data-dataroleattribute='role' and @data-datatypeattribute='type' and @data-datametaattribute='meta']";
73 assertTrue(tagId + " does not have simple data attributes (via data*Attribute) properties present",
74 isElementPresentByXpath(simpleAttributesXpath));
75 }
76
77
78
79
80
81
82
83 private void verifyComplexAttributes(String tagId, String suffix)throws Exception {
84 tagId = tagId + suffix;
85 String complexAttributesXpath="//input[(@type='hidden') and (@data-role='dataScript') and (@data-for='"+ tagId + "')]";
86 assertTrue(tagId + ": complex data attributes script not found", isElementPresentByXpath(complexAttributesXpath));
87
88
89
90 String scriptValue = waitAndGetAttributeByXpath(complexAttributesXpath, "value");
91 assertNotNull("script value is null",scriptValue);
92 boolean ok = scriptValue.contains(
93 "jQuery('#" + tagId + "').data('capitals', {kenya:'nairobi', uganda:'kampala', tanzania:'dar'});")
94 && scriptValue.contains("jQuery('#" + tagId + "').data('intervals', {short:2, medium:5, long:13});");
95 if (!ok) {
96 log.info("scriptValue for " + tagId + " is " + scriptValue);
97 }
98
99 assertTrue(tagId + ": complex attributes script does not contain expected code", ok);
100
101 }
102
103
104
105
106
107
108
109
110 private boolean verifyAllAttributesInScript(String tagId, String suffix)throws Exception {
111 checkForIncidentReport();
112 tagId = tagId + suffix;
113 String complexAttributesXpath="//input[@type='hidden' and @data-for='"+ tagId + "']";
114
115
116 String scriptValue = waitAndGetAttributeByXpath(complexAttributesXpath, "value");
117 assertNotNull("script value is null",scriptValue);
118
119 return scriptValue.contains("jQuery('#" + tagId + "').data('transitions', 3);") &&
120 scriptValue.contains("jQuery('#" + tagId + "').data('iconTemplateName', 'cool-icon-%s.png');") &&
121 scriptValue.contains("jQuery('#" + tagId + "').data('capitals', {kenya:'nairobi', uganda:'kampala', tanzania:'dar'});") &&
122 scriptValue.contains("jQuery('#" + tagId + "').data('intervals', {short:2, medium:5, long:13});");
123 }
124
125
126
127
128
129 @Ignore
130 @Test
131 public void testDataAttributesPresentInControlsNav() throws Exception{
132 assertEquals("Kuali Portal Index", getTitle());
133 open(getBookmarkUrl());
134 waitForPageToLoad();
135
136
137 String testIdSuffix = "_attrs";
138
139 String[] inputControls = {"textInputField", "textAreaInputField", "dropDown", "datePicker", "fileUpload", "userControl",
140 "spinnerControl", "hiddenControl", "checkBox"};
141 for (int i=0; i<inputControls.length; i++) {
142 assertTrue(inputControls[i] + ": script does not contain expected code",
143 verifyAllAttributesInScript(inputControls[i], testIdSuffix + UifConstants.IdSuffixes.CONTROL));
144 String tag = "input";
145 if (inputControls[i].equalsIgnoreCase("textAreaInputField")) {
146 tag = "textarea";
147 } else if (inputControls[i].equalsIgnoreCase("dropDown")) {
148 tag = "select";
149 }
150 verifyStaticDataAttributes(tag, inputControls[i] + testIdSuffix + UifConstants.IdSuffixes.CONTROL);
151 }
152
153 Map<String, String[]> otherControlsMap = new HashMap<String, String[]>();
154
155 String[] imgControls = {"imageField_image"};
156
157 String[] anchorFields = {"navigationLink", "actionLink-noImage", "actionLink-imageRight", "actionLink-imageLeft", "linkElement"};
158
159 String[] spanFields = {"messageField"};
160
161 String[] inputFields = {"imageAction"};
162
163 String[] buttonElements = {"buttonTextOnly", "buttonImageBottom", "buttonImageLeft", "buttonImageTop", "buttonImageRight"};
164
165 String[] iframeField = {"iframe"};
166 String[] divField={"spaceField","linkField"};
167
168 otherControlsMap.put("img", imgControls);
169 otherControlsMap.put("a", anchorFields);
170 otherControlsMap.put("span", spanFields);
171 otherControlsMap.put("input", inputFields);
172 otherControlsMap.put("button", buttonElements);
173 otherControlsMap.put("iframe", iframeField);
174 otherControlsMap.put("div", divField);
175
176
177
178 Map<String, String> simpleTagIdSuffix = new HashMap<String, String>();
179 simpleTagIdSuffix.put("span", "_span");
180
181
182 for (String tag: otherControlsMap.keySet()) {
183 String[] controlIds = otherControlsMap.get(tag);
184 for (int i=0; i<controlIds.length; i++) {
185 String tagId = controlIds[i];
186
187
188 verifyComplexAttributes(tagId, testIdSuffix);
189
190
191 String tagIdSuffix = testIdSuffix;
192 if (simpleTagIdSuffix.containsKey(tag)) {
193 tagIdSuffix = tagIdSuffix + simpleTagIdSuffix.get(tag);
194 }
195
196
197 verifySimpleAttributes(tag, tagId, tagIdSuffix);
198 }
199
200
201 String tagId = "textInputField";
202 String tagIdSuffix = testIdSuffix + "_label";
203
204 verifyComplexAttributes(tagId, tagIdSuffix);
205
206 verifySimpleAttributes("label", tagId, tagIdSuffix);
207
208
209 tagId = "radioButton" + testIdSuffix + UifConstants.IdSuffixes.CONTROL;
210 String[] radioButtonIds = {tagId + "_0", tagId + "_1"};
211 for (String id: radioButtonIds) {
212 verifyStaticDataAttributes("input", id);
213 }
214
215 verifyAllAttributesInScript(tagId, "");
216 }
217 passed();
218 }
219 }