com.facebook.presto.tests.SystemConnectorTests Maven / Gradle / Ivy
/*
* Licensed 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 com.facebook.presto.tests;
import io.prestodb.tempto.ProductTest;
import org.testng.annotations.Test;
import java.sql.JDBCType;
import static com.facebook.presto.tests.TestGroups.JDBC;
import static com.facebook.presto.tests.TestGroups.SYSTEM_CONNECTOR;
import static com.facebook.presto.tests.utils.JdbcDriverUtils.usingTeradataJdbcDriver;
import static io.prestodb.tempto.assertions.QueryAssert.assertThat;
import static io.prestodb.tempto.query.QueryExecutor.defaultQueryExecutor;
import static io.prestodb.tempto.query.QueryExecutor.query;
import static java.sql.JDBCType.ARRAY;
import static java.sql.JDBCType.BIGINT;
import static java.sql.JDBCType.TIMESTAMP;
import static java.sql.JDBCType.VARCHAR;
public class SystemConnectorTests
extends ProductTest
{
@Test(groups = {SYSTEM_CONNECTOR, JDBC})
public void selectRuntimeNodes()
{
String sql = "SELECT node_id, http_uri, node_version, state FROM system.runtime.nodes";
assertThat(query(sql))
.hasColumns(VARCHAR, VARCHAR, VARCHAR, VARCHAR)
.hasAnyRows();
}
@Test(groups = {SYSTEM_CONNECTOR, JDBC})
public void selectRuntimeQueries()
{
String sql = "SELECT" +
" query_id," +
" state," +
" user," +
" query," +
" resource_group_id," +
" queued_time_ms," +
" analysis_time_ms," +
" created," +
" started," +
" last_heartbeat," +
" 'end' " +
"FROM system.runtime.queries";
JDBCType arrayType = usingTeradataJdbcDriver(defaultQueryExecutor().getConnection()) ? VARCHAR : ARRAY;
assertThat(query(sql))
.hasColumns(VARCHAR, VARCHAR, VARCHAR, VARCHAR, arrayType,
BIGINT, BIGINT, TIMESTAMP, TIMESTAMP, TIMESTAMP, VARCHAR)
.hasAnyRows();
}
@Test(groups = {SYSTEM_CONNECTOR, JDBC})
public void selectRuntimeTasks()
{
String sql = "SELECT" +
" node_id," +
" task_id," +
" stage_id," +
" query_id," +
" state," +
" splits," +
" queued_splits," +
" running_splits," +
" completed_splits," +
" split_scheduled_time_ms," +
" split_cpu_time_ms," +
" split_blocked_time_ms," +
" raw_input_bytes," +
" raw_input_rows," +
" processed_input_bytes," +
" processed_input_rows," +
" output_bytes," +
" output_rows," +
" physical_written_bytes," +
" created," +
" start," +
" last_heartbeat," +
" 'end' " +
"FROM SYSTEM.runtime.tasks";
assertThat(query(sql))
.hasColumns(VARCHAR, VARCHAR, VARCHAR, VARCHAR, VARCHAR,
BIGINT, BIGINT, BIGINT, BIGINT, BIGINT, BIGINT, BIGINT, BIGINT,
BIGINT, BIGINT, BIGINT, BIGINT, BIGINT, BIGINT, TIMESTAMP, TIMESTAMP, TIMESTAMP, VARCHAR)
.hasAnyRows();
}
@Test(groups = {SYSTEM_CONNECTOR, JDBC})
public void selectMetadataCatalogs()
{
String sql = "select catalog_name, connector_id from system.metadata.catalogs";
assertThat(query(sql))
.hasColumns(VARCHAR, VARCHAR)
.hasAnyRows();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy