Search in sources :

Example 76 with SiddhiAppRuntime

use of org.ballerinalang.siddhi.core.SiddhiAppRuntime in project ballerina by ballerina-lang.

the class TimeLengthWindowTestCase method timeLengthWindowTest6.

/*
        Time period > Window time
        Number of events > length
    */
@Test
public void timeLengthWindowTest6() throws InterruptedException {
    log.info("Testing timeLength window with no of events greater than window length and time period greater than" + " window time");
    SiddhiManager siddhiManager = new SiddhiManager();
    String sensorStream = "define stream sensorStream (id string, sensorValue int);";
    String query = "@info(name = 'query1') from sensorStream#window.timeLength(3 sec,6)" + " select id,sum(sensorValue) as sum" + " insert all events into outputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(sensorStream + query);
    siddhiAppRuntime.addCallback("query1", new QueryCallback() {

        @Override
        public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
            EventPrinter.print(timestamp, inEvents, removeEvents);
            if (inEvents != null) {
                if (inEvents[0].getData(0).toString().equals("id6")) {
                    AssertJUnit.assertEquals("6", inEvents[0].getData(1).toString());
                }
                if (inEvents[0].getData(0).toString().equals("id7")) {
                    AssertJUnit.assertEquals("6", inEvents[0].getData(1).toString());
                }
                if (inEvents[0].getData(0).toString().equals("id8")) {
                    AssertJUnit.assertEquals("6", inEvents[0].getData(1).toString());
                }
                inEventCount++;
            }
            if (removeEvents != null) {
                if (removeEvents[0].getData(0).toString().equals("id1")) {
                    AssertJUnit.assertEquals("5", removeEvents[0].getData(1).toString());
                }
                if (removeEvents[0].getData(0).toString().equals("id2")) {
                    AssertJUnit.assertEquals("5", removeEvents[0].getData(1).toString());
                }
                if (removeEvents[0].getData(0).toString().equals("id3")) {
                    AssertJUnit.assertEquals("3", removeEvents[0].getData(1).toString());
                }
                removeEventCount++;
            }
            eventArrived = true;
        }
    });
    InputHandler inputHandler = siddhiAppRuntime.getInputHandler("sensorStream");
    siddhiAppRuntime.start();
    inputHandler.send(new Object[] { "id1", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id2", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id3", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id4", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id5", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id6", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id7", 1 });
    Thread.sleep(520);
    inputHandler.send(new Object[] { "id8", 1 });
    Thread.sleep(1000);
    AssertJUnit.assertEquals(8, inEventCount);
    AssertJUnit.assertEquals(2, removeEventCount);
    AssertJUnit.assertTrue(eventArrived);
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.ballerinalang.siddhi.core.stream.input.InputHandler) SiddhiAppRuntime(org.ballerinalang.siddhi.core.SiddhiAppRuntime) Event(org.ballerinalang.siddhi.core.event.Event) SiddhiManager(org.ballerinalang.siddhi.core.SiddhiManager) QueryCallback(org.ballerinalang.siddhi.core.query.output.callback.QueryCallback) Test(org.testng.annotations.Test)

Example 77 with SiddhiAppRuntime

use of org.ballerinalang.siddhi.core.SiddhiAppRuntime in project ballerina by ballerina-lang.

the class TimeLengthWindowTestCase method timeLengthWindowTest1.

/*
        Time Period < Window time
        Number of Events < Window length
    */
@Test
public void timeLengthWindowTest1() throws InterruptedException {
    log.info("Testing timeLength window with no of events less than window length and time period less than " + "window time");
    SiddhiManager siddhiManager = new SiddhiManager();
    String cseEventStream = "define stream cseEventStream (symbol string, price float, volume int);";
    String query = "@info(name = 'query1') from cseEventStream#window.timeLength(4 sec,10) select symbol,price," + "volume insert all events into outputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(cseEventStream + query);
    siddhiAppRuntime.addCallback("query1", new QueryCallback() {

        @Override
        public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
            EventPrinter.print(timestamp, inEvents, removeEvents);
            if (inEvents != null) {
                inEventCount = inEventCount + inEvents.length;
            }
            if (removeEvents != null) {
                AssertJUnit.assertTrue("InEvents arrived before RemoveEvents", inEventCount > removeEventCount);
                removeEventCount = removeEventCount + removeEvents.length;
            }
            eventArrived = true;
        }
    });
    InputHandler inputHandler = siddhiAppRuntime.getInputHandler("cseEventStream");
    siddhiAppRuntime.start();
    inputHandler.send(new Object[] { "IBM", 700f, 1 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 2 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "IBM", 700f, 3 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 4 });
    Thread.sleep(5000);
    AssertJUnit.assertEquals(4, inEventCount);
    AssertJUnit.assertEquals(4, removeEventCount);
    AssertJUnit.assertTrue(eventArrived);
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.ballerinalang.siddhi.core.stream.input.InputHandler) SiddhiAppRuntime(org.ballerinalang.siddhi.core.SiddhiAppRuntime) Event(org.ballerinalang.siddhi.core.event.Event) SiddhiManager(org.ballerinalang.siddhi.core.SiddhiManager) QueryCallback(org.ballerinalang.siddhi.core.query.output.callback.QueryCallback) Test(org.testng.annotations.Test)

Example 78 with SiddhiAppRuntime

use of org.ballerinalang.siddhi.core.SiddhiAppRuntime in project ballerina by ballerina-lang.

the class TimeLengthWindowTestCase method timeLengthWindowTest7.

/*
        Time period < Window time
        Number of events < length
    */
@Test
public void timeLengthWindowTest7() throws InterruptedException {
    log.info("Testing timeLength window with no of events less than window length and time period less than " + "window time");
    SiddhiManager siddhiManager = new SiddhiManager();
    String sensorStream = "define stream sensorStream (id string, sensorValue int);";
    String query = "@info(name = 'query1') from sensorStream#window.timeLength(5 sec,5)" + " select id,sum(sensorValue) as sum" + " insert into outputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(sensorStream + query);
    siddhiAppRuntime.addCallback("query1", new QueryCallback() {

        @Override
        public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
            EventPrinter.print(timestamp, inEvents, removeEvents);
            AssertJUnit.assertEquals((long) count + 1, (inEvents[0].getData(1)));
            count++;
            eventArrived = true;
        }
    });
    InputHandler inputHandler = siddhiAppRuntime.getInputHandler("sensorStream");
    siddhiAppRuntime.start();
    inputHandler.send(new Object[] { "id1", 1 });
    Thread.sleep(100);
    inputHandler.send(new Object[] { "id2", 1 });
    Thread.sleep(100);
    inputHandler.send(new Object[] { "id3", 1 });
    Thread.sleep(100);
    inputHandler.send(new Object[] { "id4", 1 });
    Thread.sleep(1000);
    AssertJUnit.assertEquals(4, count);
    AssertJUnit.assertTrue(eventArrived);
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.ballerinalang.siddhi.core.stream.input.InputHandler) SiddhiAppRuntime(org.ballerinalang.siddhi.core.SiddhiAppRuntime) Event(org.ballerinalang.siddhi.core.event.Event) SiddhiManager(org.ballerinalang.siddhi.core.SiddhiManager) QueryCallback(org.ballerinalang.siddhi.core.query.output.callback.QueryCallback) Test(org.testng.annotations.Test)

Example 79 with SiddhiAppRuntime

use of org.ballerinalang.siddhi.core.SiddhiAppRuntime in project ballerina by ballerina-lang.

the class TimeLengthWindowTestCase method timeLengthWindowTest3.

/*
        Time Period < Window time
        Number of Events > Window length
    */
@Test
public void timeLengthWindowTest3() throws InterruptedException {
    log.info("Testing timeLength window with no of events greater than window length and time period less than " + "window time");
    SiddhiManager siddhiManager = new SiddhiManager();
    String sensorStream = "define stream sensorStream (id string, sensorValue float);";
    String query = "@info(name = 'query1') from sensorStream#window.timeLength(10 sec,4)" + " select id,sensorValue" + " insert all events into outputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(sensorStream + query);
    siddhiAppRuntime.addCallback("query1", new QueryCallback() {

        @Override
        public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
            EventPrinter.print(timestamp, inEvents, removeEvents);
            if (inEvents != null) {
                inEventCount = inEventCount + inEvents.length;
            }
            if (removeEvents != null) {
                AssertJUnit.assertTrue("InEvents arrived before RemoveEvents", inEventCount > removeEventCount);
                removeEventCount = removeEventCount + removeEvents.length;
            }
            eventArrived = true;
        }
    });
    InputHandler inputHandler = siddhiAppRuntime.getInputHandler("sensorStream");
    siddhiAppRuntime.start();
    inputHandler.send(new Object[] { "id1", 10d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id2", 20d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id3", 30d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id4", 40d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id5", 50d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id6", 60d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id7", 70d });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "id8", 80d });
    Thread.sleep(2000);
    AssertJUnit.assertEquals(8, inEventCount);
    AssertJUnit.assertEquals(4, removeEventCount);
    AssertJUnit.assertTrue(eventArrived);
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.ballerinalang.siddhi.core.stream.input.InputHandler) SiddhiAppRuntime(org.ballerinalang.siddhi.core.SiddhiAppRuntime) Event(org.ballerinalang.siddhi.core.event.Event) SiddhiManager(org.ballerinalang.siddhi.core.SiddhiManager) QueryCallback(org.ballerinalang.siddhi.core.query.output.callback.QueryCallback) Test(org.testng.annotations.Test)

Example 80 with SiddhiAppRuntime

use of org.ballerinalang.siddhi.core.SiddhiAppRuntime in project ballerina by ballerina-lang.

the class TimeLengthWindowTestCase method timeLengthWindowTest10.

/*
       Time Period < Window time
       Number of Events > Window length
    */
@Test
public void timeLengthWindowTest10() throws InterruptedException {
    log.info("Testing timeLength window with no of events greater than window length and time period less than " + "window time");
    SiddhiManager siddhiManager = new SiddhiManager();
    String cseEventStream = "define stream cseEventStream (symbol string, price float, volume int);";
    String query = "@info(name = 'query1') from cseEventStream#window.timeLength(10 sec,5)" + " select symbol,volume" + " insert all events into outputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(cseEventStream + query);
    siddhiAppRuntime.addCallback("query1", new QueryCallback() {

        @Override
        public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
            EventPrinter.print(timestamp, inEvents, removeEvents);
            if (inEvents != null) {
                for (Event event : inEvents) {
                    if (event.isExpired()) {
                        removeEventCount++;
                    } else {
                        inEventCount++;
                    }
                }
            }
            if (removeEvents != null) {
                for (Event event : removeEvents) {
                    if (event.isExpired()) {
                        removeEventCount++;
                    } else {
                        inEventCount++;
                    }
                }
            }
            eventArrived = true;
        }
    });
    InputHandler inputHandler = siddhiAppRuntime.getInputHandler("cseEventStream");
    siddhiAppRuntime.start();
    inputHandler.send(new Object[] { "IBM", 700f, 10 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 20 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "IBM", 700f, 20 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 40 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "IBM", 700f, 50 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 60 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "IBM", 700f, 70 });
    Thread.sleep(500);
    inputHandler.send(new Object[] { "WSO2", 60.5f, 80 });
    Thread.sleep(5000);
    AssertJUnit.assertEquals("In event count", 8, inEventCount);
    AssertJUnit.assertEquals("Remove event count", 3, removeEventCount);
    AssertJUnit.assertTrue(eventArrived);
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.ballerinalang.siddhi.core.stream.input.InputHandler) SiddhiAppRuntime(org.ballerinalang.siddhi.core.SiddhiAppRuntime) Event(org.ballerinalang.siddhi.core.event.Event) SiddhiManager(org.ballerinalang.siddhi.core.SiddhiManager) QueryCallback(org.ballerinalang.siddhi.core.query.output.callback.QueryCallback) Test(org.testng.annotations.Test)

Aggregations

SiddhiAppRuntime (org.ballerinalang.siddhi.core.SiddhiAppRuntime)1235 SiddhiManager (org.ballerinalang.siddhi.core.SiddhiManager)1231 Test (org.testng.annotations.Test)1231 InputHandler (org.ballerinalang.siddhi.core.stream.input.InputHandler)1123 Event (org.ballerinalang.siddhi.core.event.Event)798 QueryCallback (org.ballerinalang.siddhi.core.query.output.callback.QueryCallback)574 TestUtil (org.ballerinalang.siddhi.core.TestUtil)300 StreamCallback (org.ballerinalang.siddhi.core.stream.output.StreamCallback)201 SiddhiApp (org.ballerinalang.siddhi.query.api.SiddhiApp)85 Query (org.ballerinalang.siddhi.query.api.execution.query.Query)82 StreamDefinition (org.ballerinalang.siddhi.query.api.definition.StreamDefinition)80 ArrayList (java.util.ArrayList)25 InMemoryBroker (org.ballerinalang.siddhi.core.util.transport.InMemoryBroker)16 ComplexEvent (org.ballerinalang.siddhi.core.event.ComplexEvent)12 CannotRestoreSiddhiAppStateException (org.ballerinalang.siddhi.core.exception.CannotRestoreSiddhiAppStateException)12 InMemoryPersistenceStore (org.ballerinalang.siddhi.core.util.persistence.InMemoryPersistenceStore)12 PersistenceStore (org.ballerinalang.siddhi.core.util.persistence.PersistenceStore)12 HashMap (java.util.HashMap)11 InMemoryConfigManager (org.ballerinalang.siddhi.core.util.config.InMemoryConfigManager)9 ByteArrayOutputStream (java.io.ByteArrayOutputStream)6