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 edu.sampleu.admin;
17  
18  import org.kuali.rice.testtools.common.JiraAwareFailable;
19  import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
20  import org.kuali.rice.testtools.selenium.WebDriverUtils;
21  
22  /**
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public abstract class AddingNameSpacesAftBase extends AdminTmplMthdAftNavBase {
26  
27      /**
28       * ITUtil.PORTAL+"?channelTitle=Namespace&channelUrl="+WebDriverUtils.getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ITUtil.PORTAL_URL+"&hideReturnLink=true";
29       */
30      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Namespace&channelUrl="+ WebDriverUtils
31              .getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ AutomatedFunctionalTestUtils.PORTAL_URL+"&hideReturnLink=true";
32  
33      @Override
34      protected String getBookmarkUrl() {
35          return BOOKMARK_URL;
36      }
37  
38      /**
39       * {@inheritDoc}
40       * Namespace
41       * @return
42       */
43      @Override
44      protected String getLinkLocator() {
45          return "Namespace";
46      }
47  
48      public void testAddingNamespaceBookmark(JiraAwareFailable failable) throws Exception {
49          testAddingNamespace(this);
50          passed();
51      }
52  
53      public void testAddingNamespaceNav(JiraAwareFailable failable) throws Exception {
54          testAddingNamespace(this);
55          passed();
56      }
57  
58      public void testSearchEditBackNav(JiraAwareFailable failable) throws Exception {
59          testSearchEditBack(this);
60          passed();
61      }
62  
63      public void testSearchSearchBackNav(JiraAwareFailable failable) throws Exception {
64          testSearchSearchBack(this, "code", "KR-SYS");
65          passed();
66      }
67  }