mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
48 lines
2.0 KiB
Java
48 lines
2.0 KiB
Java
|
|
package org.alfresco.util.test.junitrules;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertNotNull;
|
|
|
|
import org.alfresco.service.cmr.repository.ContentService;
|
|
import org.alfresco.test_category.OwnJVMTestsCategory;
|
|
import org.junit.ClassRule;
|
|
import org.junit.Test;
|
|
import org.junit.experimental.categories.Category;
|
|
|
|
/**
|
|
* Test class for {@link ApplicationContextInit}.
|
|
*
|
|
* @author Neil Mc Erlean
|
|
* @since Odin
|
|
*/
|
|
@Category(OwnJVMTestsCategory.class)
|
|
public class ApplicationContextInitTest
|
|
{
|
|
// Some dummy contexts with test beans in them.
|
|
public static final String[] dummySpringContexts = new String[] {"classpath:org/alfresco/util/test/junitrules/dummy1-context.xml",
|
|
"classpath:org/alfresco/util/test/junitrules/dummy2-context.xml"};
|
|
|
|
// Rule to initialise the default Alfresco spring configuration
|
|
@ClassRule public static ApplicationContextInit APP_CONTEXT_INIT = ApplicationContextInit.createStandardContextWithOverrides(dummySpringContexts);
|
|
|
|
@Test public void ensureSpringContextWasInitedWithOverrides() throws Exception
|
|
{
|
|
// Bean from the standard Alfresco context
|
|
assertNotNull("Spring context did not contain expected bean.",
|
|
APP_CONTEXT_INIT.getApplicationContext().getBean("contentService", ContentService.class));
|
|
|
|
// Bean from the first override context
|
|
assertEquals("Value from dummy1-context.xml",
|
|
APP_CONTEXT_INIT.getApplicationContext().getBean("testBean1", String.class));
|
|
|
|
// Bean from the second override context
|
|
assertEquals("Value from dummy2-context.xml",
|
|
APP_CONTEXT_INIT.getApplicationContext().getBean("testBean2", String.class));
|
|
|
|
// Bean overridden in second context
|
|
assertEquals("Value from dummy2-context.xml",
|
|
APP_CONTEXT_INIT.getApplicationContext().getBean("testBean1and2", String.class));
|
|
}
|
|
}
|