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.selenium.AutomatedFunctionalTestUtils;
19  import org.kuali.rice.testtools.selenium.WebDriverUtils;
20  
21  /**
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public abstract class ConfigComponentActionListAftBase extends ConfigComponentAftBase {
25  
26      /**
27       * ITUtil.PORTAL+"?channelTitle=Component&channelUrl="+WebDriverUtils.getBaseUrlString()+
28       * "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.component.ComponentBo&docFormKey=88888888&returnLocation="+
29       * +ITUtil.PORTAL_URL+ ITUtil.HIDE_RETURN_LINK;
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       * Creates an Action Request in a users action list.
64       *
65       * Initiates a new maintenance document (Component BO) with added adHoc request to create an action request
66       * in a users action list for the document
67       * @param user
68       * @param actionType
69       *
70       * @return documentID of the newly initiated document to which the created action request applies.
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       * tests the Acknowledge ActionRequest.
86       * Creates an Acknowledge request for a user. Then performs the Acknowledge action.
87       * @throws Exception
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      * tests the Approve ActionRequest.
101      * Creates an approve request for a user. Then performs the Approve action.
102      * @throws Exception
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      * tests the complete ActionRequest.
116      * Creates an complete request for a user. Then performs the Complete action.
117      * @throws Exception
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      * tests the  ActionRequest.
131      * Creates an approve request for a user. Then performs the Disapprove action.
132      * @throws Exception
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      * tests the FYI ActionRequest.
146      * Creates an FYI request for a user. Then performs the FYI action.
147      * @throws Exception
148      */
149     public void testActionListFyiPerson() throws Exception {
150         assertActionListRequestPerson("eric", "F", "FINAL");
151         passed();
152     }
153 }