arina-ielchiieva commented on a change in pull request #1749: DRILL-7177: 
Format Plugin for Excel Files
URL: https://github.com/apache/drill/pull/1749#discussion_r339077161
 
 

 ##########
 File path: 
contrib/format-excel/src/test/java/org/apache/drill/exec/store/excel/TestExcelFormat.java
 ##########
 @@ -0,0 +1,360 @@
+/*
+ * 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://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 org.apache.drill.exec.store.excel;
+
+import org.apache.drill.common.exceptions.DrillRuntimeException;
+import org.apache.drill.common.exceptions.ExecutionSetupException;
+import org.apache.drill.common.types.TypeProtos;
+import org.apache.drill.exec.record.metadata.TupleMetadata;
+import org.apache.drill.exec.rpc.RpcException;
+import org.apache.drill.exec.server.Drillbit;
+import org.apache.drill.exec.store.StoragePluginRegistry;
+import org.apache.drill.exec.store.dfs.FileSystemConfig;
+import org.apache.drill.exec.store.dfs.FileSystemPlugin;
+import org.apache.drill.exec.physical.rowSet.RowSet;
+import org.apache.drill.exec.physical.rowSet.RowSetBuilder;
+import org.apache.drill.test.ClusterFixture;
+import org.apache.drill.test.ClusterTest;
+import org.apache.drill.test.QueryBuilder;
+import org.apache.drill.test.rowSet.RowSetComparison;
+import org.apache.drill.exec.record.metadata.SchemaBuilder;
+import org.apache.hadoop.fs.FileSystem;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.apache.drill.categories.RowSetTests;
+import org.apache.hadoop.io.compress.CompressionCodecFactory;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+@Category(RowSetTests.class)
+public class TestExcelFormat extends ClusterTest {
+
+  private static FileSystem fs;
+
+  private static CompressionCodecFactory factory;
+
+  @BeforeClass
+  public static void setup() throws Exception {
+    ClusterTest.startCluster(ClusterFixture.builder(dirTestWatcher));
+    definePlugin();
+  }
+
+  private static void definePlugin() throws ExecutionSetupException {
+    ExcelFormatConfig sampleConfig = new ExcelFormatConfig();
+
+    // Define a temporary plugin for the "cp" storage plugin.
+    Drillbit drillbit = cluster.drillbit();
+    final StoragePluginRegistry pluginRegistry = 
drillbit.getContext().getStorage();
+    final FileSystemPlugin plugin = (FileSystemPlugin) 
pluginRegistry.getPlugin("cp");
+    final FileSystemConfig pluginConfig = (FileSystemConfig) 
plugin.getConfig();
+    pluginConfig.getFormats().put("sample", sampleConfig);
+    pluginRegistry.createOrUpdate("cp", pluginConfig, false);
+  }
+
+  @Test
+  public void testStarQuery() throws Exception {
+    String sql = "SELECT * FROM cp.`excel/test_data.xlsx`";
+
+    testBuilder()
+      .sqlQuery(sql)
+      .ordered().baselineColumns("id", "first_name", "last_name", "email", 
"gender", "birthdate", "balance", "order_count", "average_order")
+      .baselineValues(1.0, "Cornelia", "Matej", "cmat...@mtv.com", "Female", 
"10/31/1974", 735.29, 22.0, 33.42227272727273)
+      .baselineValues(2.0, "Nydia", "Heintsch", "nheints...@godaddy.com", 
"Female", "12/10/1966", 784.14, 22.0, 35.64272727272727)
+      .baselineValues(3.0, "Waiter", "Sherel", "wsher...@utexas.edu", "Male", 
"3/12/1961", 172.36, 17.0, 10.138823529411766)
+      .baselineValues(4.0, "Cicely", "Lyver", "clyv...@mysql.com", "Female", 
"5/4/2000", 987.39, 6.0, 164.565)
+      .baselineValues(5.0, "Dorie", "Doe", "dd...@spotify.com", "Female", 
"12/28/1955", 852.48, 17.0, 50.14588235294118)
+      .go();
+  }
+
+  @Test
+  public void testExplicitAllQuery() throws RpcException {
+    String sql = "SELECT id, first_name, last_name, email, gender, birthdate, 
balance, order_count, average_order FROM cp.`excel/test_data.xlsx`";
+
+    QueryBuilder q = client.queryBuilder().sql(sql);
+    RowSet results = q.rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("id", TypeProtos.MinorType.FLOAT8)
+      .addNullable("first_name", TypeProtos.MinorType.VARCHAR)
+      .addNullable("last_name", TypeProtos.MinorType.VARCHAR)
+      .addNullable("email", TypeProtos.MinorType.VARCHAR)
+      .addNullable("gender", TypeProtos.MinorType.VARCHAR)
+      .addNullable("birthdate", TypeProtos.MinorType.VARCHAR)
+      .addNullable("balance", TypeProtos.MinorType.FLOAT8)
+      .addNullable("order_count", TypeProtos.MinorType.FLOAT8)
+      .addNullable("average_order", TypeProtos.MinorType.FLOAT8)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow(1.0, "Cornelia", "Matej", "cmat...@mtv.com", "Female", 
"10/31/1974", 735.29, 22.0, 33.42227273)
+      .addRow(2.0, "Nydia", "Heintsch", "nheints...@godaddy.com", "Female", 
"12/10/1966", 784.14, 22.0, 35.64272727)
+      .addRow(3.0, "Waiter", "Sherel", "wsher...@utexas.edu", "Male", 
"3/12/1961", 172.36, 17.0, 10.13882353)
+      .addRow(4.0, "Cicely", "Lyver", "clyv...@mysql.com", "Female", 
"5/4/2000", 987.39, 6.0, 164.565)
+      .addRow(5.0, "Dorie", "Doe", "dd...@spotify.com", "Female", 
"12/28/1955", 852.48, 17.0, 50.14588235)
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testExplicitSomeQuery() throws RpcException {
+    String sql = "SELECT id, first_name, order_count FROM 
cp.`excel/test_data.xlsx`";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("id", TypeProtos.MinorType.FLOAT8)
+      .addNullable("first_name", TypeProtos.MinorType.VARCHAR)
+      .addNullable("order_count", TypeProtos.MinorType.FLOAT8)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow(1.0, "Cornelia", 22.0)
+      .addRow(2.0, "Nydia", 22.0)
+      .addRow(3.0, "Waiter", 17.0)
+      .addRow(4.0, "Cicely", 6.0)
+      .addRow(5.0, "Dorie", 17.0)
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testNonDefaultSheetQuery() throws RpcException {
+    String sql = "SELECT * FROM  table(cp.`excel/test_data.xlsx` (type => 
'excel', sheetName => 'secondSheet'))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("event_date", TypeProtos.MinorType.VARCHAR)
+      .addNullable("ip_address", TypeProtos.MinorType.VARCHAR)
+      .addNullable("user_agent", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+        .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+        .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+        .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+        .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 
(Macintosh; U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like 
Gecko) Version/5.0.4 Safari/533.20.27")
+        .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testExplicitNonDefaultSheetQuery() throws RpcException {
+    String sql = "SELECT event_date, ip_address, user_agent FROM  
table(cp.`excel/test_data.xlsx` (type => 'excel', sheetName => 'secondSheet'))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("event_date", TypeProtos.MinorType.VARCHAR)
+      .addNullable("ip_address", TypeProtos.MinorType.VARCHAR)
+      .addNullable("user_agent", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+      .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+      .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+      .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows NT 
6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+      .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 (Macintosh; 
U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) 
Version/5.0.4 Safari/533.20.27")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  /**
+   * This test verifies that when a user attempts to open a sheet that doesn't 
exist, the plugin will throw an error
+   */
+  @Test
+  public void testInvalidSheetQuery() throws Exception {
+    String sql = "SELECT * FROM  table(cp.`excel/test_data.xlsx` (type => 
'excel', sheetName => 'noSuchSheet')) LIMIT 1";
+    try {
+      run(sql);
+      fail();
+    } catch (DrillRuntimeException e) {
+      assertTrue(e.getMessage().contains("Could not open sheet "));
+    }
+  }
+
+  @Test
+  public void testDefineColumnsQuery() throws RpcException {
+    String sql = "SELECT * FROM  table(cp.`excel/test_data.xlsx` (type => 
'excel', firstColumn => 2, lastColumn => 5))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("first_name", TypeProtos.MinorType.VARCHAR)
+      .addNullable("last_name", TypeProtos.MinorType.VARCHAR)
+      .addNullable("email", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("Cornelia", "Matej", "cmat...@mtv.com")
+      .addRow("Nydia", "Heintsch", "nheints...@godaddy.com")
+      .addRow("Waiter", "Sherel", "wsher...@utexas.edu")
+      .addRow("Cicely", "Lyver", "clyv...@mysql.com")
+      .addRow("Dorie", "Doe", "dd...@spotify.com")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testLastRowQuery() throws RpcException {
+    String sql = "SELECT event_date, ip_address, user_agent FROM 
table(cp.`excel/test_data.xlsx` (type => 'excel', sheetName => 'secondSheet', 
lastRow => 5))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("event_date", TypeProtos.MinorType.VARCHAR)
+      .addNullable("ip_address", TypeProtos.MinorType.VARCHAR)
+      .addNullable("user_agent", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+      .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+      .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+      .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows NT 
6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+      .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 (Macintosh; 
U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) 
Version/5.0.4 Safari/533.20.27")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testStarNoFieldNamesQuery() throws RpcException {
+    String sql = "SELECT * FROM  table(cp.`excel/test_data.xlsx` (type => 
'excel', sheetName => 'thirdSheet', headerRow => -1))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("field_1", TypeProtos.MinorType.VARCHAR)
+      .addNullable("field_2", TypeProtos.MinorType.VARCHAR)
+      .addNullable("field_3", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+      .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+      .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+      .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows NT 
6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+      .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 (Macintosh; 
U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) 
Version/5.0.4 Safari/533.20.27")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testExplicitNoFieldNamesQuery() throws RpcException {
+    String sql = "SELECT field_1, field_2, field_3 FROM  
table(cp.`excel/test_data.xlsx` (type => 'excel', sheetName => 'thirdSheet', 
headerRow => -1))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("field_1", TypeProtos.MinorType.VARCHAR)
+      .addNullable("field_2", TypeProtos.MinorType.VARCHAR)
+      .addNullable("field_3", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+      .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+      .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+      .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows NT 
6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+      .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 (Macintosh; 
U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) 
Version/5.0.4 Safari/533.20.27")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  @Test
+  public void testBlankRowsInFileQuery() throws RpcException {
+    String sql = "SELECT * FROM  table(cp.`excel/test_data.xlsx` (type => 
'excel', sheetName => 'fourthSheet'))";
+
+    RowSet results = client.queryBuilder().sql(sql).rowSet();
+    TupleMetadata expectedSchema = new SchemaBuilder()
+      .addNullable("event_date", TypeProtos.MinorType.VARCHAR)
+      .addNullable("ip_address", TypeProtos.MinorType.VARCHAR)
+      .addNullable("user_agent", TypeProtos.MinorType.VARCHAR)
+      .buildSchema();
+
+    RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+      .addRow("2019-02-17 11:21:45", "166.11.144.176", "Mozilla/5.0 (Windows; 
U; Windows NT 5.1; ru-RU) AppleWebKit/533.19.4 (KHTML, like Gecko) 
Version/5.0.3 Safari/533.19.4")
+      .addRow("2019-03-03 04:10:31", "203.221.176.215", "Mozilla/5.0 
(Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) 
Chrome/13.0.782.215 Safari/535.1")
+      .addRow("2018-04-05 08:17:17", "11.134.119.132", "Mozilla/5.0 (Windows 
NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.813.0 
Safari/535.1")
+      .addRow("2018-12-05 05:36:10", "68.145.168.82", "Mozilla/5.0 (Windows NT 
6.1; WOW64) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.940.0 
Safari/535.8")
+      .addRow("2018-04-01 16:25:18", "21.12.166.184", "Mozilla/5.0 (Macintosh; 
U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) 
Version/5.0.4 Safari/533.20.27")
+      .build();
+
+    new RowSetComparison(expected).verifyAndClearAll(results);
+  }
+
+  /**
+   * This tests to what happens if you attempt to query a completely empty 
sheet
+   * The result is an empty data set.
+   *
+   * @throws RpcException
 
 Review comment:
   add description to avoid warning in IDE

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to