View Javadoc
1   /**
2    * Copyright 2005-2014 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 org.kuali.rice.krad.labs.kitchensink;
17  
18  import org.junit.Test;
19  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20  
21  /**
22   * Tests the Component section in Rice.
23   *
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class ServerSideTestViewAft extends LabsKitchenSinkBase {
27  
28      /**
29       * "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&readOnlyFields=field91";
30       */
31      public static final String BOOKMARK_URL = /* "/kr-krad/uicomponents?viewId=Demo-ValidationServerSide&methodToCall=start"; */
32              "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page3";
33  
34      private static final String ERROR_ELEMENT_XPATH="//div[@class='uif-inputField uif-boxLayoutVerticalItem clearfix uif-hasError']";
35  
36      @Override
37      protected String getBookmarkUrl() {
38          return BOOKMARK_URL;
39      }
40  
41      protected void navigation() throws InterruptedException {
42          navigateToKitchenSink("Validation");
43          //        waitAndClickKRAD();
44          //        waitAndClickByLinkText("ServerSide Constraint Validation Demo");
45          //        switchToWindow("Kuali :: Validation Server-side Test View");
46      }
47  
48      //Code for KRAD Test Package.
49      protected void testServerSideTestView() throws Exception {
50  
51          //MinMax length and value  and Required Constraint
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          //PreRequisite constraint
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          //MustOccurs constraint
84          waitAndTypeByName("field14","a");
85          waitAndClickByXpath("//button[@id='usave']");
86          Thread.sleep(4000);
87  
88          //Case constraint
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         navigation();
122         testServerSideTestView();
123         passed();
124     }
125 }