use of org.wso2.siddhi.query.api.SiddhiApp in project siddhi by wso2.
the class EventOutputRateLimitTestCase method testEventOutputRateLimitQuery5.
@Test
public void testEventOutputRateLimitQuery5() throws InterruptedException {
log.info("EventOutputRateLimit test5");
SiddhiManager siddhiManager = new SiddhiManager();
String siddhiApp = "" + "@app:name('EventOutputRateLimitTest5') " + "" + "define stream LoginEvents (timestamp long, ip string);" + "" + "@info(name = 'query1') " + "from LoginEvents " + "select ip " + "output first every 3 events " + "insert into uniqueIps ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiApp);
log.info("Running : " + siddhiAppRuntime.getName());
siddhiAppRuntime.addCallback("query1", new QueryCallback() {
@Override
public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
EventPrinter.print(timestamp, inEvents, removeEvents);
if (inEvents != null) {
count += inEvents.length;
AssertJUnit.assertTrue("192.10.1.5".equals(inEvents[0].getData(0)) || "192.10.1.4".equals(inEvents[0].getData(0)));
} else {
AssertJUnit.fail("Remove events emitted");
}
eventArrived = true;
}
});
InputHandler inputHandler = siddhiAppRuntime.getInputHandler("LoginEvents");
siddhiAppRuntime.start();
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.9" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.4" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3" });
Thread.sleep(1000);
AssertJUnit.assertEquals("Event arrived", true, eventArrived);
AssertJUnit.assertEquals("Number of output event value", 2, count);
siddhiAppRuntime.shutdown();
}
use of org.wso2.siddhi.query.api.SiddhiApp in project siddhi by wso2.
the class EventOutputRateLimitTestCase method testEventOutputRateLimitQuery11.
@Test
public void testEventOutputRateLimitQuery11() throws InterruptedException {
log.info("EventOutputRateLimit test11");
SiddhiManager siddhiManager = new SiddhiManager();
String siddhiApp = "" + "@app:name('EventOutputRateLimitTest9') " + "" + "define stream LoginEvents (timestamp long, ip string);" + "" + "@info(name = 'query1') " + "from LoginEvents " + "select ip " + "group by ip " + "output last every 5 events " + "insert into uniqueIps ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiApp);
log.info("Running : " + siddhiAppRuntime.getName());
siddhiAppRuntime.addCallback("query1", new QueryCallback() {
@Override
public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
EventPrinter.print(timestamp, inEvents, removeEvents);
if (inEvents != null) {
count += inEvents.length;
} else {
AssertJUnit.fail("Remove events emitted");
}
eventArrived = true;
}
});
InputHandler inputHandler = siddhiAppRuntime.getInputHandler("LoginEvents");
siddhiAppRuntime.start();
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.9" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.4" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.4" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.4" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.30" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3" });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.30" });
Thread.sleep(1000);
AssertJUnit.assertEquals("Event arrived", true, eventArrived);
AssertJUnit.assertEquals("Number of output event value", 7, count);
siddhiAppRuntime.shutdown();
}
use of org.wso2.siddhi.query.api.SiddhiApp in project siddhi by wso2.
the class SnapshotOutputRateLimitTestCase method testSnapshotOutputRateLimitQuery25.
@Test(dependsOnMethods = { "testSnapshotOutputRateLimitQuery24" })
public void testSnapshotOutputRateLimitQuery25() throws InterruptedException {
log.info("SnapshotOutputRateLimit test25");
SiddhiManager siddhiManager = new SiddhiManager();
String siddhiApp = "" + "@app:name('SnapshotOutputRateLimitTest23') " + "" + "define stream LoginEvents (timestamp long, ip string, calls int);" + "" + "@info(name = 'query1') " + "from LoginEvents#window.lengthBatch(3) " + "select sum(calls) as totalCalls " + "group by ip " + "output snapshot every 1 sec " + "insert all events into uniqueIps ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiApp);
log.info("Running : " + siddhiAppRuntime.getName());
siddhiAppRuntime.addCallback("query1", new QueryCallback() {
@Override
public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
EventPrinter.print(timestamp, inEvents, removeEvents);
eventArrived = true;
count.incrementAndGet();
for (Event inEvent : inEvents) {
value++;
if (value == 1) {
AssertJUnit.assertEquals((Long) 1L, inEvent.getData(0));
} else if (value == 2) {
AssertJUnit.assertEquals((Long) 1L, inEvent.getData(0));
} else if (value == 3) {
AssertJUnit.assertEquals((Long) 2L, inEvent.getData(0));
}
}
}
});
InputHandler inputHandler = siddhiAppRuntime.getInputHandler("LoginEvents");
siddhiAppRuntime.start();
Thread.sleep(100);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 3 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3", 6 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.4", 2 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 1 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.6", 1 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.7", 2 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.8", 10 });
Thread.sleep(1200);
AssertJUnit.assertEquals("Event arrived", true, eventArrived);
AssertJUnit.assertEquals("Number of output event bundles", 1, count.get());
AssertJUnit.assertEquals("Number of output events", 3, value);
siddhiAppRuntime.shutdown();
Thread.sleep(2000);
}
use of org.wso2.siddhi.query.api.SiddhiApp in project siddhi by wso2.
the class SnapshotOutputRateLimitTestCase method testSnapshotOutputRateLimitQuery21.
@Test(dependsOnMethods = { "testSnapshotOutputRateLimitQuery20" })
public void testSnapshotOutputRateLimitQuery21() throws InterruptedException {
log.info("SnapshotOutputRateLimit test21");
SiddhiManager siddhiManager = new SiddhiManager();
String siddhiApp = "" + "@app:name('SnapshotOutputRateLimitTest21') " + "" + "define stream LoginEvents (timestamp long, ip string, calls int);" + "" + "@info(name = 'query1') " + "from LoginEvents#window.time(1 sec) " + "select ip, sum(calls) as totalCalls " + "group by ip " + "output snapshot every 1 sec " + "insert all events into uniqueIps ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiApp);
log.info("Running : " + siddhiAppRuntime.getName());
siddhiAppRuntime.addCallback("query1", new QueryCallback() {
@Override
public void receive(long timestamp, Event[] inEvents, Event[] removeEvents) {
EventPrinter.print(timestamp, inEvents, removeEvents);
eventArrived = true;
count.incrementAndGet();
if (count.get() == 2) {
AssertJUnit.assertTrue((Long) inEvents[0].getData(1) == 3L && (Long) inEvents[1].getData(1) == 6L);
} else if (count.get() == 4) {
AssertJUnit.assertTrue((Long) inEvents[0].getData(1) == 2L && (Long) inEvents[1].getData(1) == 10L);
}
if (inEvents != null) {
value += inEvents.length;
}
}
});
InputHandler inputHandler = siddhiAppRuntime.getInputHandler("LoginEvents");
siddhiAppRuntime.start();
Thread.sleep(1100);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 3 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3", 6 });
Thread.sleep(2200);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 2 });
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3", 10 });
Thread.sleep(1200);
AssertJUnit.assertEquals("Event arrived", true, eventArrived);
AssertJUnit.assertEquals("Number of output event bundles", 4, count.get());
AssertJUnit.assertEquals("Number of output events", 4, value);
siddhiAppRuntime.shutdown();
Thread.sleep(2000);
}
use of org.wso2.siddhi.query.api.SiddhiApp in project siddhi by wso2.
the class SnapshotOutputRateLimitTestCase method testSnapshotOutputRateLimitQuery9.
@Test(dependsOnMethods = { "testSnapshotOutputRateLimitQuery8" })
public void testSnapshotOutputRateLimitQuery9() throws InterruptedException {
log.info("SnapshotOutputRateLimit test9");
SiddhiManager siddhiManager = new SiddhiManager();
String siddhiApp = "" + "@app:name('SnapshotOutputRateLimitTest9') " + "" + "define stream LoginEvents (timestamp long, ip string, calls int);" + "" + "@info(name = 'query1') " + "from LoginEvents#window.time(5 sec) " + "select sum(calls) as totalCalls " + "output snapshot every 1 sec " + "insert all events into uniqueIps ;";
SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiApp);
log.info("Running : " + siddhiAppRuntime.getName());
siddhiAppRuntime.addCallback("uniqueIps", new StreamCallback() {
@Override
public void receive(Event[] events) {
EventPrinter.print(events);
eventArrived = true;
count.incrementAndGet();
if (count.get() == 1) {
AssertJUnit.assertTrue((Long) events[0].getData(0) == 9L);
} else if (count.get() == 2) {
AssertJUnit.assertTrue((Long) events[0].getData(0) == 9L);
} else if (count.get() == 3) {
AssertJUnit.assertTrue((Long) events[0].getData(0) == 21L);
}
}
});
InputHandler inputHandler = siddhiAppRuntime.getInputHandler("LoginEvents");
siddhiAppRuntime.start();
Thread.sleep(1100);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 3 });
Thread.sleep(100);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3", 6 });
Thread.sleep(2200);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.5", 2 });
Thread.sleep(100);
inputHandler.send(new Object[] { System.currentTimeMillis(), "192.10.1.3", 10 });
SiddhiTestHelper.waitForEvents(1000, 3, count, 60000);
AssertJUnit.assertEquals("Event arrived", true, eventArrived);
AssertJUnit.assertTrue("Number of output event with value", count.get() == 3);
siddhiAppRuntime.shutdown();
}
Aggregations