|
@@ -0,0 +1,85 @@
|
|
|
+
|
|
|
+ * Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
+ * contributor license agreements. See the NOTICE file distributed with
|
|
|
+ * this work for additional information regarding copyright ownership.
|
|
|
+ * The ASF licenses this file to You 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:
|
|
|
+ *
|
|
|
+ * 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 org.apache.dolphinscheduler.dao.datasource;
|
|
|
+
|
|
|
+import org.junit.Assert;
|
|
|
+import org.junit.Test;
|
|
|
+
|
|
|
+
|
|
|
+ * test data source of hive
|
|
|
+ */
|
|
|
+public class HiveDataSourceTest {
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testfilterOther() {
|
|
|
+ BaseDataSource hiveDataSource = new HiveDataSource();
|
|
|
+
|
|
|
+
|
|
|
+ String other = hiveDataSource.filterOther("charset=UTF-8");
|
|
|
+ Assert.assertEquals("charset=UTF-8", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("");
|
|
|
+ Assert.assertEquals("", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("hive.mapred.mode=strict");
|
|
|
+ Assert.assertEquals("?hive.mapred.mode=strict", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("hive.mapred.mode=strict;charset=UTF-8");
|
|
|
+ Assert.assertEquals("charset=UTF-8?hive.mapred.mode=strict", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("charset=UTF-8;hive.mapred.mode=strict;foo=bar");
|
|
|
+ Assert.assertEquals("charset=UTF-8;foo=bar?hive.mapred.mode=strict", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("charset=UTF-8;foo=bar;hive.mapred.mode=strict");
|
|
|
+ Assert.assertEquals("charset=UTF-8;foo=bar?hive.mapred.mode=strict", other);
|
|
|
+
|
|
|
+
|
|
|
+ other = hiveDataSource.filterOther("charset=UTF-8;foo=bar;hive.mapred.mode=strict;hive.exec.parallel=true");
|
|
|
+ Assert.assertEquals("charset=UTF-8;foo=bar?hive.mapred.mode=strict;hive.exec.parallel=true", other);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testGetHiveJdbcUrlOther() {
|
|
|
+
|
|
|
+ BaseDataSource hiveDataSource = new HiveDataSource();
|
|
|
+ hiveDataSource.setAddress("jdbc:hive2://127.0.0.1:10000");
|
|
|
+ hiveDataSource.setDatabase("test");
|
|
|
+ hiveDataSource.setPassword("123456");
|
|
|
+ hiveDataSource.setUser("test");
|
|
|
+ Assert.assertEquals("jdbc:hive2://127.0.0.1:10000/test", hiveDataSource.getJdbcUrl());
|
|
|
+
|
|
|
+ hiveDataSource.setOther("charset=UTF-8;hive.mapred.mode=strict;hive.server2.thrift.http.path=hs2");
|
|
|
+
|
|
|
+ Assert.assertEquals(
|
|
|
+ "jdbc:hive2://127.0.0.1:10000/test;charset=UTF-8?hive.mapred.mode=strict;hive.server2.thrift.http.path=hs2",
|
|
|
+ hiveDataSource.getJdbcUrl());
|
|
|
+
|
|
|
+ hiveDataSource.setOther("hive.mapred.mode=strict;hive.server2.thrift.http.path=hs2");
|
|
|
+
|
|
|
+ Assert.assertEquals(
|
|
|
+ "jdbc:hive2://127.0.0.1:10000/test;?hive.mapred.mode=strict;hive.server2.thrift.http.path=hs2",
|
|
|
+ hiveDataSource.getJdbcUrl());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|