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  
17  package edu.samplu.krad.configview;
18  
19  import edu.samplu.common.UpgradedSeleniumITBase;
20  import org.junit.Assert;
21  import org.junit.Test;
22  
23  /**
24   * Selenium test that tests collections
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class CollectionsIT extends UpgradedSeleniumITBase {
29  
30      @Override
31      public String getTestUrl() {
32          return "/kr-krad/uicomponents?viewId=ConfigurationTestView-Collections&methodToCall=start";
33      }
34  
35      /**
36       * Test adding a column of values to the Default Tests Table Layout
37       */
38      @Test
39      public void testDefaultTestsTableLayout() {
40          Assert.assertTrue(selenium.isTextPresent("Default Tests"));
41          Assert.assertTrue(selenium.isTextPresent("Table Layout"));
42          Assert.assertTrue(selenium.isTextPresent("* Field 1"));
43          Assert.assertTrue(selenium.isTextPresent("* Field 2"));
44          Assert.assertTrue(selenium.isTextPresent("* Field 3"));
45          Assert.assertTrue(selenium.isTextPresent("* Field 4"));
46          Assert.assertTrue(selenium.isTextPresent("Actions"));
47  
48          selenium.type("name=newCollectionLines['list1'].field1", "asdf1");
49          selenium.type("name=newCollectionLines['list1'].field2", "asdf2");
50          selenium.type("name=newCollectionLines['list1'].field3", "asdf3");
51          selenium.type("name=newCollectionLines['list1'].field4", "asdf4");
52          selenium.click("//button[contains(.,'add')]"); // the first button is the one we want
53          selenium.waitForCondition("selenium.browserbot.getCurrentWindow().document.getElementsByName(\"newCollectionLines['list1'].field1\")[0].value == ''", "3000");
54  
55          Assert.assertEquals("", selenium.getValue("name=newCollectionLines['list1'].field1"));
56          Assert.assertEquals("", selenium.getValue("name=newCollectionLines['list1'].field2"));
57          Assert.assertEquals("", selenium.getValue("name=newCollectionLines['list1'].field3"));
58          Assert.assertEquals("", selenium.getValue("name=newCollectionLines['list1'].field4"));
59          Assert.assertEquals("asdf1", selenium.getValue("name=list1[0].field1"));
60          Assert.assertEquals("asdf2", selenium.getValue("name=list1[0].field2"));
61          Assert.assertEquals("asdf3", selenium.getValue("name=list1[0].field3"));
62          Assert.assertEquals("asdf4", selenium.getValue("name=list1[0].field4"));
63  
64          // how to figure out which delete button for the one we just added?
65      }
66  
67      /**
68       * Test action column placement in table layout collections
69       */
70      @Test
71      public void testActionColumnPlacement() throws Exception {
72          // check if actions column RIGHT by default
73          Assert.assertTrue(selenium.isElementPresent("//div[@id='ConfigurationTestView-collection1']//tr[2]/td[6]//button[contains(.,\"delete\")]"));
74          // check if actions column is LEFT
75          Assert.assertTrue(selenium.isElementPresent("//div[@id='ConfigurationTestView-collection2']//tr[2]/td[1]//button[contains(.,\"delete\")]"));
76          // check if actions column is 3rd in a sub collection
77          Assert.assertTrue(selenium.isElementPresent("//div[@id='ConfigurationTestView-subCollection2_line0']//tr[2]/td[3]//button[contains(.,\"delete\")]"));
78      }
79  }