/*
* Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
* Distributed under the terms of either:
* - the common development and distribution license (CDDL), v1.0; or
* - the GNU Lesser General Public License, v2.1 or later
* $Id: TestPropertyValueParticipant.java 3634 2007-01-08 21:42:24Z gbevin $
*/
package com.uwyn.rife.ioc;
import junit.framework.TestCase;
import com.uwyn.rife.ioc.exceptions.ParticipantUnknownException;
public class TestPropertyValueParticipant extends TestCase
{
public TestPropertyValueParticipant(String name)
{
super(name);
}
public void testInstantiation()
{
PropertyValueParticipant object = new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("IOC_CONFIG"));
assertNotNull(object);
assertFalse(object.isStatic());
}
public void testGetValue()
{
PropertyValueParticipant object = new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("IOC_CONFIG"));
assertNotNull(object.getValue());
}
public void testGetValueUnknownParticipant()
{
PropertyValueParticipant object = new PropertyValueParticipant("unknown", new PropertyValueObject("IOC_CONFIG"));
try
{
object.getValue();
fail("ParticipantUnknownException wasn't thrown");
}
catch (ParticipantUnknownException e)
{
assertEquals("unknown", e.getName());
}
}
public void testGetValueUnknownKey()
{
PropertyValueParticipant object = new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("blubber"));
assertNull(object.getValue());
}
public void testGetValueString()
{
PropertyValueParticipant object = new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject(new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("IOC_CONFIG"))));
assertEquals("pgsql", object.getValueString());
}
public void testToString()
{
PropertyValueParticipant object = new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("IOC_CONFIG"));
assertEquals("IOC_DATABASE", object.toString());
}
public void testIsNeglectable()
{
assertFalse(new PropertyValueParticipant("ParticipantConfig", new PropertyValueObject("IOC_CONFIG")).isNeglectable());
}
}
|