View Javadoc

1   /**
2    * Copyright 2004-2013 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 org.kuali.hr.time.timesheet.web;
17  
18  import java.sql.Date;
19  import java.util.*;
20  
21  import com.gargoylesoftware.htmlunit.html.*;
22  import org.joda.time.DateTime;
23  import org.json.simple.JSONArray;
24  import org.json.simple.JSONObject;
25  import org.json.simple.JSONValue;
26  import org.junit.Assert;
27  import org.junit.Test;
28  import org.kuali.hr.time.assignment.Assignment;
29  import org.kuali.hr.time.assignment.AssignmentDescriptionKey;
30  import org.kuali.hr.time.calendar.CalendarEntries;
31  import org.kuali.hr.time.detail.web.TimeDetailActionFormBase;
32  import org.kuali.hr.time.earncode.EarnCode;
33  import org.kuali.hr.time.service.base.TkServiceLocator;
34  import org.kuali.hr.time.test.HtmlUnitUtil;
35  import org.kuali.hr.time.test.TkTestConstants;
36  import org.kuali.hr.time.test.TkTestUtils;
37  import org.kuali.hr.time.timesheet.TimesheetDocument;
38  import org.kuali.hr.time.util.*;
39  import org.kuali.hr.time.web.TkLoginFilter;
40  
41  import org.kuali.hr.util.filter.TestAutoLoginFilter;
42  import org.kuali.rice.kew.api.document.DocumentStatus;
43  
44  public class TimesheetWorkflowIntegrationTest extends TimesheetWebTestBase {
45  
46      public static final String USER_PRINCIPAL_ID = "admin";
47  	private Date JAN_AS_OF_DATE = new Date((new DateTime(2010, 1, 1, 0, 0, 0, 0, TKUtils.getSystemDateTimeZone())).getMillis());
48  
49  
50      /**
51       * @throws Exception
52       */
53      public void setUp() throws Exception {
54          super.setUp();
55          // Data is loaded as part of database loading lifecycle
56          // See: tk-test-data.sql
57          // See: TimesheetWorkflowIntegrationTest.sql
58          // See: TkTestCase.java
59          //
60      }
61  
62      public void tearDown() throws Exception {
63          super.tearDown();
64      }
65  
66      @Test
67      /**
68       * - create timesheet
69       * - add two 8 hour time blocks
70       * - submit timesheet for routing
71       * - ## login as approver
72       * - look for approval button
73       * - approve timeblock
74       * - verify approval button gone
75       * - ## login as original user
76       * - verify submit for routing button gone
77       */
78      public void testTimesheetSubmissionIntegration() throws Exception {
79          Date asOfDate = new Date((new DateTime(2011, 3, 1, 12, 0, 0, 0, TKUtils.getSystemDateTimeZone())).getMillis());
80          CalendarEntries pcd = TkServiceLocator.getCalendarService().getCurrentCalendarDates(USER_PRINCIPAL_ID, asOfDate);
81          Assert.assertNotNull("No PayCalendarDates", pcd);
82          TimesheetDocument tdoc = TkServiceLocator.getTimesheetService().openTimesheetDocument(USER_PRINCIPAL_ID, pcd);
83          String tdocId = tdoc.getDocumentId();
84          HtmlPage page = loginAndGetTimeDetailsHtmlPage(getWebClient(), "admin", tdocId, true);
85  
86          // 1. Obtain User Data
87          Assignment assignment = TkServiceLocator.getAssignmentService().getAssignment(TKContext.getPrincipalId(), new AssignmentDescriptionKey("30_30_30"), JAN_AS_OF_DATE);
88          EarnCode earnCode = TkServiceLocator.getEarnCodeService().getEarnCode("RGN", JAN_AS_OF_DATE);
89  
90          // 2. Set Timeblock Start and End time
91          // 3/02/2011 - 8:00a to 4:00pm
92          DateTime start = new DateTime(2011, 3, 2, 8, 0, 0, 0, TKUtils.getSystemDateTimeZone());
93          DateTime end = new DateTime(2011, 3, 3, 16, 0, 0, 0, TKUtils.getSystemDateTimeZone());
94  
95          HtmlForm form = page.getFormByName("TimeDetailActionForm");
96          Assert.assertNotNull(form);
97  
98          // Build an action form - we're using it as a POJO, it ties into the
99          // existing TK validation setup
100         TimeDetailActionFormBase tdaf = TimeDetailTestUtils.buildDetailActionForm(tdoc, assignment, earnCode, start, end, null, true, null, true);
101         List<String> errors = TimeDetailTestUtils.setTimeBlockFormDetails(form, tdaf);
102         // Check for errors
103         Assert.assertEquals("There should be no errors in this time detail submission", 0, errors.size());
104 
105         page = TimeDetailTestUtils.submitTimeDetails(getWebClient(), TimesheetWebTestBase.getTimesheetDocumentUrl(tdocId), tdaf);
106         Assert.assertNotNull(page);
107         HtmlUnitUtil.createTempFile(page, "TimeBlockPresent");
108 
109         // Verify block present on rendered page.
110         String pageAsText = page.asText();
111 
112         // JSON
113         //
114         //
115         // Grab the timeblock data from the text area. We can check specifics there
116         // to be more fine grained in our validation.
117         String dataText = page.getElementById("timeBlockString").getFirstChild().getNodeValue();
118         JSONArray jsonData = (JSONArray)JSONValue.parse(dataText);
119         final JSONObject jsonDataObject = (JSONObject) jsonData.get(0);
120         Assert.assertTrue("TimeBlock Data Missing.", checkJSONValues(new JSONObject() {{ put("outer", jsonDataObject); }},
121                 new ArrayList<Map<String, Object>>() {{
122                     add(new HashMap<String, Object>() {{
123                         put("earnCode", "RGN");
124                         put("hours", "8.0");
125                         put("amount", null);
126                     }});
127                 }},
128                 new HashMap<String, Object>() {{
129                     put("earnCode", "RGN");
130                     put("startNoTz", "2011-03-02T08:00:00");
131                     put("endNoTz", "2011-03-02T16:00:00");
132                     put("title", "SDR1 Work Area");
133                     put("assignment", "30_30_30");
134                 }}
135         ));
136 
137         // Check the Display Rendered Text for Time Block, Quick Check
138         Assert.assertTrue("TimeBlock not Present.", pageAsText.contains("08:00 AM - 04:00 PM"));
139         Assert.assertTrue("TimeBlock not Present.", pageAsText.contains("RGN - 8.00 hours"));
140 
141         //
142         // Route Timesheet
143         //
144         // Routing is initiated via javascript, we need to extract the routing
145         // action from the button element to perform this action.
146         HtmlButtonInput routeButton = (HtmlButtonInput)page.getElementById("ts-route-button");
147         String routeHref = TkTestUtils.getOnClickHref(routeButton);
148         // The 'only' way to do the button click.
149         page = HtmlUnitUtil.gotoPageAndLogin(getWebClient(), TkTestConstants.BASE_URL + "/" + routeHref);
150         //HtmlUnitUtil.createTempFile(page, "RouteClicked");
151         pageAsText = page.asText();
152         // Verify Route Status via UI
153         Assert.assertTrue("Wrong Document Loaded.", pageAsText.contains(tdocId));
154         Assert.assertTrue("Document not routed.", pageAsText.contains(DocumentStatus.ENROUTE.getLabel()));
155         routeButton = (HtmlButtonInput)page.getElementById("ts-route-button");
156         Assert.assertNull("Route button should not be present.", routeButton);
157         HtmlButtonInput approveButton = (HtmlButtonInput)page.getElementById("ts-approve-button");
158         Assert.assertNull("Approval button should not be present.", approveButton);
159 
160         //
161         // Login as Approver, who is not 'admin'
162         page = TimesheetWebTestBase.loginAndGetTimeDetailsHtmlPage(getWebClient(), "eric", tdocId, true);
163         //HtmlUnitUtil.createTempFile(page, "2ndLogin");
164         pageAsText = page.asText();
165         Assert.assertTrue("Document not routed.", pageAsText.contains(DocumentStatus.ENROUTE.getLabel()));
166         approveButton = (HtmlButtonInput)page.getElementById("ts-approve-button");
167         Assert.assertNotNull("No approval button present.", approveButton);
168 
169         // Click Approve
170         // And Verify
171         //
172         routeHref = TkTestUtils.getOnClickHref(approveButton);
173         TestAutoLoginFilter.OVERRIDE_ID = "eric";
174         page = HtmlUnitUtil.gotoPageAndLogin(getWebClient(), TkTestConstants.BASE_URL + "/" + routeHref);
175         TestAutoLoginFilter.OVERRIDE_ID = "";
176         //HtmlUnitUtil.createTempFile(page, "ApproveClicked");
177         pageAsText = page.asText();
178         Assert.assertTrue("Wrong Document Loaded.", pageAsText.contains(tdocId));
179         Assert.assertTrue("Login info not present.", pageAsText.contains("Employee Id:"));
180         Assert.assertTrue("Login info not present.", pageAsText.contains("eric, eric"));
181         Assert.assertTrue("Document not routed.", pageAsText.contains(DocumentStatus.FINAL.getLabel()));
182         approveButton = (HtmlButtonInput)page.getElementById("ts-approve-button");
183         Assert.assertNull("Approval button should not be present.", approveButton);
184     }
185 
186 }