|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + * contributor license agreements. See the NOTICE file distributed with |
| 4 | + * this work for additional information regarding copyright ownership. |
| 5 | + * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | + * (the "License"); you may not use this file except in compliance with |
| 7 | + * the License. You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | + |
| 18 | +package org.apache.shardingsphere.test.natived.jdbc.databases.hive; |
| 19 | + |
| 20 | +import com.zaxxer.hikari.HikariConfig; |
| 21 | +import com.zaxxer.hikari.HikariDataSource; |
| 22 | +import org.apache.shardingsphere.test.natived.commons.TestShardingService; |
| 23 | +import org.awaitility.Awaitility; |
| 24 | +import org.junit.jupiter.api.AfterAll; |
| 25 | +import org.junit.jupiter.api.BeforeAll; |
| 26 | +import org.junit.jupiter.api.Test; |
| 27 | +import org.junit.jupiter.api.condition.EnabledInNativeImage; |
| 28 | +import org.testcontainers.containers.GenericContainer; |
| 29 | +import org.testcontainers.containers.Network; |
| 30 | +import org.testcontainers.junit.jupiter.Container; |
| 31 | +import org.testcontainers.junit.jupiter.Testcontainers; |
| 32 | + |
| 33 | +import javax.sql.DataSource; |
| 34 | +import java.nio.file.Paths; |
| 35 | +import java.sql.Connection; |
| 36 | +import java.sql.DriverManager; |
| 37 | +import java.sql.SQLException; |
| 38 | +import java.sql.Statement; |
| 39 | +import java.time.Duration; |
| 40 | +import java.util.Properties; |
| 41 | + |
| 42 | +import static org.hamcrest.MatcherAssert.assertThat; |
| 43 | +import static org.hamcrest.Matchers.is; |
| 44 | +import static org.hamcrest.Matchers.nullValue; |
| 45 | + |
| 46 | +@SuppressWarnings({"SqlDialectInspection", "SqlNoDataSourceInspection", "resource"}) |
| 47 | +@EnabledInNativeImage |
| 48 | +@Testcontainers |
| 49 | +class StandaloneMetastoreTest { |
| 50 | + |
| 51 | + private static final Network NETWORK = Network.newNetwork(); |
| 52 | + |
| 53 | + @Container |
| 54 | + public static final GenericContainer<?> HMS_CONTAINER = new GenericContainer<>("apache/hive:4.0.1") |
| 55 | + .withEnv("SERVICE_NAME", "metastore") |
| 56 | + .withNetwork(NETWORK) |
| 57 | + .withNetworkAliases("metastore"); |
| 58 | + |
| 59 | + @Container |
| 60 | + public static final GenericContainer<?> HS2_CONTAINER = new GenericContainer<>("apache/hive:4.0.1") |
| 61 | + .withEnv("SERVICE_NAME", "hiveserver2") |
| 62 | + .withEnv("SERVICE_OPTS", "-Dhive.metastore.uris=thrift://metastore:9083") |
| 63 | + .withNetwork(NETWORK) |
| 64 | + .withExposedPorts(10000) |
| 65 | + .dependsOn(HMS_CONTAINER); |
| 66 | + |
| 67 | + private static final String SYSTEM_PROP_KEY_PREFIX = "fixture.test-native.yaml.database.hive.hms."; |
| 68 | + |
| 69 | + // Due to https://issues.apache.org/jira/browse/HIVE-28317 , the `initFile` parameter of HiveServer2 JDBC Driver must be an absolute path. |
| 70 | + private static final String ABSOLUTE_PATH = Paths.get("src/test/resources/test-native/sql/test-native-databases-hive-iceberg.sql").toAbsolutePath().toString(); |
| 71 | + |
| 72 | + private String jdbcUrlPrefix; |
| 73 | + |
| 74 | + @BeforeAll |
| 75 | + static void beforeAll() { |
| 76 | + assertThat(System.getProperty(SYSTEM_PROP_KEY_PREFIX + "ds0.jdbc-url"), is(nullValue())); |
| 77 | + assertThat(System.getProperty(SYSTEM_PROP_KEY_PREFIX + "ds1.jdbc-url"), is(nullValue())); |
| 78 | + assertThat(System.getProperty(SYSTEM_PROP_KEY_PREFIX + "ds2.jdbc-url"), is(nullValue())); |
| 79 | + } |
| 80 | + |
| 81 | + @AfterAll |
| 82 | + static void afterAll() { |
| 83 | + NETWORK.close(); |
| 84 | + System.clearProperty(SYSTEM_PROP_KEY_PREFIX + "ds0.jdbc-url"); |
| 85 | + System.clearProperty(SYSTEM_PROP_KEY_PREFIX + "ds1.jdbc-url"); |
| 86 | + System.clearProperty(SYSTEM_PROP_KEY_PREFIX + "ds2.jdbc-url"); |
| 87 | + } |
| 88 | + |
| 89 | + @Test |
| 90 | + void assertShardingInLocalTransactions() throws SQLException { |
| 91 | + jdbcUrlPrefix = "jdbc:hive2://localhost:" + HS2_CONTAINER.getMappedPort(10000) + "/"; |
| 92 | + DataSource dataSource = createDataSource(); |
| 93 | + TestShardingService testShardingService = new TestShardingService(dataSource); |
| 94 | + testShardingService.processSuccessInHive(); |
| 95 | + } |
| 96 | + |
| 97 | + private Connection openConnection() throws SQLException { |
| 98 | + Properties props = new Properties(); |
| 99 | + return DriverManager.getConnection(jdbcUrlPrefix, props); |
| 100 | + } |
| 101 | + |
| 102 | + private DataSource createDataSource() throws SQLException { |
| 103 | + Awaitility.await().atMost(Duration.ofMinutes(1L)).ignoreExceptions().until(() -> { |
| 104 | + openConnection().close(); |
| 105 | + return true; |
| 106 | + }); |
| 107 | + try ( |
| 108 | + Connection connection = openConnection(); |
| 109 | + Statement statement = connection.createStatement()) { |
| 110 | + statement.executeUpdate("CREATE DATABASE demo_ds_0"); |
| 111 | + statement.executeUpdate("CREATE DATABASE demo_ds_1"); |
| 112 | + statement.executeUpdate("CREATE DATABASE demo_ds_2"); |
| 113 | + } |
| 114 | + HikariConfig config = new HikariConfig(); |
| 115 | + config.setDriverClassName("org.apache.shardingsphere.driver.ShardingSphereDriver"); |
| 116 | + config.setJdbcUrl("jdbc:shardingsphere:classpath:test-native/yaml/jdbc/databases/hive/standalone-hms.yaml?placeholder-type=system_props"); |
| 117 | + System.setProperty(SYSTEM_PROP_KEY_PREFIX + "ds0.jdbc-url", jdbcUrlPrefix + "demo_ds_0" + ";initFile=" + ABSOLUTE_PATH); |
| 118 | + System.setProperty(SYSTEM_PROP_KEY_PREFIX + "ds1.jdbc-url", jdbcUrlPrefix + "demo_ds_1" + ";initFile=" + ABSOLUTE_PATH); |
| 119 | + System.setProperty(SYSTEM_PROP_KEY_PREFIX + "ds2.jdbc-url", jdbcUrlPrefix + "demo_ds_2" + ";initFile=" + ABSOLUTE_PATH); |
| 120 | + return new HikariDataSource(config); |
| 121 | + } |
| 122 | +} |
0 commit comments