/* * 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.sqlserver; import com.teradata.tempto.AfterTestWithContext; import com.teradata.tempto.BeforeTestWithContext; import com.teradata.tempto.ProductTest; import com.teradata.tempto.Requirement; import com.teradata.tempto.RequirementsProvider; import com.teradata.tempto.configuration.Configuration; import com.teradata.tempto.query.QueryResult; import io.airlift.log.Logger; import org.testng.annotations.Test; import java.sql.Date; import java.sql.SQLException; import static com.facebook.presto.tests.TestGroups.PROFILE_SPECIFIC_TESTS; import static com.facebook.presto.tests.TestGroups.SQL_SERVER; import static com.facebook.presto.tests.sqlserver.SqlServerDataTypesTableDefinition.SQLSERVER_INSERT; import static com.facebook.presto.tests.sqlserver.TestConstants.KEY_SPACE; import static com.facebook.presto.tests.utils.QueryExecutors.onPresto; import static com.facebook.presto.tests.utils.QueryExecutors.onSqlServer; import static com.teradata.tempto.assertions.QueryAssert.Row.row; import static com.teradata.tempto.assertions.QueryAssert.assertThat; import static com.teradata.tempto.fulfillment.table.TableRequirements.immutableTable; import static java.lang.String.format; public class Insert extends ProductTest implements RequirementsProvider { @Override public Requirement getRequirements(Configuration configuration) { return immutableTable(SQLSERVER_INSERT); } private static final String SQLSERVER = "sqlserver"; private static final String MASTER = "master"; private static final String INSERT_TABLE_NAME = format("%s.%s", KEY_SPACE, SQLSERVER_INSERT.getName()); @BeforeTestWithContext @AfterTestWithContext public void dropTestTables() { try { onPresto().executeQuery(format("DROP TABLE IF EXISTS %s", INSERT_TABLE_NAME)); } catch (Exception e) { Logger.get(getClass()).warn(e, "failed to drop table"); } } @Test(groups = {SQL_SERVER, PROFILE_SPECIFIC_TESTS}) public void testInsertMin() throws SQLException { String sql = format( "INSERT INTO %s.%s values (BIGINT '%s', SMALLINT '%s', INTEGER '%s', DOUBLE '%s', " + "CHAR 'a ', 'aa', DOUBLE '%s', DATE '%s')", SQLSERVER, INSERT_TABLE_NAME, Long.valueOf("-9223372036854775807"), Short.MIN_VALUE, Integer.MIN_VALUE, Double.MIN_VALUE, Double.MIN_VALUE, Date.valueOf("1970-01-01")); // Min value for BIGINT would be updated to "-9223372036854775808" post https://github.com/prestodb/presto/issues/4571 onPresto().executeQuery(sql); sql = format( "SELECT * FROM %s.%s", MASTER, INSERT_TABLE_NAME); QueryResult queryResult = onSqlServer() .executeQuery(sql); assertThat(queryResult).contains( row(Long.valueOf("-9223372036854775807"), Short.MIN_VALUE, Integer.MIN_VALUE, Double.MIN_VALUE, "a ", "aa", Double.MIN_VALUE, Date.valueOf("1970-01-01") ) ); } @Test(groups = {SQL_SERVER, PROFILE_SPECIFIC_TESTS}) public void testInsertMax() throws SQLException { String sql = format( "INSERT INTO %s.%s values (BIGINT '%s', SMALLINT '%s', INTEGER '%s', DOUBLE '%s', " + "CHAR 'aaaa', 'aaaaaa', DOUBLE '%s', DATE '%s' )", SQLSERVER, INSERT_TABLE_NAME, Long.MAX_VALUE, Short.MAX_VALUE, Integer.MAX_VALUE, Double.MAX_VALUE, Double.valueOf("12345678912.3456756"), Date.valueOf("9999-12-31")); onPresto().executeQuery(sql); sql = format( "SELECT * FROM %s.%s", MASTER, INSERT_TABLE_NAME); QueryResult queryResult = onSqlServer() .executeQuery(sql); assertThat(queryResult).contains( row(Long.MAX_VALUE, Short.MAX_VALUE, Integer.MAX_VALUE, Double.MAX_VALUE, "aaaa", "aaaaaa", Double.valueOf("12345678912.3456756"), Date.valueOf("9999-12-31") ) ); } @Test(groups = {SQL_SERVER, PROFILE_SPECIFIC_TESTS}) public void testInsertNull() throws SQLException { String sql = format( "INSERT INTO %s.%s values (null, null, null, null, null, null, null, null)", SQLSERVER, INSERT_TABLE_NAME); onPresto().executeQuery(sql); sql = format( "SELECT * FROM %s.%s", MASTER, INSERT_TABLE_NAME); QueryResult queryResult = onSqlServer() .executeQuery(sql); assertThat(queryResult).contains( row(null, null, null, null, null, null, null, null ) ); } }