/* * ProActive Parallel Suite(TM): * The Open Source library for parallel and distributed * Workflows & Scheduling, Orchestration, Cloud Automation * and Big Data Analysis on Enterprise Grids & Clouds. * * Copyright (c) 2007 - 2017 ActiveEon * Contact: contact@activeeon.com * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation: version 3 of * the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * If needed, contact us to obtain a release under GPL Version 2 or 3 * or a different license than the AGPL. */ package functionaltests.service; import static org.junit.Assert.assertEquals; import java.util.Map; import org.junit.Assert; import org.junit.Test; import org.ow2.proactive.scheduler.common.SchedulerEvent; import org.ow2.proactive.scheduler.common.job.JobId; import org.ow2.proactive.scheduler.common.job.TaskFlowJob; import org.ow2.proactive.scheduler.common.task.JavaTask; import org.ow2.proactive.scheduler.descriptor.EligibleTaskDescriptor; import org.ow2.proactive.scheduler.descriptor.JobDescriptor; import org.ow2.proactive.scheduler.task.internal.InternalTask; public class SchedulingServiceTest9 extends BaseServiceTest { private TaskFlowJob createTestJob() throws Exception { TaskFlowJob job = new TaskFlowJob(); job.setName(this.getClass().getSimpleName()); JavaTask task1 = new JavaTask(); task1.setName("javaTask1"); task1.setExecutableClassName("class"); job.addTask(task1); JavaTask task2 = new JavaTask(); task2.setName("javaTask2"); task2.setExecutableClassName("class"); job.addTask(task2); return job; } @Test public void testRestartOnNodeFailureAndJobCancel() throws Exception { service.submitJob(createJob(createTestJob())); listener.assertEvents(SchedulerEvent.JOB_SUBMITTED); JobDescriptor jobDesc; jobDesc = startTask(2); listener.assertEvents(SchedulerEvent.JOB_PENDING_TO_RUNNING, SchedulerEvent.JOB_UPDATED, SchedulerEvent.TASK_PENDING_TO_RUNNING, SchedulerEvent.TASK_PENDING_TO_RUNNING); InternalTask task = jobDesc.getInternal().getTask("javaTask1"); service.restartTaskOnNodeFailure(task); listener.assertEvents(SchedulerEvent.TASK_WAITING_FOR_RESTART); infrastructure.assertRequests(1); startTask(1); service.restartTaskOnNodeFailure(task); listener.assertEvents(SchedulerEvent.TASK_PENDING_TO_RUNNING, SchedulerEvent.TASK_RUNNING_TO_FINISHED, SchedulerEvent.TASK_RUNNING_TO_FINISHED, SchedulerEvent.JOB_RUNNING_TO_FINISHED, SchedulerEvent.JOB_UPDATED); infrastructure.assertRequests(2); } private JobDescriptor startTask(int expectedTasks) throws Exception { Map<JobId, JobDescriptor> jobsMap; JobDescriptor jobDesc; jobsMap = service.lockJobsToSchedule(); assertEquals(1, jobsMap.size()); jobDesc = jobsMap.values().iterator().next(); Assert.assertEquals(expectedTasks, jobDesc.getEligibleTasks().size()); for (EligibleTaskDescriptor taskDesc : jobDesc.getEligibleTasks()) { taskStarted(jobDesc, taskDesc); } service.unlockJobsToSchedule(jobsMap.values()); return jobDesc; } }