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.config.namespace.pending.approvals.workgroup;
17  
18  import edu.sampleu.admin.config.namespace.pending.PendingBase;
19  import org.junit.Test;
20  import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
21  import org.kuali.rice.testtools.selenium.WebDriverUtils;
22  
23  /**
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public abstract class WorkGroupPendingApprovalsAft extends PendingBase {
27  
28      /**
29       * ITUtil.PORTAL+"?channelTitle=Namespace&channelUrl="+WebDriverUtils.getBaseUrlString()+ITUtil..KNS_LOOKUP_METHOD
30       * +"org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="
31       * +ITUtil.PORTAL_URL+ITUtil.HIDE_RETURN_LINK;
32       */
33      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Namespace&channelUrl="
34              + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KNS_LOOKUP_METHOD
35              + "org.kuali.rice.coreservice.impl.namespace.NamespaceBo" + "&docFormKey=88888888&returnLocation="
36              + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;
37  
38  
39      @Override
40      public String getBookmarkUrl() {
41          return BOOKMARK_URL;
42      }
43  
44      protected void testWorkGroupPendingApprovals() throws Exception {
45          fillInNamespaceOverview("Test Namespace 3", "SUACTION3", "SUACTION3", "KUALI");
46  
47          String[][] groupsActions = new String[][] {{"group1"}, {"TestGroup2"}};
48          fillInAdHocGroups(groupsActions);
49  
50          String docId = submitAndLookupDoc();
51          assertSuperGroup(docId);
52      }
53  
54      @Test
55      public void testWorkGroupPendingApprovalsBookmark() throws Exception {
56          testWorkGroupPendingApprovals();
57      }
58  
59      @Test
60      public void testWorkGroupPendingApprovalsNav() throws Exception {
61          testWorkGroupPendingApprovals();
62      }
63  }