View Javadoc

1   /*
2    * Copyright 2006-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.samplu.travel.krad.test;
17  
18  import com.thoughtworks.selenium.DefaultSelenium;
19  import com.thoughtworks.selenium.Selenium;
20  import edu.samplu.common.UpgradedSeleniumITBase;
21  import org.apache.commons.logging.LogFactory;
22  import org.apache.commons.logging.Log;
23  import org.junit.After;
24  import org.junit.Before;
25  import org.junit.Ignore;
26  import org.junit.Test;
27  import org.kuali.rice.krad.uif.UifConstants;
28  
29  import java.util.HashMap;
30  import java.util.Map;
31  
32  import static org.junit.Assert.assertEquals;
33  import static org.junit.Assert.assertNotNull;
34  import static org.junit.Assert.assertTrue;
35  
36  /**
37   *  Tests that the data attributes are rendered as expected for all controls
38   * 
39   * @author Kuali Rice Team (rice.collab@kuali.org)
40   */
41  public class UifDataAttributesIT extends UpgradedSeleniumITBase {
42      @Override
43      public String getTestUrl() {
44          return PORTAL;
45      }
46  
47      private  Log log = LogFactory.getLog(getClass());
48  
49      /**
50       * verify that a tag has simple data attributes
51       *
52       * @param tag - html tag e.g. img or a
53       * @param tagId - derived from the bean id set in the view
54       * @param tagIdSuffix - where applicable, a suffix that is appended to the control by krad e.g. _control
55       */
56      private void verifySimpleAttributes(String tag, String tagId, String tagIdSuffix) {
57          // test the attributes that are set via the data attributes list
58          tagId = tagId + tagIdSuffix;
59          String simpleAttributesXpath="//" + tag + "[(@id='" + tagId + "') and (@data-iconTemplateName='cool-icon-%s.png') and (@data-transitions='3')]";
60          assertTrue(tagId + " does not have simple data attributes (via list) present", selenium.isElementPresent(simpleAttributesXpath));
61          verifyStaticDataAttributes(tag, tagId);
62  
63      }
64  
65      /**
66       * test the attributes that are set via the data*Attribute properties
67       *
68       * @param tag - html tag e.g. img or a
69       * @param tagId - the html tag id - a combination of bean id and any suffix
70       */
71      private void verifyStaticDataAttributes(String tag, String tagId) {
72          final String simpleAttributesXpath;
73          simpleAttributesXpath="//" + tag + "[(@id='" + tagId + "')"
74                  + " and (@data-role='role') and (@data-type='type') and (@data-meta='meta')]";
75          assertTrue(tagId + " does not have simple data attributes (via data*Attribute) properties present",
76                  selenium.isElementPresent(simpleAttributesXpath));
77      }
78  
79      /**
80       * check that complex attributes exist in the script
81       *
82       * @param tagId - the expected tag id
83       * @param suffix - the expected suffix e.g. _button
84       */
85      private void verifyComplexAttributes(String tagId, String suffix) {
86          tagId = tagId + suffix;
87          String complexAttributesXpath="//input[(@type='hidden') and (@data-role='dataScript') and (@data-for='"+ tagId +  "')]";
88          assertTrue(tagId + ": complex data attributes script not found", selenium.isElementPresent(complexAttributesXpath));
89  
90          // the message field does not support complex attributes
91          //if (!tagId.equalsIgnoreCase("messageField")) {
92              String scriptValue = selenium.getAttribute(complexAttributesXpath + "@value");
93              assertNotNull("script value is null",scriptValue);
94          boolean ok = scriptValue.contains(
95                  "jQuery('#" + tagId + "').data('capitals', {kenya:'nairobi', uganda:'kampala', tanzania:'dar'});")
96                  && scriptValue.contains("jQuery('#" + tagId + "').data('intervals', {short:2, medium:5, long:13});");
97          if (!ok) {
98              log.info("scriptValue for " + tagId + " is " + scriptValue);
99          }
100         // check for complex attributes
101         assertTrue(tagId + ": complex attributes script does not contain expected code", ok);
102         //}
103     }
104 
105     /**
106      * check that all attributes exist in the script
107      *
108      * @param tagId - the expected tag id
109      * @param suffix - the expected suffix e.g. _control
110      * @return true if all attributes were found in script, false otherwise
111      */
112     private boolean verifyAllAttributesInScript(String tagId, String suffix) {
113         tagId = tagId + suffix;
114         String complexAttributesXpath="//input[(@type='hidden') and (@data-for='"+ tagId +  "')]";
115         assertTrue(tagId + ": complex data attributes script not found", selenium.isElementPresent(complexAttributesXpath));
116 
117         // the message field does not support complex attributes
118         String scriptValue = selenium.getAttribute(complexAttributesXpath + "@value");
119         assertNotNull("script value is null",scriptValue);
120         // log.info("scriptValue for " + tagId + " is " + scriptValue);
121         return scriptValue.contains("jQuery('#" + tagId + "').data('transitions', 3);") &&
122                 scriptValue.contains("jQuery('#" + tagId + "').data('iconTemplateName', 'cool-icon-%s.png');") &&
123                 scriptValue.contains("jQuery('#" + tagId + "').data('capitals', {kenya:'nairobi', uganda:'kampala', tanzania:'dar'});") &&
124                 scriptValue.contains("jQuery('#" + tagId + "').data('intervals', {short:2, medium:5, long:13});");
125     }
126 
127 
128     /**
129      * Tests that the data attributes are rendered as expected for all controls
130      */
131     @Test
132     public void testDataAttributesPresentInControls () {
133         assertEquals("Kuali Portal Index", selenium.getTitle());
134         selenium.open(
135                 "/kr-dev/kr-krad/data-attributes-test-uif-controller?viewId=dataAttributesView_selenium&methodToCall=start");
136         selenium.waitForPageToLoad("50000");
137 
138         // custom suffix to mark  test bean ids
139         String testIdSuffix = "_attrs";
140         // input fields, whose controls are implemented as spring form tags, will have both simple and complex attributes set via a script
141         String[] inputControls = {"textInputField", "textAreaInputField", "dropDown", "datePicker", "fileUpload", "userControl",
142                 "spinnerControl", "hiddenControl", "checkBox"};//, "radioButton",
143         for (int i=0; i<inputControls.length; i++) {
144             assertTrue(inputControls[i] + ": script does not contain expected code",
145                     verifyAllAttributesInScript(inputControls[i], testIdSuffix + UifConstants.IdSuffixes.CONTROL));
146             String tag = "input";
147             if (inputControls[i].equalsIgnoreCase("textAreaInputField")) {
148                 tag = "textarea";
149             } else if (inputControls[i].equalsIgnoreCase("dropDown")) {
150                 tag = "select";
151             }
152             verifyStaticDataAttributes(tag, inputControls[i] + testIdSuffix + UifConstants.IdSuffixes.CONTROL);
153         }
154         // these controls allow for simple attributes on the tag and complex attributes via js
155         Map<String, String[]> otherControlsMap = new HashMap<String, String[]>();
156         // controls whose simple attributes are set in an img tag
157         String[] imgControls = {"imageField_image"};
158         // fields whose simple attributes are set in an anchor tag
159         String[] anchorFields = {"navigationLink", "actionLink-noImage", "actionLink-imageRight", "actionLink-imageLeft",
160                 "linkField", "linkElement"};
161         // fields whose simple attributes are set in a span tag
162         String[] spanFields = {"messageField", "spaceField"};
163         // fields whose simple attributes are set in an input tag
164         String[] inputFields = {"imageAction"};
165         // fields whose simple attributes are set in button tag
166         String[] buttonElements = {"buttonTextOnly", "buttonImageBottom", "buttonImageLeft", "buttonImageTop", "buttonImageRight"};
167         // iframe field
168         String[] iframeField = {"iframe"};
169         
170         otherControlsMap.put("img", imgControls);
171         otherControlsMap.put("a", anchorFields);
172         otherControlsMap.put("span", spanFields);
173         otherControlsMap.put("input", inputFields);
174         otherControlsMap.put("button", buttonElements);
175         otherControlsMap.put("iframe", iframeField);
176 
177         // a map to hold the tags where the simple attributes are affixed
178         // if a tag is not here, a empty string will be used for the suffix
179         Map<String, String> simpleTagIdSuffix = new HashMap<String, String>();
180         simpleTagIdSuffix.put("span", "_span");
181         
182 
183         for (String tag: otherControlsMap.keySet()) {
184             String[] controlIds = otherControlsMap.get(tag);
185             for (int i=0; i<controlIds.length; i++) {
186                 String tagId = controlIds[i];
187 
188                 // check for complex attributes
189                 verifyComplexAttributes(tagId, testIdSuffix);
190 
191                 // determine whether we are using a tag id suffix for the simple attributes
192                 String tagIdSuffix = testIdSuffix;
193                 if (simpleTagIdSuffix.containsKey(tag)) {
194                     tagIdSuffix = tagIdSuffix + simpleTagIdSuffix.get(tag);
195                 }
196 
197                 // check for simple attributes
198                 verifySimpleAttributes(tag, tagId, tagIdSuffix);
199             }
200             
201             // test label field - which uses the tagId suffix for both the simple attributes and complex
202             String tagId = "textInputField";
203             String tagIdSuffix = testIdSuffix + "_label";
204             // check for complex attributes
205             verifyComplexAttributes(tagId, tagIdSuffix);
206             // check for simple attributes
207             verifySimpleAttributes("label", tagId, tagIdSuffix);
208 
209             //test that the radio buttons have the 3 data attributes that can appear in the tag
210             tagId = "radioButton" + testIdSuffix + UifConstants.IdSuffixes.CONTROL;
211             String[] radioButtonIds = {tagId + "1", tagId + "2"};
212             for (String id: radioButtonIds) {
213                 verifyStaticDataAttributes("input", id);
214             }
215             //test that all complex and simple attributes set via the list are in a script
216             verifyAllAttributesInScript(tagId, "");
217         }
218     }
219 }