View Javadoc

1   /**
2    * Copyright 2005-2013 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.admin.test;
17  
18  import org.junit.Test;
19  
20  import edu.samplu.common.ITUtil;
21  import edu.samplu.common.WebDriverLegacyITBase;
22  
23  /**
24   * tests the Component section in Rice.
25   *
26   * @deprecated
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   */
29  public class ComponentWDIT extends WebDriverLegacyITBase {
30      String docId;
31      String componentName;
32      String componentCode;
33  
34      public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Component&channelUrl=" + ITUtil.getBaseUrlString() +
35              "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.component.ComponentBo&docFormKey=88888888&returnLocation=" +
36              ITUtil.PORTAL_URL + "&hideReturnLink=true";
37              
38      @Override
39      public String getTestUrl() {
40          return TEST_URL;
41      }
42      
43      @Test
44      public void testComponentParameter() throws Exception {
45          waitAndCreateNew();
46          componentName = "TestName" + ITUtil.DTS_TWO;
47          componentCode = "TestCode" + ITUtil.DTS_TWO;
48          docId = testCreateNewComponent(componentName, componentCode);
49         
50          //Lookup
51          open(ITUtil.getBaseUrlString()+TEST_URL);
52          selectFrameIframePortlet();
53          testLookUpComponent(docId, componentName,componentCode);
54  
55          testEditComponent(docId, componentName, componentCode);
56          
57          //Verify if its edited
58          open(ITUtil.getBaseUrlString()+TEST_URL);
59          selectFrameIframePortlet();
60          testVerifyEditedComponent(docId, componentName, componentCode);
61    
62          testCopyComponent(docId, componentName + "copy", componentCode + "copy");
63          
64          //Verify if its copied
65          open(ITUtil.getBaseUrlString()+TEST_URL);
66          selectFrameIframePortlet();
67          testVerifyCopyComponent(docId, componentName + "copy", componentCode + "copy");
68      }
69  }