Search in sources :

Example 6 with BBoxDBClient

use of org.bboxdb.network.client.BBoxDBClient in project bboxdb by jnidzwetzki.

the class TestNetworkCommunication method testQueriesWithoutTables.

/**
 * Start a bounding box query without inserted tuples
 * @throws ExecutionException
 * @throws InterruptedException
 * @throws BBoxDBException
 */
@Test(timeout = 60000)
public void testQueriesWithoutTables() throws InterruptedException, ExecutionException, BBoxDBException {
    final BBoxDBConnection bboxdbConnection = connectToServer();
    final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
    final String table = DISTRIBUTION_GROUP + "_nonexisting";
    System.out.println("== Waiting for queryBoundingBox");
    final BoundingBox boundingBox = new BoundingBox(-1d, 2d, -1d, 2d);
    final TupleListFuture result1 = bboxDBClient.queryBoundingBox(table, boundingBox);
    result1.setRetryPolicy(FutureRetryPolicy.RETRY_POLICY_NONE);
    result1.waitForAll();
    Assert.assertTrue(result1.isFailed());
    Assert.assertEquals(ErrorMessages.ERROR_TABLE_NOT_EXIST, result1.getMessage(0));
    System.out.println("== Waiting for queryKey");
    final TupleListFuture result2 = bboxDBClient.queryKey(table, "abc");
    result2.setRetryPolicy(FutureRetryPolicy.RETRY_POLICY_NONE);
    result2.waitForAll();
    Assert.assertTrue(result2.isFailed());
    Assert.assertEquals(ErrorMessages.ERROR_TABLE_NOT_EXIST, result2.getMessage(0));
    System.out.println("== Waiting for queryInsertedTime");
    final TupleListFuture result3 = bboxDBClient.queryInsertedTime(table, 1234);
    result3.setRetryPolicy(FutureRetryPolicy.RETRY_POLICY_NONE);
    result3.waitForAll();
    Assert.assertTrue(result3.isFailed());
    Assert.assertEquals(ErrorMessages.ERROR_TABLE_NOT_EXIST, result3.getMessage(0));
    System.out.println("== Waiting for queryVersionTime");
    final TupleListFuture result4 = bboxDBClient.queryVersionTime(table, 1234);
    result4.setRetryPolicy(FutureRetryPolicy.RETRY_POLICY_NONE);
    result4.waitForAll();
    Assert.assertTrue(result4.isFailed());
    Assert.assertEquals(ErrorMessages.ERROR_TABLE_NOT_EXIST, result4.getMessage(0));
    System.out.println("== Waiting for queryBoundingBoxAndTime");
    final TupleListFuture result5 = bboxDBClient.queryBoundingBoxAndTime(table, boundingBox, 1234);
    result5.setRetryPolicy(FutureRetryPolicy.RETRY_POLICY_NONE);
    result5.waitForAll();
    Assert.assertTrue(result5.isFailed());
    Assert.assertEquals(ErrorMessages.ERROR_TABLE_NOT_EXIST, result5.getMessage(0));
    disconnect(bboxDBClient);
}
Also used : BBoxDBClient(org.bboxdb.network.client.BBoxDBClient) BoundingBox(org.bboxdb.commons.math.BoundingBox) TupleListFuture(org.bboxdb.network.client.future.TupleListFuture) BBoxDBConnection(org.bboxdb.network.client.BBoxDBConnection) Test(org.junit.Test)

Example 7 with BBoxDBClient

use of org.bboxdb.network.client.BBoxDBClient in project bboxdb by jnidzwetzki.

the class TestNetworkCommunication method testDoubleConnect.

/**
 * Test the double connect call
 */
@Test(timeout = 60000)
public void testDoubleConnect() {
    final BBoxDBConnection bboxdbConnection = connectToServer();
    final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
    Assert.assertTrue(bboxDBClient.isConnected());
    Assert.assertTrue(bboxDBClient.connect());
    Assert.assertTrue(bboxDBClient.isConnected());
    disconnect(bboxDBClient);
}
Also used : BBoxDBClient(org.bboxdb.network.client.BBoxDBClient) BBoxDBConnection(org.bboxdb.network.client.BBoxDBConnection) Test(org.junit.Test)

Example 8 with BBoxDBClient

use of org.bboxdb.network.client.BBoxDBClient in project bboxdb by jnidzwetzki.

the class TestNetworkCommunication method testInsertAndBoundingBoxContinousQuery.

/**
 * Insert some tuples and start a bounding box query afterwards
 * @throws ExecutionException
 * @throws InterruptedException
 * @throws BBoxDBException
 */
@Test(timeout = 60000)
public void testInsertAndBoundingBoxContinousQuery() throws InterruptedException, ExecutionException, BBoxDBException {
    final BBoxDBConnection bboxdbConnection = connectToServer();
    final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
    NetworkQueryHelper.testBoundingBoxQueryContinous(bboxDBClient, DISTRIBUTION_GROUP);
    disconnect(bboxDBClient);
}
Also used : BBoxDBClient(org.bboxdb.network.client.BBoxDBClient) BBoxDBConnection(org.bboxdb.network.client.BBoxDBConnection) Test(org.junit.Test)

Example 9 with BBoxDBClient

use of org.bboxdb.network.client.BBoxDBClient in project bboxdb by jnidzwetzki.

the class TestNetworkCommunication method testPaging.

/**
 * Insert some tuples and request it via paging
 * @throws ExecutionException
 * @throws InterruptedException
 * @throws BBoxDBException
 */
@Test(timeout = 60000)
public void testPaging() throws InterruptedException, ExecutionException, BBoxDBException {
    System.out.println("=== Running testPaging");
    final String table = DISTRIBUTION_GROUP + "_relation9999";
    final BBoxDBConnection bboxdbConnection = connectToServer();
    final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
    // Create table
    final EmptyResultFuture resultCreateTable = bboxDBClient.createTable(table, new TupleStoreConfiguration());
    resultCreateTable.waitForAll();
    Assert.assertFalse(resultCreateTable.isFailed());
    // Inside our bbox query
    final Tuple tuple1 = new Tuple("abc", new BoundingBox(0d, 1d, 0d, 1d), "abc".getBytes());
    final EmptyResultFuture result1 = bboxDBClient.insertTuple(table, tuple1);
    final Tuple tuple2 = new Tuple("def", new BoundingBox(0d, 0.5d, 0d, 0.5d), "def".getBytes());
    final EmptyResultFuture result2 = bboxDBClient.insertTuple(table, tuple2);
    final Tuple tuple3 = new Tuple("geh", new BoundingBox(0.5d, 1.5d, 0.5d, 1.5d), "geh".getBytes());
    final EmptyResultFuture result3 = bboxDBClient.insertTuple(table, tuple3);
    final Tuple tuple4 = new Tuple("ijk", new BoundingBox(-10d, -9d, -10d, -9d), "ijk".getBytes());
    final EmptyResultFuture result4 = bboxDBClient.insertTuple(table, tuple4);
    final Tuple tuple5 = new Tuple("lmn", new BoundingBox(1d, 2d, 1d, 2d), "lmn".getBytes());
    final EmptyResultFuture result5 = bboxDBClient.insertTuple(table, tuple5);
    result1.waitForAll();
    result2.waitForAll();
    result3.waitForAll();
    result4.waitForAll();
    result5.waitForAll();
    // Without paging
    System.out.println("Pages = unlimited");
    bboxDBClient.setPagingEnabled(false);
    bboxDBClient.setTuplesPerPage((short) 0);
    final TupleListFuture future = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
    future.waitForAll();
    final List<Tuple> resultList = Lists.newArrayList(future.iterator());
    Assert.assertEquals(5, resultList.size());
    // With paging (tuples per page 10)
    System.out.println("Pages = 10");
    bboxDBClient.setPagingEnabled(true);
    bboxDBClient.setTuplesPerPage((short) 10);
    final TupleListFuture future2 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
    future2.waitForAll();
    final List<Tuple> resultList2 = Lists.newArrayList(future2.iterator());
    Assert.assertEquals(5, resultList2.size());
    // With paging (tuples per page 5)
    System.out.println("Pages = 5");
    bboxDBClient.setPagingEnabled(true);
    bboxDBClient.setTuplesPerPage((short) 5);
    final TupleListFuture future3 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
    future3.waitForAll();
    final List<Tuple> resultList3 = Lists.newArrayList(future3.iterator());
    Assert.assertEquals(5, resultList3.size());
    // With paging (tuples per page 2)
    System.out.println("Pages = 2");
    bboxDBClient.setPagingEnabled(true);
    bboxDBClient.setTuplesPerPage((short) 2);
    final TupleListFuture future4 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
    System.out.println("Client is waiting on: " + future4);
    future4.waitForAll();
    final List<Tuple> resultList4 = Lists.newArrayList(future4.iterator());
    Assert.assertEquals(5, resultList4.size());
    // With paging (tuples per page 1)
    System.out.println("Pages = 1");
    bboxDBClient.setPagingEnabled(true);
    bboxDBClient.setTuplesPerPage((short) 1);
    final TupleListFuture future5 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
    future5.waitForAll();
    final List<Tuple> resultList5 = Lists.newArrayList(future5.iterator());
    Assert.assertEquals(5, resultList5.size());
    System.out.println("=== End testPaging");
    disconnect(bboxDBClient);
}
Also used : BBoxDBClient(org.bboxdb.network.client.BBoxDBClient) TupleStoreConfiguration(org.bboxdb.storage.entity.TupleStoreConfiguration) BoundingBox(org.bboxdb.commons.math.BoundingBox) TupleListFuture(org.bboxdb.network.client.future.TupleListFuture) BBoxDBConnection(org.bboxdb.network.client.BBoxDBConnection) Tuple(org.bboxdb.storage.entity.Tuple) EmptyResultFuture(org.bboxdb.network.client.future.EmptyResultFuture) Test(org.junit.Test)

Example 10 with BBoxDBClient

use of org.bboxdb.network.client.BBoxDBClient in project bboxdb by jnidzwetzki.

the class TestNetworkCommunication method testSendDisconnectPackage.

/**
 * Integration test for the disconnect package
 */
@Test(timeout = 60000)
public void testSendDisconnectPackage() {
    System.out.println("=== Running testSendDisconnectPackage");
    final BBoxDBConnection bboxdbConnection = connectToServer();
    final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
    Assert.assertTrue(bboxDBClient.isConnected());
    disconnect(bboxDBClient);
    Assert.assertFalse(bboxDBClient.isConnected());
    disconnect(bboxDBClient);
    System.out.println("=== End testSendDisconnectPackage");
}
Also used : BBoxDBClient(org.bboxdb.network.client.BBoxDBClient) BBoxDBConnection(org.bboxdb.network.client.BBoxDBConnection) Test(org.junit.Test)

Aggregations

BBoxDBClient (org.bboxdb.network.client.BBoxDBClient)27 BBoxDBConnection (org.bboxdb.network.client.BBoxDBConnection)26 Test (org.junit.Test)20 EmptyResultFuture (org.bboxdb.network.client.future.EmptyResultFuture)8 Tuple (org.bboxdb.storage.entity.Tuple)5 BoundingBox (org.bboxdb.commons.math.BoundingBox)4 TupleListFuture (org.bboxdb.network.client.future.TupleListFuture)4 TupleStoreConfiguration (org.bboxdb.storage.entity.TupleStoreConfiguration)4 BBoxDBInstance (org.bboxdb.distribution.membership.BBoxDBInstance)2 List (java.util.List)1 ExecutionException (java.util.concurrent.ExecutionException)1 TimeoutException (java.util.concurrent.TimeoutException)1 TupleStoreAdapter (org.bboxdb.distribution.zookeeper.TupleStoreAdapter)1 ZookeeperClient (org.bboxdb.distribution.zookeeper.ZookeeperClient)1 NetworkRequestPackage (org.bboxdb.network.packages.NetworkRequestPackage)1 RoutingHeader (org.bboxdb.network.routing.RoutingHeader)1 StorageManagerException (org.bboxdb.storage.StorageManagerException)1 DistributionGroupConfiguration (org.bboxdb.storage.entity.DistributionGroupConfiguration)1 TupleStoreName (org.bboxdb.storage.entity.TupleStoreName)1 Before (org.junit.Before)1