/* * 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.module.extension.internal.runtime.config; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.Matchers.sameInstance; import static org.junit.Assert.assertThat; import static org.mockito.Answers.RETURNS_DEEP_STUBS; import static org.mule.runtime.core.api.config.MuleProperties.OBJECT_TIME_SUPPLIER; import static org.mule.tck.MuleTestUtils.spyInjector; import org.mule.runtime.api.meta.model.ExtensionModel; import org.mule.runtime.api.meta.model.config.ConfigurationModel; import org.mule.runtime.core.api.Event; import org.mule.runtime.module.extension.internal.runtime.DefaultExecutionContext; import org.mule.tck.junit4.AbstractMuleContextTestCase; import org.mule.tck.size.SmallTest; import org.mule.tck.util.TestTimeSupplier; import org.hamcrest.CoreMatchers; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; @SmallTest @RunWith(MockitoJUnitRunner.class) public abstract class AbstractConfigurationProviderTestCase<T> extends AbstractMuleContextTestCase { protected static final String CONFIG_NAME = "config"; @Mock protected ExtensionModel extensionModel; @Mock(answer = RETURNS_DEEP_STUBS) protected ConfigurationModel configurationModel; @Mock(answer = RETURNS_DEEP_STUBS) protected DefaultExecutionContext operationContext; @Mock protected Event event; protected TestTimeSupplier timeSupplier = new TestTimeSupplier(System.currentTimeMillis()); protected LifecycleAwareConfigurationProvider provider; @Before public void before() throws Exception { muleContext.getRegistry().registerObject(OBJECT_TIME_SUPPLIER, timeSupplier); muleContext.getInjector().inject(provider); spyInjector(muleContext); } @Test public void getName() { assertThat(provider.getName(), is(CONFIG_NAME)); } @Test public void getConfigurationModel() { assertThat(provider.getConfigurationModel(), is(CoreMatchers.sameInstance(configurationModel))); } protected void assertSameInstancesResolved() throws Exception { final int count = 10; Object config = provider.get(event); for (int i = 1; i < count; i++) { assertThat(provider.get(event), is(sameInstance(config))); } } }