View Javadoc
1   /**
2    * Copyright 2005-2015 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 class FyiPendingApprovalsAft 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      @Override
39      public String getBookmarkUrl() {
40          return BOOKMARK_URL;
41      }
42  
43      protected void testFYIPendingApprovals() throws Exception {
44          fillInNamespaceOverview("Test Namespace 4", "SUACTION4", "SUACTION4", "KUALI");
45  
46          String[][] groupsActions = new String[][] {{"group1", "ACKNOWLEDGE"}, {"TestGroup2"}};
47          fillInAdHocGroups(groupsActions);
48  
49          String docId = submitAndLookupDoc();
50          assertSuperGroup(docId);
51      }
52  
53      @Test
54      public void testFYIPendingApprovalsBookmark() throws Exception {
55          testFYIPendingApprovals();
56          passed();
57      }
58  
59      @Test
60      public void testFYIPendingApprovalsNav() throws Exception {
61          testFYIPendingApprovals();
62          passed();
63      }
64  }