/* * 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 com.teradata.tempto.ProductTest; import org.testng.annotations.Test; import java.sql.Connection; import static com.facebook.presto.tests.TestGroups.JMX_CONNECTOR; import static com.facebook.presto.tests.utils.JdbcDriverUtils.usingPrestoJdbcDriver; import static com.facebook.presto.tests.utils.JdbcDriverUtils.usingTeradataJdbcDriver; import static com.teradata.tempto.assertions.QueryAssert.assertThat; import static com.teradata.tempto.query.QueryExecutor.defaultQueryExecutor; import static com.teradata.tempto.query.QueryExecutor.query; import static java.sql.JDBCType.BIGINT; import static java.sql.JDBCType.LONGNVARCHAR; import static java.sql.JDBCType.VARCHAR; public class JmxConnectorTests extends ProductTest { @Test(groups = JMX_CONNECTOR) public void selectFromJavaRuntimeJmxMBean() { Connection connection = defaultQueryExecutor().getConnection(); String sql = "SELECT node, vmname, vmversion FROM jmx.current.\"java.lang:type=runtime\""; if (usingPrestoJdbcDriver(connection)) { assertThat(query(sql)) .hasColumns(LONGNVARCHAR, LONGNVARCHAR, LONGNVARCHAR) .hasAnyRows(); } else if (usingTeradataJdbcDriver(connection)) { assertThat(query(sql)) .hasColumns(VARCHAR, VARCHAR, VARCHAR) .hasAnyRows(); } else { throw new IllegalStateException(); } } @Test(groups = JMX_CONNECTOR) public void selectFromJavaOperatingSystemJmxMBean() { assertThat(query("SELECT openfiledescriptorcount, maxfiledescriptorcount " + "FROM jmx.current.\"java.lang:type=operatingsystem\"")) .hasColumns(BIGINT, BIGINT) .hasAnyRows(); } }