/* * ************************************************************************************* * 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 junit.framework.TestCase; import com.espertech.esper.support.epl.SupportExprNode; public class TestExprCastNode extends TestCase { private ExprCastNode[] castNodes; public void setUp() { castNodes = new ExprCastNode[2]; castNodes[0] = new ExprCastNode("long"); castNodes[0].addChildNode(new SupportExprNode(10L, Long.class)); castNodes[1] = new ExprCastNode("java.lang.Integer"); castNodes[1].addChildNode(new SupportExprNode(0x10, byte.class)); } public void testGetType() throws Exception { for (int i = 0; i < castNodes.length; i++) { castNodes[i].validate(ExprValidationContextFactory.makeEmpty()); } assertEquals(Long.class, castNodes[0].getType()); assertEquals(Integer.class, castNodes[1].getType()); } public void testValidate() throws Exception { ExprCastNode castNode = new ExprCastNode("int"); // Test too few nodes under this node try { castNode.validate(ExprValidationContextFactory.makeEmpty()); fail(); } catch (ExprValidationException ex) { // Expected } // Test too many nodes castNode.addChildNode(new SupportExprNode(1)); castNode.addChildNode(new SupportExprNode("s")); try { castNode.validate(ExprValidationContextFactory.makeEmpty()); fail(); } catch (ExprValidationException ex) { // Expected } } public void testEvaluate() throws Exception { for (int i = 0; i < castNodes.length; i++) { castNodes[i].validate(ExprValidationContextFactory.makeEmpty()); } assertEquals(10L, castNodes[0].evaluate(null, false, null)); assertEquals(16, castNodes[1].evaluate(null, false, null)); } public void testEquals() throws Exception { assertFalse(castNodes[0].equalsNode(new ExprEqualsNodeImpl(true, false))); assertFalse(castNodes[0].equalsNode(castNodes[1])); assertFalse(castNodes[0].equalsNode(new ExprCastNode("java.lang.Integer"))); } public void testToExpressionString() throws Exception { castNodes[0].validate(ExprValidationContextFactory.makeEmpty()); assertEquals("cast(10, long)", castNodes[0].toExpressionString()); } }