001    /**
002     * Copyright 2004-2012 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.hr.time.timesheet.web;
017    
018    import java.sql.Date;
019    import java.util.*;
020    
021    import org.joda.time.DateTime;
022    import org.json.simple.JSONArray;
023    import org.json.simple.JSONObject;
024    import org.json.simple.JSONValue;
025    import org.junit.Assert;
026    import org.junit.Test;
027    import org.kuali.hr.time.assignment.Assignment;
028    import org.kuali.hr.time.calendar.CalendarEntries;
029    import org.kuali.hr.time.detail.web.TimeDetailActionFormBase;
030    import org.kuali.hr.time.earncode.EarnCode;
031    import org.kuali.hr.time.service.base.TkServiceLocator;
032    import org.kuali.hr.time.test.HtmlUnitUtil;
033    import org.kuali.hr.time.test.TkTestConstants;
034    import org.kuali.hr.time.test.TkTestUtils;
035    import org.kuali.hr.time.timesheet.TimesheetDocument;
036    import org.kuali.hr.time.util.*;
037    import org.kuali.hr.time.web.TkLoginFilter;
038    
039    import com.gargoylesoftware.htmlunit.html.HtmlElement;
040    import com.gargoylesoftware.htmlunit.html.HtmlForm;
041    import com.gargoylesoftware.htmlunit.html.HtmlPage;
042    import org.kuali.hr.util.filter.TestAutoLoginFilter;
043    
044    public class TimesheetWorkflowIntegrationTest extends TimesheetWebTestBase {
045    
046        public static final String USER_PRINCIPAL_ID = "admin";
047            private Date JAN_AS_OF_DATE = new Date((new DateTime(2010, 1, 1, 0, 0, 0, 0, TKUtils.getSystemDateTimeZone())).getMillis());
048    
049    
050        /**
051         * @throws Exception
052         */
053        public void setUp() throws Exception {
054            super.setUp();
055            // Data is loaded as part of database loading lifecycle
056            // See: tk-test-data.sql
057            // See: TimesheetWorkflowIntegrationTest.sql
058            // See: TkTestCase.java
059            //
060        }
061    
062        public void tearDown() throws Exception {
063            super.tearDown();
064        }
065    
066        @Test
067        /**
068         * - create timesheet
069         * - add two 8 hour time blocks
070         * - submit timesheet for routing
071         * - ## login as approver
072         * - look for approval button
073         * - approve timeblock
074         * - verify approval button gone
075         * - ## login as original user
076         * - verify submit for routing button gone
077         */
078        public void testTimesheetSubmissionIntegration() throws Exception {
079            Date asOfDate = new Date((new DateTime(2011, 3, 1, 12, 0, 0, 0, TKUtils.getSystemDateTimeZone())).getMillis());
080            CalendarEntries pcd = TkServiceLocator.getCalendarService().getCurrentCalendarDates(USER_PRINCIPAL_ID, asOfDate);
081            Assert.assertNotNull("No PayCalendarDates", pcd);
082            TimesheetDocument tdoc = TkServiceLocator.getTimesheetService().openTimesheetDocument(USER_PRINCIPAL_ID, pcd);
083            String tdocId = tdoc.getDocumentId();
084            HtmlPage page = loginAndGetTimeDetailsHtmlPage("admin", tdocId, true);
085    
086            // 1. Obtain User Data
087            List<Assignment> assignments = TkServiceLocator.getAssignmentService().getAssignments(TKContext.getPrincipalId(), JAN_AS_OF_DATE);
088            Assignment assignment = assignments.get(0);
089    
090            List<EarnCode> earnCodes = TkServiceLocator.getEarnCodeService().getEarnCodes(assignment, JAN_AS_OF_DATE);
091            EarnCode earnCode = earnCodes.get(0);
092    
093            // 2. Set Timeblock Start and End time
094            // 3/02/2011 - 8:00a to 4:00pm
095            DateTime start = new DateTime(2011, 3, 2, 8, 0, 0, 0, TKUtils.getSystemDateTimeZone());
096            DateTime end = new DateTime(2011, 3, 3, 16, 0, 0, 0, TKUtils.getSystemDateTimeZone());
097    
098            HtmlForm form = page.getFormByName("TimeDetailActionForm");
099            Assert.assertNotNull(form);
100    
101            // Build an action form - we're using it as a POJO, it ties into the
102            // existing TK validation setup
103            TimeDetailActionFormBase tdaf = TimeDetailTestUtils.buildDetailActionForm(tdoc, assignment, earnCode, start, end, null, true, null, true);
104            List<String> errors = TimeDetailTestUtils.setTimeBlockFormDetails(form, tdaf);
105            // Check for errors
106            Assert.assertEquals("There should be no errors in this time detail submission", 0, errors.size());
107    
108            page = TimeDetailTestUtils.submitTimeDetails(TimesheetWebTestBase.getTimesheetDocumentUrl(tdocId), tdaf);
109            Assert.assertNotNull(page);
110            //HtmlUnitUtil.createTempFile(page, "TimeBlockPresent");
111    
112            // Verify block present on rendered page.
113            String pageAsText = page.asText();
114    
115            // JSON
116            //
117            //
118            // Grab the timeblock data from the text area. We can check specifics there
119            // to be more fine grained in our validation.
120            String dataText = page.getElementById("timeBlockString").getFirstChild().getNodeValue();
121            JSONArray jsonData = (JSONArray)JSONValue.parse(dataText);
122            final JSONObject jsonDataObject = (JSONObject) jsonData.get(0);
123            Assert.assertTrue("TimeBlock Data Missing.", checkJSONValues(new JSONObject() {{ put("outer", jsonDataObject); }},
124                    new ArrayList<Map<String, Object>>() {{
125                        add(new HashMap<String, Object>() {{
126                            put("earnCode", "RGN");
127                            put("hours", "8.0");
128                            put("amount", null);
129                        }});
130                    }},
131                    new HashMap<String, Object>() {{
132                        put("earnCode", "RGN");
133                        put("startNoTz", "2011-03-02T08:00:00");
134                        put("endNoTz", "2011-03-02T16:00:00");
135                        put("title", "SDR1 Work Area");
136                        put("assignment", "30_30_30");
137                    }}
138            ));
139    
140            // Check the Display Rendered Text for Time Block, Quick Check
141            Assert.assertTrue("TimeBlock not Present.", pageAsText.contains("08:00 AM - 04:00 PM"));
142            Assert.assertTrue("TimeBlock not Present.", pageAsText.contains("RGN - 8.00 hours"));
143    
144            //
145            // Route Timesheet
146            //
147            // Routing is initiated via javascript, we need to extract the routing
148            // action from the button element to perform this action.
149            HtmlElement routeButton = page.getElementById("ts-route-button");
150            String routeHref = TkTestUtils.getOnClickHref(routeButton);
151            // The 'only' way to do the button click.
152            page = HtmlUnitUtil.gotoPageAndLogin(TkTestConstants.BASE_URL + "/" + routeHref);
153            //HtmlUnitUtil.createTempFile(page, "RouteClicked");
154            pageAsText = page.asText();
155            // Verify Route Status via UI
156            Assert.assertTrue("Wrong Document Loaded.", pageAsText.contains(tdocId));
157            Assert.assertTrue("Document not routed.", pageAsText.contains("Enroute"));
158            routeButton = page.getElementById("ts-route-button");
159            Assert.assertNull("Route button should not be present.", routeButton);
160            HtmlElement approveButton = page.getElementById("ts-approve-button");
161            Assert.assertNull("Approval button should not be present.", approveButton);
162    
163            //
164            // Login as Approver, who is not 'admin'
165            page = TimesheetWebTestBase.loginAndGetTimeDetailsHtmlPage("eric", tdocId, true);
166            //HtmlUnitUtil.createTempFile(page, "2ndLogin");
167            pageAsText = page.asText();
168            Assert.assertTrue("Document not routed.", pageAsText.contains("Enroute"));
169            approveButton = page.getElementById("ts-approve-button");
170            Assert.assertNotNull("No approval button present.", approveButton);
171    
172            // Click Approve
173            // And Verify
174            //
175            routeHref = TkTestUtils.getOnClickHref(approveButton);
176            TestAutoLoginFilter.OVERRIDE_ID = "eric";
177            page = HtmlUnitUtil.gotoPageAndLogin(TkTestConstants.BASE_URL + "/" + routeHref);
178            TestAutoLoginFilter.OVERRIDE_ID = "";
179            //HtmlUnitUtil.createTempFile(page, "ApproveClicked");
180            pageAsText = page.asText();
181            Assert.assertTrue("Wrong Document Loaded.", pageAsText.contains(tdocId));
182            Assert.assertTrue("Login info not present.", pageAsText.contains("Employee Id:"));
183            Assert.assertTrue("Login info not present.", pageAsText.contains("eric, eric"));
184            Assert.assertTrue("Document not routed.", pageAsText.contains("Final"));
185            approveButton = page.getElementById("ts-approve-button");
186            Assert.assertNull("Approval button should not be present.", approveButton);
187        }
188    
189    }