/* * ************************************************************************************* * 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.regression.rowrecog; import com.espertech.esper.client.Configuration; import com.espertech.esper.client.EPServiceProvider; import com.espertech.esper.client.EPServiceProviderManager; import com.espertech.esper.client.EPStatement; import com.espertech.esper.client.scopetest.EPAssertionUtil; import com.espertech.esper.client.scopetest.SupportUpdateListener; import com.espertech.esper.support.client.SupportConfigFactory; import junit.framework.TestCase; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class TestRowPatternRecognitionGreedyness extends TestCase { private static final Log log = LogFactory.getLog(TestRowPatternRecognitionGreedyness.class); public void testReluctantZeroToOne() { Configuration config = SupportConfigFactory.getConfiguration(); config.addEventType("MyEvent", SupportRecogBean.class); EPServiceProvider epService = EPServiceProviderManager.getDefaultProvider(config); epService.initialize(); String[] fields = "a_string,b_string".split(","); String text = "select * from MyEvent.win:keepall() " + "match_recognize (" + " measures A.theString as a_string, B.theString as b_string " + " pattern (A?? B?) " + " define " + " A as A.value = 1," + " B as B.value = 1" + ")"; EPStatement stmt = epService.getEPAdministrator().createEPL(text); SupportUpdateListener listener = new SupportUpdateListener(); stmt.addListener(listener); epService.getEPRuntime().sendEvent(new SupportRecogBean("E1", 1)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{null, "E1"}}); EPAssertionUtil.assertPropsPerRow(stmt.iterator(), fields, new Object[][]{{null, "E1"}}); } public void testReluctantZeroToMany() { Configuration config = SupportConfigFactory.getConfiguration(); config.addEventType("MyEvent", SupportRecogBean.class); EPServiceProvider epService = EPServiceProviderManager.getDefaultProvider(config); epService.initialize(); String[] fields = "a0,a1,a2,b,c".split(","); String text = "select * from MyEvent.win:keepall() " + "match_recognize (" + " measures A[0].theString as a0, A[1].theString as a1, A[2].theString as a2, B.theString as b, C.theString as c" + " pattern (A*? B? C) " + " define " + " A as A.value = 1," + " B as B.value in (1, 2)," + " C as C.value = 3" + ")"; EPStatement stmt = epService.getEPAdministrator().createEPL(text); SupportUpdateListener listener = new SupportUpdateListener(); stmt.addListener(listener); epService.getEPRuntime().sendEvent(new SupportRecogBean("E1", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E2", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E3", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E4", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{"E1", "E2", null, "E3", "E4"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E11", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E12", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E13", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E14", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E15", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{"E11", "E12", "E13", "E14", "E15"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E16", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E17", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{null, null, null, "E16", "E17"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E18", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{null, null, null, null, "E18"}}); } public void testReluctantOneToMany() { Configuration config = SupportConfigFactory.getConfiguration(); config.addEventType("MyEvent", SupportRecogBean.class); EPServiceProvider epService = EPServiceProviderManager.getDefaultProvider(config); epService.initialize(); String[] fields = "a0,a1,a2,b,c".split(","); String text = "select * from MyEvent.win:keepall() " + "match_recognize (" + " measures A[0].theString as a0, A[1].theString as a1, A[2].theString as a2, B.theString as b, C.theString as c" + " pattern (A+? B? C) " + " define " + " A as A.value = 1," + " B as B.value in (1, 2)," + " C as C.value = 3" + ")"; EPStatement stmt = epService.getEPAdministrator().createEPL(text); SupportUpdateListener listener = new SupportUpdateListener(); stmt.addListener(listener); epService.getEPRuntime().sendEvent(new SupportRecogBean("E1", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E2", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E3", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E4", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{"E1", "E2", null, "E3", "E4"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E11", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E12", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E13", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E14", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E15", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{"E11", "E12", "E13", "E14", "E15"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E16", 1)); epService.getEPRuntime().sendEvent(new SupportRecogBean("E17", 3)); EPAssertionUtil.assertPropsPerRow(listener.getAndResetLastNewData(), fields, new Object[][]{{"E16", null, null, null, "E17"}}); epService.getEPRuntime().sendEvent(new SupportRecogBean("E18", 3)); assertFalse(listener.isInvoked()); } }