Package org.apache.blur.agent.collectors.blur.query

Source Code of org.apache.blur.agent.collectors.blur.query.QueryCollectorTest

package org.apache.blur.agent.collectors.blur.query;

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import java.io.IOException;

import org.apache.blur.MiniCluster;
import org.apache.blur.agent.connections.blur.BlurDatabaseConnection;
import org.apache.blur.agent.test.BlurAgentBaseTestClass;
import org.apache.blur.thirdparty.thrift_0_9_0.TException;
import org.apache.blur.thrift.BlurClient;
import org.apache.blur.thrift.generated.Blur.Iface;
import org.apache.blur.thrift.generated.BlurException;
import org.apache.blur.thrift.generated.BlurQuery;
import org.apache.blur.thrift.generated.Query;
import org.apache.blur.thrift.generated.ScoreType;
import org.apache.blur.thrift.generated.TableDescriptor;
import org.junit.Test;


public class QueryCollectorTest extends BlurAgentBaseTestClass {
  private static BlurDatabaseConnection database = new BlurDatabaseConnection(jdbc);

  @Test
  public void shouldAddQueriesToDB() throws BlurException, TException, IOException {
    Iface blurConnection = BlurClient.getClient(MiniCluster.getControllerConnectionStr());


    TableDescriptor td = new TableDescriptor();
    td.setTableUri(MiniCluster.getFileSystemUri() + "/blur-tables/test");
    td.setName("test");
    td.setShardCount(1);

    blurConnection.createTable(td);
   
    BlurQuery query = new BlurQuery();
    query.setQuery(new Query("test.col:*", true, ScoreType.SUPER, null, null));
    query.setUuid("12345");
    blurConnection.query("test", query);
   
    System.out.println(jdbc.queryForList("select * from blur_queries"));
   
    Thread testQueryCollector = new Thread(new QueryCollector(BlurClient.getClient(MiniCluster.getControllerConnectionStr()), "test",
        1, database), "Query Test Thread");
    testQueryCollector.start();
    try {
      testQueryCollector.join();
    } catch (InterruptedException e) {
      fail("The test QueryCollector failed while waiting for it to finish!");
    }
    int query_count = jdbc.queryForInt("select count(id) from blur_queries");
    assertEquals(1, query_count);
  }
}
TOP

Related Classes of org.apache.blur.agent.collectors.blur.query.QueryCollectorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.