001/**
002 * Copyright 2004-2014 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 */
016package org.kuali.hr.time.detail.web;
017
018import java.math.BigDecimal;
019import java.util.ArrayList;
020import java.util.List;
021
022import org.junit.Assert;
023import org.junit.Test;
024import org.kuali.hr.KPMEWebTestCase;
025import org.kuali.hr.util.HtmlUnitUtil;
026import org.kuali.kpme.core.FunctionalTest;
027import org.kuali.kpme.core.api.calendar.entry.CalendarEntry;
028import org.kuali.kpme.core.calendar.entry.CalendarEntryBo;
029import org.kuali.kpme.core.service.HrServiceLocator;
030import org.kuali.kpme.core.util.TKUtils;
031import org.kuali.kpme.tklm.api.time.timeblock.TimeBlock;
032import org.kuali.kpme.tklm.time.rules.graceperiod.GracePeriodRule;
033import org.kuali.kpme.tklm.time.service.TkServiceLocator;
034import org.kuali.kpme.tklm.time.timeblock.TimeBlockBo;
035import org.kuali.kpme.tklm.time.timehourdetail.TimeHourDetailBo;
036import org.kuali.kpme.tklm.time.timesheet.TimesheetDocument;
037import org.kuali.kpme.tklm.utils.TkTestConstants;
038import org.kuali.rice.krad.service.KRADServiceLocator;
039
040import com.gargoylesoftware.htmlunit.html.HtmlPage;
041import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
042
043@FunctionalTest
044public class ActualTimeInquiryWebTest extends KPMEWebTestCase {
045        private String documentId;
046        private TimeBlockBo timeBlock;
047
048    @Override
049    public void setUp() throws Exception {
050        super.setUp();
051
052        CalendarEntry calendarEntry = HrServiceLocator.getCalendarEntryService().getCalendarEntry("5000");
053        TimesheetDocument timesheetDocument = TkServiceLocator.getTimesheetService().openTimesheetDocument("admin", calendarEntry);
054        documentId = timesheetDocument.getDocumentId();
055    }
056
057    @Test
058        public void testActualTimeInquiry() throws Exception {
059                String baseUrl = TkTestConstants.Urls.TIME_DETAIL_URL;
060        HtmlPage page = HtmlUnitUtil.gotoPageAndLogin(getWebClient(), baseUrl);
061        Assert.assertNotNull(page);
062        Assert.assertTrue("Clock Page contains Actual Time Inquiry Button", page.asText().contains("Actual Time Inquiry"));
063                
064                String atiUrl = baseUrl + "?methodToCall=actualTimeInquiry";
065                HtmlPage testPage1 = HtmlUnitUtil.gotoPageAndLogin(getWebClient(), atiUrl);
066                Assert.assertNotNull(testPage1);
067                Assert.assertTrue("Actual Time Inquiry page contains close Button", testPage1.asText().contains("Close"));
068                Assert.assertTrue("Actual Time Inquiry page contains No value found message", testPage1.asText().contains("No values match this search."));
069        
070        this.createTB();
071        this.changeGracePeriodRule();
072        atiUrl = baseUrl + "?methodToCall=actualTimeInquiry&documentId=" + documentId;
073        HtmlPage testPage2 = HtmlUnitUtil.gotoPageAndLogin(getWebClient(), atiUrl);
074        Assert.assertTrue("Actual Time Inquiry page contains One item retrived message", testPage2.asText().contains("One item retrieved."));
075        }
076
077        public void createTB() {
078                timeBlock = new TimeBlockBo();
079                timeBlock.setUserPrincipalId("admin");
080                timeBlock.setPrincipalId("admin");
081        timeBlock.setGroupKeyCode("IU-BL");
082                timeBlock.setJobNumber(2L);
083                timeBlock.setWorkArea(1234L);
084                timeBlock.setTask(1L);
085                timeBlock.setEarnCode("RGN");
086                timeBlock.setBeginTimestamp(TKUtils.getCurrentTimestamp());
087                timeBlock.setEndTimestamp(TKUtils.getCurrentTimestamp());
088                TimeHourDetailBo timeHourDetail = new TimeHourDetailBo();
089                timeHourDetail.setEarnCode("RGN");
090                timeHourDetail.setHours(new BigDecimal(2.0));
091                timeBlock.getTimeHourDetails().add(timeHourDetail);
092                timeBlock.setHours(new BigDecimal(2.0));
093                timeBlock.setClockLogCreated(Boolean.TRUE);
094                List<TimeBlock> tbList = new ArrayList<TimeBlock>();
095                timeBlock.setDocumentId(documentId);
096                tbList.add(TimeBlockBo.to(timeBlock));
097                TkServiceLocator.getTimeBlockService().saveTimeBlocks(tbList);
098
099                TimesheetDocument td = TkServiceLocator.getTimesheetService().getTimesheetDocument(documentId);
100                td.setTimeBlocks(tbList);
101        }
102        
103        public void changeGracePeriodRule() {
104                GracePeriodRule gracePeriodRule = TkServiceLocator.getGracePeriodService().getGracePeriodRule(timeBlock.getBeginDateTime().toLocalDate());
105                gracePeriodRule.setHourFactor(new BigDecimal("1"));
106                KRADServiceLocatorWeb.getLegacyDataAdapter().save(gracePeriodRule);
107        }
108
109}