Search in sources :

Example 96 with Not

use of org.wso2.siddhi.query.api.expression.condition.Not in project siddhi by wso2.

the class EveryAbsentSequenceTestCase method testQueryAbsent4.

@Test
public void testQueryAbsent4() throws InterruptedException {
    log.info("Test the query every not e1, e2 with e1 and e2 for 1 sec where e1 filter fails");
    SiddhiManager siddhiManager = new SiddhiManager();
    String streams = "" + "define stream Stream1 (symbol string, price float, volume int); " + "define stream Stream2 (symbol string, price float, volume int); ";
    String query = "" + "@info(name = 'query1') " + "from every not Stream1[price>20] for 1 sec, e2=Stream2[price>30] " + "select e2.symbol as symbol " + "insert into OutputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
    TestUtil.TestCallback callback = TestUtil.addQueryCallback(siddhiAppRuntime, "query1");
    InputHandler stream1 = siddhiAppRuntime.getInputHandler("Stream1");
    InputHandler stream2 = siddhiAppRuntime.getInputHandler("Stream2");
    siddhiAppRuntime.start();
    stream1.send(new Object[] { "WSO2", 25.6f, 100 });
    Thread.sleep(500);
    stream1.send(new Object[] { "WSO2", 25.6f, 100 });
    Thread.sleep(500);
    stream1.send(new Object[] { "WSO2", 25.6f, 100 });
    Thread.sleep(500);
    stream2.send(new Object[] { "IBM", 58.7f, 100 });
    Thread.sleep(100);
    callback.throwAssertionErrors();
    AssertJUnit.assertEquals("Number of success events", 0, callback.getInEventCount());
    AssertJUnit.assertEquals("Number of remove events", 0, callback.getRemoveEventCount());
    AssertJUnit.assertFalse("Event not arrived", callback.isEventArrived());
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.wso2.siddhi.core.stream.input.InputHandler) TestUtil(org.wso2.siddhi.core.TestUtil) SiddhiAppRuntime(org.wso2.siddhi.core.SiddhiAppRuntime) SiddhiManager(org.wso2.siddhi.core.SiddhiManager) Test(org.testng.annotations.Test)

Example 97 with Not

use of org.wso2.siddhi.query.api.expression.condition.Not in project siddhi by wso2.

the class EveryAbsentSequenceTestCase method testQueryAbsent8.

@Test
public void testQueryAbsent8() throws InterruptedException {
    log.info("Test the query every not e1 for 1 sec, e2, e3 with e2 and e3");
    SiddhiManager siddhiManager = new SiddhiManager();
    String streams = "" + "define stream Stream1 (symbol string, price float, volume int); " + "define stream Stream2 (symbol string, price float, volume int); " + "define stream Stream3 (symbol string, price float, volume int); ";
    String query = "" + "@info(name = 'query1') " + "from every not Stream1[price>10] for 1 sec, e2=Stream2[price>20], e3=Stream3[price>30] " + "select e2.symbol as symbol2, e3.symbol as symbol3 " + "insert into OutputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
    TestUtil.TestCallback callback = TestUtil.addQueryCallback(siddhiAppRuntime, "query1", new Object[] { "IBM", "GOOGLE" });
    InputHandler stream2 = siddhiAppRuntime.getInputHandler("Stream2");
    InputHandler stream3 = siddhiAppRuntime.getInputHandler("Stream3");
    siddhiAppRuntime.start();
    Thread.sleep(2100);
    stream2.send(new Object[] { "IBM", 28.7f, 100 });
    Thread.sleep(100);
    stream3.send(new Object[] { "GOOGLE", 55.7f, 100 });
    Thread.sleep(100);
    callback.throwAssertionErrors();
    AssertJUnit.assertEquals("Number of success events", 1, callback.getInEventCount());
    AssertJUnit.assertEquals("Number of remove events", 0, callback.getRemoveEventCount());
    AssertJUnit.assertTrue("Event arrived", callback.isEventArrived());
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.wso2.siddhi.core.stream.input.InputHandler) TestUtil(org.wso2.siddhi.core.TestUtil) SiddhiAppRuntime(org.wso2.siddhi.core.SiddhiAppRuntime) SiddhiManager(org.wso2.siddhi.core.SiddhiManager) Test(org.testng.annotations.Test)

Example 98 with Not

use of org.wso2.siddhi.query.api.expression.condition.Not in project siddhi by wso2.

the class EveryAbsentSequenceTestCase method testQueryAbsent9.

@Test
public void testQueryAbsent9() throws InterruptedException {
    log.info("Test the query every not e1 for 1 sec, e2, e3 with e1 that fails to satisfy the condition, e2 " + "and e3");
    SiddhiManager siddhiManager = new SiddhiManager();
    String streams = "" + "define stream Stream1 (symbol string, price float, volume int); " + "define stream Stream2 (symbol string, price float, volume int); " + "define stream Stream3 (symbol string, price float, volume int); ";
    String query = "" + "@info(name = 'query1') " + "from every not Stream1[price>10] for 1 sec, e2=Stream2[price>20], e3=Stream3[price>30] " + "select e2.symbol as symbol2, e3.symbol as symbol3 " + "insert into OutputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
    TestUtil.TestCallback callback = TestUtil.addQueryCallback(siddhiAppRuntime, "query1", new Object[] { "IBM", "GOOGLE" });
    InputHandler stream1 = siddhiAppRuntime.getInputHandler("Stream1");
    InputHandler stream2 = siddhiAppRuntime.getInputHandler("Stream2");
    InputHandler stream3 = siddhiAppRuntime.getInputHandler("Stream3");
    siddhiAppRuntime.start();
    Thread.sleep(500);
    stream1.send(new Object[] { "WSO2", 5.6f, 100 });
    Thread.sleep(600);
    stream2.send(new Object[] { "IBM", 28.7f, 100 });
    Thread.sleep(100);
    stream3.send(new Object[] { "GOOGLE", 55.7f, 100 });
    Thread.sleep(100);
    callback.throwAssertionErrors();
    AssertJUnit.assertEquals("Number of success events", 1, callback.getInEventCount());
    AssertJUnit.assertEquals("Number of remove events", 0, callback.getRemoveEventCount());
    AssertJUnit.assertTrue("Event arrived", callback.isEventArrived());
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.wso2.siddhi.core.stream.input.InputHandler) TestUtil(org.wso2.siddhi.core.TestUtil) SiddhiAppRuntime(org.wso2.siddhi.core.SiddhiAppRuntime) SiddhiManager(org.wso2.siddhi.core.SiddhiManager) Test(org.testng.annotations.Test)

Example 99 with Not

use of org.wso2.siddhi.query.api.expression.condition.Not in project siddhi by wso2.

the class LogicalAbsentSequenceTestCase method testQueryAbsent38.

@Test(dependsOnMethods = { "testQueryAbsent37" })
public void testQueryAbsent38() throws InterruptedException {
    log.info("Test the query (not e1 for 1 sec and not e2 for 1 sec), e3 with e1 and e3");
    SiddhiManager siddhiManager = new SiddhiManager();
    String streams = "" + "define stream Stream1 (symbol string, price float, volume int); " + "define stream Stream2 (symbol string, price float, volume int); " + "define stream Stream3 (symbol string, price float, volume int); ";
    String query = "" + "@info(name = 'query1') " + "from (not Stream1[price>10] for 1 sec and not Stream2[price>20] for 1 sec), e3=Stream3[price>30] " + "select e3.symbol as symbol " + "insert into OutputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
    TestUtil.TestCallback callback = TestUtil.addQueryCallback(siddhiAppRuntime, "query1");
    InputHandler stream1 = siddhiAppRuntime.getInputHandler("Stream1");
    InputHandler stream3 = siddhiAppRuntime.getInputHandler("Stream3");
    siddhiAppRuntime.start();
    Thread.sleep(500);
    stream1.send(new Object[] { "IBM", 15.0f, 100 });
    Thread.sleep(600);
    stream3.send(new Object[] { "WSO2", 35.0f, 100 });
    Thread.sleep(100);
    callback.throwAssertionErrors();
    AssertJUnit.assertEquals("Number of success events", 0, callback.getInEventCount());
    AssertJUnit.assertEquals("Number of remove events", 0, callback.getRemoveEventCount());
    AssertJUnit.assertFalse("Event arrived", callback.isEventArrived());
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.wso2.siddhi.core.stream.input.InputHandler) TestUtil(org.wso2.siddhi.core.TestUtil) SiddhiAppRuntime(org.wso2.siddhi.core.SiddhiAppRuntime) SiddhiManager(org.wso2.siddhi.core.SiddhiManager) Test(org.testng.annotations.Test)

Example 100 with Not

use of org.wso2.siddhi.query.api.expression.condition.Not in project siddhi by wso2.

the class LogicalAbsentSequenceTestCase method testQueryAbsent50.

@Test(dependsOnMethods = { "testQueryAbsent49" })
public void testQueryAbsent50() throws InterruptedException {
    log.info("Test the query every (not e1 for 1 sec and not e2 for 1 sec), e3 with an e3 after 2 sec");
    SiddhiManager siddhiManager = new SiddhiManager();
    String streams = "" + "define stream Stream1 (symbol string, price float, volume int); " + "define stream Stream2 (symbol string, price float, volume int); " + "define stream Stream3 (symbol string, price float, volume int); ";
    String query = "" + "@info(name = 'query1') " + "from every (not Stream1[price>10] for 1 sec and not Stream2[price>20] for 1 sec), " + "e3=Stream3[price>30] " + "select e3.symbol as symbol " + "insert into OutputStream ;";
    SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(streams + query);
    TestUtil.TestCallback callback = TestUtil.addQueryCallback(siddhiAppRuntime, "query1", new Object[] { "WSO2" });
    InputHandler stream3 = siddhiAppRuntime.getInputHandler("Stream3");
    siddhiAppRuntime.start();
    Thread.sleep(2100);
    stream3.send(new Object[] { "WSO2", 35.0f, 100 });
    Thread.sleep(100);
    callback.throwAssertionErrors();
    AssertJUnit.assertEquals("Number of success events", 1, callback.getInEventCount());
    AssertJUnit.assertEquals("Number of remove events", 0, callback.getRemoveEventCount());
    AssertJUnit.assertTrue("Event arrived", callback.isEventArrived());
    siddhiAppRuntime.shutdown();
}
Also used : InputHandler(org.wso2.siddhi.core.stream.input.InputHandler) TestUtil(org.wso2.siddhi.core.TestUtil) SiddhiAppRuntime(org.wso2.siddhi.core.SiddhiAppRuntime) SiddhiManager(org.wso2.siddhi.core.SiddhiManager) Test(org.testng.annotations.Test)

Aggregations

Test (org.testng.annotations.Test)579 SiddhiManager (org.wso2.siddhi.core.SiddhiManager)336 SiddhiAppRuntime (org.wso2.siddhi.core.SiddhiAppRuntime)334 InputHandler (org.wso2.siddhi.core.stream.input.InputHandler)334 TestUtil (org.wso2.siddhi.core.TestUtil)300 APIManagementException (org.wso2.carbon.apimgt.core.exception.APIManagementException)171 HTTPCarbonMessage (org.wso2.transport.http.netty.message.HTTPCarbonMessage)157 HTTPTestRequest (org.ballerinalang.test.services.testutils.HTTPTestRequest)151 HashMap (java.util.HashMap)121 ErrorDTO (org.wso2.carbon.apimgt.rest.api.common.dto.ErrorDTO)115 HttpMessageDataStreamer (org.wso2.transport.http.netty.message.HttpMessageDataStreamer)112 ArrayList (java.util.ArrayList)92 BJSON (org.ballerinalang.model.values.BJSON)88 APIPublisher (org.wso2.carbon.apimgt.core.api.APIPublisher)63 IOException (java.io.IOException)62 APIMgtDAOException (org.wso2.carbon.apimgt.core.exception.APIMgtDAOException)58 Map (java.util.Map)47 APIStore (org.wso2.carbon.apimgt.core.api.APIStore)45 File (java.io.File)37 Response (javax.ws.rs.core.Response)37