/* * 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.executor.handler; import com.dangdang.ddframe.job.executor.handler.impl.DefaultExecutorServiceHandler; import com.dangdang.ddframe.job.executor.handler.impl.DefaultJobExceptionHandler; import com.dangdang.ddframe.job.fixture.APIJsonConstants; import com.dangdang.ddframe.job.fixture.handler.IgnoreJobExceptionHandler; import org.junit.Test; import org.unitils.util.ReflectionUtils; import java.util.Map; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; public final class JobPropertiesTest { @Test public void assertPutInvalidKey() throws NoSuchFieldException { JobProperties actual = new JobProperties(); actual.put("invalid_key", ""); assertTrue(getMap(actual).isEmpty()); } @Test public void assertPutNullValue() throws NoSuchFieldException { JobProperties actual = new JobProperties(); actual.put(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER.getKey(), null); assertTrue(getMap(actual).isEmpty()); } @Test public void assertPutSuccess() throws NoSuchFieldException { JobProperties actual = new JobProperties(); actual.put(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER.getKey(), DefaultJobExceptionHandler.class.getCanonicalName()); assertThat(getMap(actual).size(), is(1)); } private Map getMap(final JobProperties jobProperties) throws NoSuchFieldException { return (Map) ReflectionUtils.getFieldValue(jobProperties, JobProperties.class.getDeclaredField("map")); } @Test public void assertGetWhenValueIsEmpty() throws NoSuchFieldException { JobProperties actual = new JobProperties(); assertThat(actual.get(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER), is(DefaultJobExceptionHandler.class.getCanonicalName())); assertThat(actual.get(JobProperties.JobPropertiesEnum.EXECUTOR_SERVICE_HANDLER), is(DefaultExecutorServiceHandler.class.getCanonicalName())); } @Test public void assertGetWhenValueIsNotEmpty() throws NoSuchFieldException { JobProperties actual = new JobProperties(); actual.put(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER.getKey(), IgnoreJobExceptionHandler.class.getCanonicalName()); assertThat(actual.get(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER), is(IgnoreJobExceptionHandler.class.getCanonicalName())); } @Test public void assertJson() { assertThat(new JobProperties().json(), is(APIJsonConstants.getJobPropertiesJson(DefaultJobExceptionHandler.class.getCanonicalName()))); } @Test public void assertJobPropertiesEnumFromValidValue() { assertThat(JobProperties.JobPropertiesEnum.from(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER.getKey()), is(JobProperties.JobPropertiesEnum.JOB_EXCEPTION_HANDLER)); } @Test public void assertJobPropertiesEnumFromInvalidValue() { assertNull(JobProperties.JobPropertiesEnum.from("invalid")); } }