Search in sources :

Example 11 with RunOnceSchedulableJob

use of org.motechproject.scheduler.contract.RunOnceSchedulableJob in project motech by motech.

the class TestEventListener method shouldNotScheduleRunOnceJobInThePast.

@Test(expected = MotechSchedulerException.class)
public void shouldNotScheduleRunOnceJobInThePast() throws SchedulerException {
    try {
        fakeNow(newDateTime(2020, 7, 15, 10, 0, 0));
        Map<String, Object> params = new HashMap<>();
        params.put(MotechSchedulerService.JOB_ID_KEY, "job_id");
        schedulerService.scheduleRunOnceJob(new RunOnceSchedulableJob(new MotechEvent("test_event", params), newDateTime(2020, 6, 15, 12, 0, 0)));
    } finally {
        stopFakingTime();
    }
}
Also used : HashMap(java.util.HashMap) MotechEvent(org.motechproject.event.MotechEvent) RunOnceSchedulableJob(org.motechproject.scheduler.contract.RunOnceSchedulableJob) Test(org.junit.Test)

Example 12 with RunOnceSchedulableJob

use of org.motechproject.scheduler.contract.RunOnceSchedulableJob in project motech by motech.

the class MotechSchedulerDatabaseServiceImplBundleIT method shouldGetScheduledJobsBasicInfo.

@Test
public void shouldGetScheduledJobsBasicInfo() throws SchedulerException, SQLException {
    try {
        fakeNow(newDateTime(CURRENT_YEAR + 6, 7, 15, 10, 0, 0));
        Map<String, Object> params = new HashMap<>();
        params.put(MotechSchedulerService.JOB_ID_KEY, "job_id");
        schedulerService.scheduleJob(new CronSchedulableJob(new MotechEvent("test_event_2", params), "0 0 12 * * ?"));
        schedulerService.scheduleRunOnceJob(new RunOnceSchedulableJob(new MotechEvent("test_event_2", params), newDateTime(CURRENT_YEAR + 6, 7, 15, 12, 0, 0)));
        schedulerService.scheduleRepeatingJob(new RepeatingSchedulableJob(new MotechEvent("test_event_2", params), DateTimeConstants.SECONDS_PER_DAY, newDateTime(CURRENT_YEAR + 6, 7, 15, 12, 0, 0), newDateTime(CURRENT_YEAR + 6, 7, 18, 12, 0, 0), false));
        schedulerService.scheduleRepeatingPeriodJob(new RepeatingPeriodSchedulableJob(new MotechEvent("test_event_2", params), newDateTime(CURRENT_YEAR + 6, 7, 15, 12, 0, 0), newDateTime(CURRENT_YEAR + 6, 7, 18, 12, 0, 0), new Period(4, 0, 0, 0), false));
        for (String groupName : scheduler.getJobGroupNames()) {
            for (JobKey jobKey : scheduler.getJobKeys(GroupMatcher.jobGroupEquals(groupName))) {
                if (jobKey.getName().equals("test_event_2-job_id")) {
                    scheduler.pauseJob(jobKey);
                }
            }
        }
        List<JobBasicInfo> expectedJobBasicInfos = new ArrayList<>();
        expectedJobBasicInfos.add(new JobBasicInfo(JobBasicInfo.ACTIVITY_NOTSTARTED, JobBasicInfo.STATUS_PAUSED, "test_event_2-job_id", DEFAULT_GROUP, format("%s-07-15 10:00:00", CURRENT_YEAR + 6), format("%s-07-15 12:00:00", CURRENT_YEAR + 6), "-", JobBasicInfo.JOBTYPE_CRON, "", false));
        expectedJobBasicInfos.add(new JobBasicInfo(JobBasicInfo.ACTIVITY_NOTSTARTED, JobBasicInfo.STATUS_OK, "test_event_2-job_id-runonce", DEFAULT_GROUP, format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-15 12:00:00", CURRENT_YEAR + 6), JobBasicInfo.JOBTYPE_RUNONCE, "", false));
        expectedJobBasicInfos.add(new JobBasicInfo(JobBasicInfo.ACTIVITY_NOTSTARTED, JobBasicInfo.STATUS_OK, "test_event_2-job_id-repeat", DEFAULT_GROUP, format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-18 12:00:00", CURRENT_YEAR + 6), JobBasicInfo.JOBTYPE_REPEATING, "", false));
        expectedJobBasicInfos.add(new JobBasicInfo(JobBasicInfo.ACTIVITY_NOTSTARTED, JobBasicInfo.STATUS_OK, "test_event_2-job_id-period", DEFAULT_GROUP, format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-15 12:00:00", CURRENT_YEAR + 6), format("%s-07-18 12:00:00", CURRENT_YEAR + 6), JobBasicInfo.JOBTYPE_PERIOD, "", false));
        List<JobBasicInfo> jobBasicInfos;
        JobsSearchSettings jobsSearchSettings = getGridSettings(0, 10, "name", "asc");
        jobBasicInfos = databaseService.getScheduledJobsBasicInfo(jobsSearchSettings);
        int testJobsCount = 0;
        for (JobBasicInfo job : jobBasicInfos) {
            for (JobBasicInfo expectedJob : expectedJobBasicInfos) {
                if (job.getName().equals(expectedJob.getName())) {
                    testJobsCount += 1;
                    assertEquals(expectedJob.getActivity(), job.getActivity());
                    assertEquals(expectedJob.getStatus(), job.getStatus());
                    assertEquals(expectedJob.getStartDate(), job.getStartDate());
                    assertEquals(expectedJob.getNextFireDate(), job.getNextFireDate());
                }
            }
        }
        assertEquals(4, testJobsCount);
    } finally {
        stopFakingTime();
    }
}
Also used : RepeatingSchedulableJob(org.motechproject.scheduler.contract.RepeatingSchedulableJob) CronSchedulableJob(org.motechproject.scheduler.contract.CronSchedulableJob) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) Period(org.joda.time.Period) JobsSearchSettings(org.motechproject.scheduler.contract.JobsSearchSettings) RunOnceSchedulableJob(org.motechproject.scheduler.contract.RunOnceSchedulableJob) JobKey(org.quartz.JobKey) RepeatingPeriodSchedulableJob(org.motechproject.scheduler.contract.RepeatingPeriodSchedulableJob) JobBasicInfo(org.motechproject.scheduler.contract.JobBasicInfo) MotechEvent(org.motechproject.event.MotechEvent) Test(org.junit.Test)

Example 13 with RunOnceSchedulableJob

use of org.motechproject.scheduler.contract.RunOnceSchedulableJob in project motech by motech.

the class SchedulableJobValidatorTest method shouldThrowIllegalArgumentExceptionIfStartDatesNullInRunOnceSchedulableJob.

@Test(expected = IllegalArgumentException.class)
public void shouldThrowIllegalArgumentExceptionIfStartDatesNullInRunOnceSchedulableJob() {
    try {
        fakeNow(newDateTime(2020, 7, 15, 10, 0, 0));
        RunOnceSchedulableJob job = new RunOnceSchedulableJob(motechEvent, null, false);
        SchedulableJobValidator.validateRunOnceSchedulableJob(job);
    } finally {
        stopFakingTime();
    }
}
Also used : RunOnceSchedulableJob(org.motechproject.scheduler.contract.RunOnceSchedulableJob) Test(org.junit.Test)

Example 14 with RunOnceSchedulableJob

use of org.motechproject.scheduler.contract.RunOnceSchedulableJob in project motech by motech.

the class SchedulableJobValidatorTest method shouldValidateRunOnceJob.

@Test
public void shouldValidateRunOnceJob() {
    try {
        fakeNow(newDateTime(2020, 7, 15, 10, 0, 0));
        RunOnceSchedulableJob job = new RunOnceSchedulableJob(motechEvent, DateUtil.now().plusHours(1), false);
        SchedulableJobValidator.validateRunOnceSchedulableJob(job);
    } finally {
        stopFakingTime();
    }
}
Also used : RunOnceSchedulableJob(org.motechproject.scheduler.contract.RunOnceSchedulableJob) Test(org.junit.Test)

Example 15 with RunOnceSchedulableJob

use of org.motechproject.scheduler.contract.RunOnceSchedulableJob in project motech by motech.

the class SchedulerChannelProviderBundleIT method setUp.

@Before
public void setUp() {
    if (channelProvider == null) {
        channelProvider = (SchedulerChannelProvider) bundleContext.getService(bundleContext.getServiceReference("org.motechproject.tasks.service.DynamicChannelProvider"));
    }
    Map<String, Object> params = new HashMap<>();
    params.put(MotechSchedulerService.JOB_ID_KEY, "job_id");
    schedulerService.scheduleJob(new CronSchedulableJob(new MotechEvent(TEST_EVENT, params), "0 0 12 * * ?"));
    schedulerService.scheduleRunOnceJob(new RunOnceSchedulableJob(new MotechEvent(TEST_EVENT, params), DateTime.now().plusDays(1)));
    schedulerService.scheduleRepeatingJob(new RepeatingSchedulableJob(new MotechEvent(TEST_EVENT, params), DateTimeConstants.SECONDS_PER_DAY, DateTime.now().plusHours(1), DateTime.now().plusHours(3), false));
}
Also used : RepeatingSchedulableJob(org.motechproject.scheduler.contract.RepeatingSchedulableJob) CronSchedulableJob(org.motechproject.scheduler.contract.CronSchedulableJob) HashMap(java.util.HashMap) MotechEvent(org.motechproject.event.MotechEvent) RunOnceSchedulableJob(org.motechproject.scheduler.contract.RunOnceSchedulableJob) Before(org.junit.Before)

Aggregations

RunOnceSchedulableJob (org.motechproject.scheduler.contract.RunOnceSchedulableJob)15 Test (org.junit.Test)11 MotechEvent (org.motechproject.event.MotechEvent)10 HashMap (java.util.HashMap)7 CronSchedulableJob (org.motechproject.scheduler.contract.CronSchedulableJob)4 RepeatingSchedulableJob (org.motechproject.scheduler.contract.RepeatingSchedulableJob)4 DateTime (org.joda.time.DateTime)3 JobBasicInfo (org.motechproject.scheduler.contract.JobBasicInfo)3 JobsSearchSettings (org.motechproject.scheduler.contract.JobsSearchSettings)3 ArrayList (java.util.ArrayList)2 DateUtil.newDateTime (org.motechproject.commons.date.util.DateUtil.newDateTime)2 Date (java.util.Date)1 Period (org.joda.time.Period)1 Before (org.junit.Before)1 Time (org.motechproject.commons.date.model.Time)1 EventListener (org.motechproject.event.listener.EventListener)1 MotechListener (org.motechproject.event.listener.annotations.MotechListener)1 DayOfWeekSchedulableJob (org.motechproject.scheduler.contract.DayOfWeekSchedulableJob)1 JobDetailedInfo (org.motechproject.scheduler.contract.JobDetailedInfo)1 RepeatingPeriodSchedulableJob (org.motechproject.scheduler.contract.RepeatingPeriodSchedulableJob)1