/** * Copyright 2011-2017 Asakusa Framework Team. * * 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. */ package com.asakusafw.testdriver.inprocess; import java.text.MessageFormat; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.asakusafw.testdriver.TestDriverContext; import com.asakusafw.testdriver.core.TestingEnvironmentConfigurator; /** * Configures testing environment for in-process test execution. * @since 0.6.0 */ public class InProcessEnvironmentConfigurator extends TestingEnvironmentConfigurator { static final Logger LOG = LoggerFactory.getLogger(InProcessEnvironmentConfigurator.class); /** * The system property key of enabling this feature. */ public static final String KEY_FEATURE_ENABLE = KEY_ENABLE + ".inprocess"; //$NON-NLS-1$ /** * The default value of {@link #KEY_FEATURE_ENABLE}. */ public static final String DEFAULT_FEATURE_ENABLE = "true"; //$NON-NLS-1$ @Override protected void configure() { if (isEnabled() == false) { LOG.debug("In-process testing environment configurator is disabled."); //$NON-NLS-1$ return; } if (checkProperty(TestDriverContext.KEY_JOB_EXECUTOR_FACTORY) == false) { return; } LOG.info(Messages.getString("InProcessEnvironmentConfigurator.infoApply")); //$NON-NLS-1$ System.setProperty(TestDriverContext.KEY_JOB_EXECUTOR_FACTORY, InProcessJobExecutorFactory.class.getName()); } private boolean isEnabled() { String value = System.getProperty(KEY_FEATURE_ENABLE, DEFAULT_FEATURE_ENABLE); return value.equals("true"); //$NON-NLS-1$ } private boolean checkProperty(String key) { String value = System.getProperty(key); if (value != null) { LOG.warn(MessageFormat.format( Messages.getString("InProcessEnvironmentConfigurator.warnConflict"), //$NON-NLS-1$ key, value)); return false; } return true; } }