/* * ************************************************************************************* * 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.epl.expression; import com.espertech.esper.client.EventBean; import com.espertech.esper.support.bean.SupportBean; import com.espertech.esper.support.epl.SupportExprNode; import com.espertech.esper.support.epl.SupportExprNodeFactory; import com.espertech.esper.support.event.SupportEventBeanFactory; import com.espertech.esper.view.internal.PriorEventBufferUnbound; import junit.framework.TestCase; public class TestExprPriorNode extends TestCase { private ExprPriorNode priorNode; public void setUp() throws Exception { priorNode = SupportExprNodeFactory.makePriorNode(); } public void testGetType() throws Exception { assertEquals(double.class, priorNode.getType()); } public void testValidate() throws Exception { priorNode = new ExprPriorNode(); // No subnodes: Exception is thrown. tryInvalidValidate(priorNode); // singe child node not possible, must be 2 at least priorNode.addChildNode(new SupportExprNode(new Integer(4))); tryInvalidValidate(priorNode); } public void testEvaluate() throws Exception { PriorEventBufferUnbound buffer = new PriorEventBufferUnbound(10); priorNode.setPriorStrategy(new ExprPriorEvalStrategyRandomAccess(buffer)); EventBean[] events = new EventBean[] {makeEvent(1d), makeEvent(10d)}; buffer.update(events, null); assertEquals(1d, priorNode.evaluate(events, true, null)); } public void testEquals() throws Exception { ExprPriorNode node1 = new ExprPriorNode(); assertTrue(node1.equalsNode(priorNode)); } public void testToExpressionString() throws Exception { assertEquals("prior(1,s0.doublePrimitive)", priorNode.toExpressionString()); } private EventBean makeEvent(double doublePrimitive) { SupportBean theEvent = new SupportBean(); theEvent.setDoublePrimitive(doublePrimitive); return SupportEventBeanFactory.createObject(theEvent); } private void tryInvalidValidate(ExprPriorNode exprPriorNode) throws Exception { try { exprPriorNode.validate(ExprValidationContextFactory.makeEmpty()); fail(); } catch (ExprValidationException ex) { // expected } } }