1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
25
26 public abstract class WorkGroupPendingApprovalsAft extends PendingBase {
27
28
29
30
31
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 }