/*
* *************************************************************************************
* Copyright (C) 2008 EsperTech, Inc. All rights reserved. *
* http://esper.codehaus.org *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
* *************************************************************************************
*/
package com.espertech.esper.event.bean;
import junit.framework.TestCase;
import com.asper.sources.net.sf.cglib.reflect.FastClass;
import com.asper.sources.net.sf.cglib.reflect.FastMethod;
import com.espertech.esper.support.bean.SupportBeanComplexProps;
import com.espertech.esper.support.event.SupportEventBeanFactory;
import com.espertech.esper.support.event.SupportEventAdapterService;
import com.espertech.esper.client.EventBean;
import com.espertech.esper.client.PropertyAccessException;
public class TestArrayFastPropertyGetter extends TestCase
{
private ArrayFastPropertyGetter getter;
private ArrayFastPropertyGetter getterOutOfBounds;
private EventBean theEvent;
private SupportBeanComplexProps bean;
public void setUp() throws Exception
{
bean = SupportBeanComplexProps.makeDefaultBean();
theEvent = SupportEventBeanFactory.createObject(bean);
getter = makeGetter(0);
getterOutOfBounds = makeGetter(Integer.MAX_VALUE);
}
public void testCtor()
{
try
{
makeGetter(-1);
fail();
}
catch (IllegalArgumentException ex)
{
// expected
}
}
public void testGet()
{
assertEquals(bean.getArrayProperty()[0], getter.get(theEvent));
assertEquals(bean.getArrayProperty()[0], getter.get(theEvent, 0));
assertNull(getterOutOfBounds.get(theEvent));
try
{
getter.get(SupportEventBeanFactory.createObject(""));
fail();
}
catch (PropertyAccessException ex)
{
// expected
}
}
private ArrayFastPropertyGetter makeGetter(int index)
{
FastClass fastClass = FastClass.create(Thread.currentThread().getContextClassLoader(), SupportBeanComplexProps.class);
FastMethod method = fastClass.getMethod("getArrayProperty", new Class[0]);
return new ArrayFastPropertyGetter(method, index, SupportEventAdapterService.getService());
}
}