1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.admin;
17
18 import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
19 import org.kuali.rice.testtools.selenium.WebDriverUtils;
20
21
22
23
24 public abstract class ConfigComponentActionListAftBase extends ConfigComponentAftBase {
25
26
27
28
29
30
31 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Component&channelUrl="+ WebDriverUtils
32 .getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.component.ComponentBo&docFormKey=88888888&returnLocation="+
33 AutomatedFunctionalTestUtils.PORTAL_URL+ AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;
34
35 @Override
36 protected String getBookmarkUrl() {
37 return BOOKMARK_URL;
38 }
39
40 private void assertActionListRequestGroup(String userInGroup, String group, String namespace, String actionCode, String state) throws InterruptedException {
41 namespaceCode = namespace;
42 String docId = testCreateActionRequestGroup(group, namespace, actionCode);
43 impersonateUser(userInGroup);
44 assertActionList(docId, actionCode, state);
45 selectTopFrame();
46 }
47
48 private void assertActionListRequestPerson(String backdoorUser, String actionCode, String state) throws InterruptedException {
49 String docId = testCreateActionRequestPerson(backdoorUser, actionCode);
50 impersonateUser(backdoorUser);
51 assertActionList(docId, actionCode, state);
52 selectTopFrame();
53 }
54
55 protected String testCreateActionRequestGroup(String user, String namespace, String actionType) throws InterruptedException{
56 String docId = testCreateNew();
57 addAdHocRecipientsGroup(new String[]{user, actionType, namespace});
58 submitAndClose();
59 return docId;
60 }
61
62
63
64
65
66
67
68
69
70
71
72 protected String testCreateActionRequestPerson(String user, String actionType) throws InterruptedException {
73 String docId = testCreateNew();
74 addAdHocRecipientsPerson(new String[]{user, actionType});
75 submitAndClose();
76 return docId;
77 }
78
79 public void testActionListAcknowledgeGroup() throws Exception {
80 assertActionListRequestGroup("fran", "RecipeMasters", "KR-WKFLW", "K", "PROCESSED");
81 passed();
82 }
83
84
85
86
87
88
89 public void testActionListAcknowledgePerson() throws Exception {
90 assertActionListRequestPerson("erin", "K", "PROCESSED");
91 passed();
92 }
93
94 public void testActionListApproveGroup() throws Exception {
95 assertActionListRequestGroup("fred", "RecipeMasters", "KR-WKFLW", "A", "ENROUTE");
96 passed();
97 }
98
99
100
101
102
103
104 public void testActionListApprovePerson() throws Exception {
105 assertActionListRequestPerson("fred", "A", "ENROUTE");
106 passed();
107 }
108
109 public void testActionListCompleteGroup() throws Exception {
110 assertActionListRequestGroup("dev1", "Kuali Developers", "KUALI", "C", "ENROUTE");
111 passed();
112 }
113
114
115
116
117
118
119 public void testActionListCompletePerson() throws Exception {
120 assertActionListRequestPerson("fran", "C", "ENROUTE");
121 passed();
122 }
123
124 public void testActionListDisapproveGroup() throws Exception {
125 assertActionListRequestGroup("director", "ChickenRecipeMasters", "KR-WKFLW", "D", "ENROUTE");
126 passed();
127 }
128
129
130
131
132
133
134 public void testActionListDisapprovePerson() throws Exception {
135 assertActionListRequestPerson("fred", "D", "ENROUTE");
136 passed();
137 }
138
139 public void testActionListFyiGroup() throws Exception {
140 assertActionListRequestGroup("dev2", "Kuali Developers", "KUALI", "F", "FINAL");
141 passed();
142 }
143
144
145
146
147
148
149 public void testActionListFyiPerson() throws Exception {
150 assertActionListRequestPerson("eric", "F", "FINAL");
151 passed();
152 }
153 }