package org.rosenvold.spring.convention; /* * Copyright 2011 the original author or authors. * * 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. */ import org.junit.Ignore; import org.junit.Test; import org.rosenvold.spring.convention.candidateevaluators.DefaultCandidateEvaluator; import org.rosenvold.spring.convention.testclasses.TestBeanClassResolver; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.support.GenericApplicationContext; import org.springframework.stereotype.Service; import static junit.framework.Assert.*; /** * @author Kristian Rosenvold */ public class ConventionBeanFactoryTest { ConfigurableApplicationContext parent = new GenericApplicationContext(); CandidateEvaluator candidateEvaluator = new DefaultCandidateEvaluator(); private final ConventionBeanFactory conventionBeanFactory = new ConventionBeanFactory(new TestBeanClassResolver(), candidateEvaluator); @Test public void containsBean() throws Exception { assertTrue(conventionBeanFactory.containsBean(Annotated.class.getName())); assertFalse(conventionBeanFactory.containsBean(ConventionBeanFactoryTest.class.getName())); } @Test public void singleton() throws Exception { assertTrue(conventionBeanFactory.isSingleton(Annotated.class.getName())); } @Test public void prototype() throws Exception { assertFalse(conventionBeanFactory.isPrototype(Annotated.class.getName())); } @Test public void getType() throws Exception { assertEquals(DefaultAnnotated.class, conventionBeanFactory.getType(Annotated.class.getName())); } @Test public void typeMatch() throws Exception { assertTrue(conventionBeanFactory.isTypeMatch(Annotated.class.getName(), DefaultAnnotated.class)); assertFalse(conventionBeanFactory.isTypeMatch(Annotated.class.getName(), ConventionBeanFactoryTest.class)); } @Test public void getBeanByInterfaceWithClassRequirement() throws Exception { final DefaultAnnotated bean = conventionBeanFactory.getBean(Annotated.class.getName(), DefaultAnnotated.class); assertEquals(DefaultAnnotated.class, bean.getClass()); } @Test @Ignore public void getBeanByInterfaceWithClassRequirementUnsatisfied() throws Exception { final ConventionBeanFactoryTest bean = conventionBeanFactory.getBean(Annotated.class.getName(), ConventionBeanFactoryTest.class); assertNull(bean); } @Test public void getBeanByInterface() throws Exception { final DefaultAnnotated bean = (DefaultAnnotated) conventionBeanFactory.getBean(Annotated.class); assertEquals(DefaultAnnotated.class, bean.getClass()); } @Test public void getBeanByImplClass() throws Exception { final Annotated bean = conventionBeanFactory.getBean(DefaultAnnotated.class); assertEquals(DefaultAnnotated.class, bean.getClass()); } @Service public static class DefaultAnnotated implements Annotated { } interface Annotated { } }