Example #1
0
        public void JobIsCompletedWithWarningIfThereIsAtLeastOneWarining()
        {
            var criteria = new PunchRoundTestCriteria()
            {
                StartDate = new DateTime(2017, 4, 10)
            };

            var data = new TimesheetReadCommandResult <List <ChangePunch> >()
            {
                Data = new List <ChangePunch> {
                    new ChangePunch {
                        Date = new DateTime(2017, 4, 16)
                    }
                },
                Warnings = new List <TimesheetValidationType> {
                    TimesheetValidationType.PunchEmptyDay
                }
            };

            CommandExecutor.Setup(w => w.Execute <TimesheetExtractOutputData, TimesheetReadCommandResult <List <ChangePunch> > >(It.IsAny <TimesheetExtractOutputData>())).Returns(data);

            var jobStatus = Job.Run(criteria);

            Assert.AreEqual(JobStatus.SuccessWithWarnings, jobStatus);
        }
Example #2
0
        public void JobIsCompletedWithWarningIfThereAreNoPunchDataToProcess()
        {
            var criteria = new PunchRoundTestCriteria()
            {
                StartDate = new DateTime(2017, 4, 10)
            };

            var data = new TimesheetReadCommandResult <List <ChangePunch> >()
            {
                Data = new List <ChangePunch>()
            };

            CommandExecutor.Setup(w => w.Execute <TimesheetExtractOutputData, TimesheetReadCommandResult <List <ChangePunch> > >(It.IsAny <TimesheetExtractOutputData>())).Returns(data);

            var jobStatus = Job.Run(criteria);

            Logger.Verify(m => m.Warn("There are no valid punches", It.IsAny <string>(), null));

            Assert.AreEqual(JobStatus.SuccessWithWarnings, jobStatus);
        }
Example #3
0
        public void JobFailsIfThereScheduleDataIsOutOfDateRangeToProcess()
        {
            var criteria = new PunchRoundTestCriteria()
            {
                StartDate = new DateTime(2017, 4, 10)
            };

            var scheduleDataResult = new TimesheetReadCommandResult <List <ChangeSchedule> >()
            {
                Data = new List <ChangeSchedule>()
                {
                    new ChangeSchedule {
                        StartDate = new DateTime(2016, 1, 1)
                    },
                    new ChangeSchedule {
                        EndDate = new DateTime(2018, 1, 1)
                    }
                }
            };

            CommandExecutor.Setup(w => w.Execute <TimesheetExtractOutputData, TimesheetReadCommandResult <List <ChangeSchedule> > >(It.IsAny <TimesheetExtractOutputData>())).Returns(scheduleDataResult);

            Assert.Throws <DateOutOfRangeValidationException>(() => Job.Run(criteria));
        }
Example #4
0
        protected void SetUp()
        {
            var schedules = new List <PersonSchedule>
            {
                new PersonSchedule()
            };

            CommandExecutor.Setup(w => w.Execute <List <PersonSchedule> >()).Returns(schedules);
            var wtkProfiles = new List <WtkProfile>
            {
                new WtkProfile
                {
                    PayRule = new PayRule()
                }
            };

            CommandExecutor.Setup(w => w.Execute <WtkProfileExtractOutputData, List <WtkProfile> >(It.IsAny <WtkProfileExtractOutputData>())).Returns(wtkProfiles);
            CommandExecutor.Setup(w => w.Execute <List <PunchRoundRule> >()).Returns(new List <PunchRoundRule>());
            CommandExecutor.Setup(w => w.Execute <List <BreakRule> >()).Returns(new List <BreakRule>());
            var timesheets = new List <Timesheet>()
            {
                new Timesheet
                {
                    TotaledSpans = new List <TotaledSpan>
                    {
                        new TotaledSpan
                        {
                            PersonNumber = "PersonNumber",
                            InPunch      = new PersonPunch(),
                            OutPunch     = new PersonPunch()
                        }
                    },
                    PayCodeEditList = new List <PersonPayCodeEdit>
                    {
                        new PersonPayCodeEdit
                        {
                            PersonNumber = "PersonNumber"
                        }
                    }
                }
            };

            CommandExecutor.Setup(w => w.Execute <List <Timesheet>, List <Timesheet> >(It.IsAny <List <Timesheet> >())).Returns(timesheets);

            var punchDataResult = new TimesheetReadCommandResult <List <ChangePunch> >()
            {
                Data = new List <ChangePunch>
                {
                    new ChangePunch {
                        Type = PunchType.InPunch, Date = new DateTime(2017, 4, 16)
                    }
                }
            };

            CommandExecutor.Setup(w => w.Execute <TimesheetExtractOutputData, TimesheetReadCommandResult <List <ChangePunch> > >(It.IsAny <TimesheetExtractOutputData>())).Returns(punchDataResult);

            var scheduleDataResult = new TimesheetReadCommandResult <List <ChangeSchedule> >()
            {
                Data = new List <ChangeSchedule>
                {
                    new ChangeSchedule {
                        StartDate = new DateTime(2017, 4, 16)
                    }
                }
            };

            CommandExecutor.Setup(w => w.Execute <TimesheetExtractOutputData, TimesheetReadCommandResult <List <ChangeSchedule> > >(It.IsAny <TimesheetExtractOutputData>())).Returns(scheduleDataResult);
        }