/*
* *************************************************************************************
* 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.view.window;
import com.espertech.esper.support.view.SupportStatementContextFactory;
import com.espertech.esper.view.TestViewSupport;
import com.espertech.esper.view.ViewParameterException;
import com.espertech.esper.view.std.FirstElementView;
import junit.framework.TestCase;
public class TestTimeBatchViewFactory extends TestCase
{
private TimeBatchViewFactory factory;
public void setUp()
{
factory = new TimeBatchViewFactory();
}
public void testSetParameters() throws Exception
{
tryParameter(new Object[] {2d}, 2000, null);
tryParameter(new Object[] {4}, 4000, null);
tryParameter(new Object[] {3.3d}, 3300, null);
tryParameter(new Object[] {new Float(1.1f)}, 1100, null);
tryParameter(new Object[] {99.9d, 364466464L}, 99900, 364466464L);
tryInvalidParameter("theString");
tryInvalidParameter(true);
tryInvalidParameter(0);
}
public void testCanReuse() throws Exception
{
factory.setViewParameters(SupportStatementContextFactory.makeViewContext(), TestViewSupport.toExprListBean(new Object[] {1000}));
assertFalse(factory.canReuse(new FirstElementView()));
assertFalse(factory.canReuse(new TimeBatchView(factory, SupportStatementContextFactory.makeAgentInstanceViewFactoryContext(), 1, null, false, false, null)));
assertTrue(factory.canReuse(new TimeBatchView(factory, SupportStatementContextFactory.makeAgentInstanceViewFactoryContext(), 1000000, null, false, false, null)));
factory.setViewParameters(SupportStatementContextFactory.makeViewContext(), TestViewSupport.toExprListBean(new Object[] {1000, 2000L}));
assertFalse(factory.canReuse(new TimeBatchView(factory, SupportStatementContextFactory.makeAgentInstanceViewFactoryContext(), 1, null, false, false, null)));
assertTrue(factory.canReuse(new TimeBatchView(factory, SupportStatementContextFactory.makeAgentInstanceViewFactoryContext(), 1000000, 2000L, false, false, null)));
}
private void tryInvalidParameter(Object param) throws Exception
{
try
{
TimeBatchViewFactory factory = new TimeBatchViewFactory();
factory.setViewParameters(SupportStatementContextFactory.makeViewContext(), TestViewSupport.toExprListBean(new Object[] {param}));
fail();
}
catch (ViewParameterException ex)
{
// expected
}
}
private void tryParameter(Object[] param, long msec, Long referencePoint) throws Exception
{
TimeBatchViewFactory factory = new TimeBatchViewFactory();
factory.setViewParameters(SupportStatementContextFactory.makeViewContext(), TestViewSupport.toExprListBean(param));
TimeBatchView view = (TimeBatchView) factory.makeView(SupportStatementContextFactory.makeAgentInstanceViewFactoryContext());
assertEquals(msec, view.getMsecIntervalSize());
assertEquals(referencePoint, view.getInitialReferencePoint());
}
}