/* * Copyright 1999-2015 dangdang.com. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ package com.dangdang.ddframe.job.event; import com.dangdang.ddframe.job.event.type.JobExecutionEvent; import org.junit.Test; import static org.hamcrest.CoreMatchers.startsWith; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; public final class JobExecutionEventTest { @Test public void assertNewJobExecutionEvent() { JobExecutionEvent actual = new JobExecutionEvent("fake_task_id", "test_job", JobExecutionEvent.ExecutionSource.NORMAL_TRIGGER, 0); assertThat(actual.getJobName(), is("test_job")); assertThat(actual.getSource(), is(JobExecutionEvent.ExecutionSource.NORMAL_TRIGGER)); assertThat(actual.getShardingItem(), is(0)); assertNotNull(actual.getHostname()); assertNotNull(actual.getStartTime()); assertNull(actual.getCompleteTime()); assertFalse(actual.isSuccess()); assertThat(actual.getFailureCause(), is("")); } @Test public void assertExecutionSuccess() { JobExecutionEvent startEvent = new JobExecutionEvent("fake_task_id", "test_job", JobExecutionEvent.ExecutionSource.NORMAL_TRIGGER, 0); JobExecutionEvent successEvent = startEvent.executionSuccess(); assertNotNull(successEvent.getCompleteTime()); assertTrue(successEvent.isSuccess()); } @Test public void assertExecutionFailure() { JobExecutionEvent startEvent = new JobExecutionEvent("fake_task_id", "test_job", JobExecutionEvent.ExecutionSource.NORMAL_TRIGGER, 0); JobExecutionEvent failureEvent = startEvent.executionFailure(new RuntimeException("failure")); assertNotNull(failureEvent.getCompleteTime()); assertFalse(failureEvent.isSuccess()); assertThat(failureEvent.getFailureCause(), startsWith("java.lang.RuntimeException: failure")); } }