blob: 64bb9ecb1c82937089cd7b73aada0de57b9f38c9 [file] [log] [blame]
/*
* 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.
*/
package org.apache.phoenix.end2end;
import static org.apache.phoenix.query.BaseTest.setUpConfigForMiniCluster;
import static org.junit.Assert.assertEquals;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.hadoop.hbase.HConstants;
import org.apache.phoenix.jdbc.PhoenixDriver;
import org.apache.phoenix.mapreduce.util.ConnectionUtil;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category(NeedsOwnMiniClusterTest.class)
public class ConnectionUtilIT {
private static HBaseTestingUtility hbaseTestUtil;
private static Configuration conf;
@BeforeClass
public static void setUp() throws Exception {
hbaseTestUtil = new HBaseTestingUtility();
conf = hbaseTestUtil.getConfiguration();
setUpConfigForMiniCluster(conf);
conf.set(HConstants.ZOOKEEPER_ZNODE_PARENT, "/hbase-test");
hbaseTestUtil.startMiniCluster();
Class.forName(PhoenixDriver.class.getName());
}
@Test
public void testInputAndOutputConnections() throws SQLException {
Connection inputConnection = ConnectionUtil.getInputConnection(conf);
Statement stmt = inputConnection.createStatement();
stmt.execute("create table t(a integer primary key,b varchar)");
stmt.execute("upsert into t values(1,'foo')");
inputConnection.commit();
ResultSet rs = stmt.executeQuery("select count(*) from t");
rs.next();
assertEquals(1, rs.getInt(1));
Connection outputConnection = ConnectionUtil.getOutputConnection(conf);
stmt = outputConnection.createStatement();
stmt.execute("create table t1(a integer primary key,b varchar)");
stmt.execute("upsert into t1 values(1,'foo')");
outputConnection.commit();
rs = stmt.executeQuery("select count(*) from t1");
rs.next();
assertEquals(1, rs.getInt(1));
}
}