io.prestosql.tests.TestSystemConnector 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 io.prestosql.tests;
import io.prestosql.tempto.ProductTest;
import org.testng.annotations.Test;
import static io.prestosql.tempto.assertions.QueryAssert.assertThat;
import static io.prestosql.tempto.query.QueryExecutor.query;
import static io.prestosql.tests.TestGroups.JDBC;
import static io.prestosql.tests.TestGroups.SYSTEM_CONNECTOR;
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 TestSystemConnector
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," +
" planning_time_ms," +
" created," +
" started," +
" last_heartbeat," +
" \"end\"," +
" error_type," +
" error_code " +
"FROM system.runtime.queries";
assertThat(query(sql))
.hasColumns(VARCHAR, VARCHAR, VARCHAR, VARCHAR, ARRAY,
BIGINT, BIGINT, BIGINT, TIMESTAMP, TIMESTAMP, TIMESTAMP, TIMESTAMP, VARCHAR, 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_input_bytes," +
" 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, BIGINT, TIMESTAMP, TIMESTAMP, TIMESTAMP, TIMESTAMP)
.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