/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.processor.strategy; import static java.util.Arrays.asList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.not; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.startsWith; import static org.hamcrest.core.IsCollectionContaining.hasItem; import static org.mule.test.allure.AllureConstants.ProcessingStrategiesFeature.PROCESSING_STRATEGIES; import static org.mule.test.allure.AllureConstants.ProcessingStrategiesFeature.ProcessingStrategiesStory.DEFAULT; import org.mule.runtime.core.api.MuleContext; import org.mule.runtime.core.api.processor.strategy.ProcessingStrategy; import org.mule.runtime.core.processor.strategy.DefaultFlowProcessingStrategyFactory.DefaultFlowProcessingStrategy; import org.mule.runtime.core.transaction.TransactionCoordination; import org.mule.tck.testmodels.mule.TestTransaction; import ru.yandex.qatools.allure.annotations.Description; import ru.yandex.qatools.allure.annotations.Features; import ru.yandex.qatools.allure.annotations.Stories; @Features(PROCESSING_STRATEGIES) @Stories(DEFAULT) @Description("Default (used when no processing strategy is configured)") public class DefaultProcessingStrategyTestCase extends ProactorProcessingStrategyTestCase { public DefaultProcessingStrategyTestCase(Mode mode) { super(mode); } @Override protected ProcessingStrategy createProcessingStrategy(MuleContext muleContext, String schedulersNamePrefix) { return new DefaultFlowProcessingStrategy(() -> cpuLight, () -> blocking, () -> cpuIntensive); } @Override @Description("Unlike with the MultiReactorProcessingStrategy, the DefaultFlowProcessingStrategy does not fail if a transaction " + "is active, but rather executes these events synchonrously in the caller thread transparently.") public void tx() throws Exception { flow.setMessageProcessors(asList(cpuLightProcessor, cpuIntensiveProcessor, blockingProcessor)); flow.initialise(); flow.start(); TransactionCoordination.getInstance().bindTransaction(new TestTransaction(muleContext)); process(flow, testEvent()); assertThat(threads, hasSize(equalTo(1))); assertThat(threads, not(hasItem(startsWith(CPU_LIGHT)))); assertThat(threads, not(hasItem(startsWith(IO)))); assertThat(threads, not(hasItem(startsWith(CPU_INTENSIVE)))); assertThat(threads, not(hasItem(startsWith(CUSTOM)))); } }