All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.picocontainer.defaults.issues.Issue0332TestCase Maven / Gradle / Ivy

There is a newer version: 2.15
Show newest version
package org.picocontainer.defaults.issues;

import org.picocontainer.MutablePicoContainer;
import org.picocontainer.DefaultPicoContainer;
import org.picocontainer.behaviors.Caching;
import org.picocontainer.parameters.ComponentParameter;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;
import java.util.List;

import static junit.framework.Assert.*;

public class Issue0332TestCase {

    /**
     * Sample class that demonstrates literal collection handling.
     */
    public static class Searcher {
    	private final List searchPath;

    	public Searcher(List searchPath) {
    		this.searchPath = searchPath;
    	}

    	public List getSearchPath() {
    		return searchPath;
    	}
    }
    

    /**
     * @todo Revisit this for Pico 3.
     */
    @Ignore
    @Test
    public void canInstantiateAutowiredCollectionThatAreDefinedImplicitly() {
    	MutablePicoContainer pico = new DefaultPicoContainer(new Caching());
    	List searchPath = new ArrayList();
    	searchPath.add("a");
    	searchPath.add("b");

    	List conflictingList = new ArrayList();
    	conflictingList.add(1);
    	conflictingList.add(2);
    	pico.addComponent("conflict", conflictingList);
    	
    	pico.addComponent("searchPath",searchPath)
    		.addComponent(Searcher.class);

    	assertNotNull(pico.getComponent(Searcher.class));
    	assertNotNull(pico.getComponent(Searcher.class).getSearchPath());
    }

    @Test 
    public void canInstantiateExplicitCollectionWithComponentParameter() {
    	MutablePicoContainer pico = new DefaultPicoContainer(new Caching());
    	List searchPath = new ArrayList();
    	searchPath.add("a");
    	searchPath.add("b");

    	pico.addComponent("searchPath",searchPath);
    	pico.addComponent(Searcher.class, Searcher.class, new ComponentParameter("searchPath"));

    	assertNotNull(pico.getComponent(Searcher.class));
    	assertNotNull(pico.getComponent(Searcher.class).getSearchPath());
    }

    @SuppressWarnings("serial")
	public static class StringArrayList extends ArrayList {
    }

    @Test
    public void canInstantiateAutowiredCollectionThatAreDefinedExplicitlyAnotherWay() {
    	MutablePicoContainer pico = new DefaultPicoContainer(new Caching());
    	List searchPath = new StringArrayList();
    	searchPath.add("a");
    	searchPath.add("b");

    	pico.addComponent(searchPath)
    		.addComponent(Searcher.class);

    	assertNotNull(pico.getComponent(Searcher.class));
        List list = pico.getComponent(Searcher.class).getSearchPath();
        assertNotNull(list);
        assertEquals("a", list.get(0));
        assertEquals("b", list.get(1));
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy