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 edu.samplu.common.Failable;
19  import edu.samplu.common.ITUtil;
20  import org.apache.commons.lang.RandomStringUtils;
21  
22  /**
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public abstract class ConfigComponentLookUpAndCopyAbstractSmokeTestBase extends AdminTmplMthdSTNavBase{
26  
27      /**
28       * ITUtil.PORTAL+"?channelTitle=Component&channelUrl="+ITUtil.getBaseUrlString()+
29       * "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.component.ComponentBo&docFormKey=88888888&returnLocation="+
30       * +ITUtil.PORTAL_URL+ ITUtil.HIDE_RETURN_LINK;
31       */    
32      public static final String BOOKMARK_URL = ITUtil.PORTAL+"?channelTitle=Component&channelUrl="+ITUtil.getBaseUrlString()+
33              "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.component.ComponentBo&docFormKey=88888888&returnLocation="+
34              ITUtil.PORTAL_URL+ ITUtil.HIDE_RETURN_LINK;
35  
36      /**
37       * {@inheritDoc}
38       * Component
39       * @return
40       */
41      @Override
42      protected String getLinkLocator() {
43          return "Component";
44      }
45  
46      public void testConfigComponentLookUpAndCopyBookmark(Failable failable) throws Exception {
47          testConfigComponentLookUpAndCopy();
48          passed();
49      }
50  
51      public void testConfigComponentLookUpAndCopyNav(Failable failable) throws Exception {
52          testConfigComponentLookUpAndCopy();
53          passed();
54      }    
55      
56      public void testConfigComponentLookUpAndCopy() throws Exception
57      {
58          selectFrameIframePortlet();
59          waitAndClickByXpath("(//input[@name='methodToCall.search'])[2]");
60          waitAndClickByLinkText("copy");
61          String fourLetters = RandomStringUtils.randomAlphabetic(4);
62          waitAndTypeByName("document.documentHeader.documentDescription","Test description of Component copy " + ITUtil.createUniqueDtsPlusTwoRandomCharsNot9Digits());
63          selectByName("document.newMaintainableObject.namespaceCode","KR-WKFLW - Workflow");
64          waitAndTypeByName("document.newMaintainableObject.code","ActionList2" + fourLetters);
65          waitAndTypeByName("document.newMaintainableObject.name",fourLetters);
66          waitAndTypeByName("document.newMaintainableObject.name","Action List 2 " + fourLetters);
67          waitAndClickByName("methodToCall.route");
68          checkForDocError();
69          waitAndClickByName("methodToCall.close");
70          waitAndClickByName("methodToCall.processAnswer.button1");
71      }
72  }