blob: 871233be36754ff9641f2ccdebe699d029786133 [file] [log] [blame]
/*
* 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.dfs;
import com.fasterxml.jackson.annotation.JsonTypeName;
import org.apache.drill.common.config.DrillConfig;
import org.apache.drill.common.scanner.RunTimeScan;
import org.apache.drill.common.scanner.persistence.ScanResult;
import org.apache.drill.exec.store.easy.text.TextFormatPlugin.TextFormatConfig;
import org.apache.drill.exec.store.image.ImageFormatConfig;
import org.apache.drill.test.BaseTest;
import org.junit.Test;
import java.util.Collection;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
public class TestFormatPluginOptionExtractor extends BaseTest {
@Test
public void test() {
DrillConfig config = DrillConfig.create();
ScanResult scanResult = RunTimeScan.fromPrescan(config);
FormatPluginOptionExtractor e = new FormatPluginOptionExtractor(scanResult);
Collection<FormatPluginOptionsDescriptor> options = e.getOptions();
for (FormatPluginOptionsDescriptor d : options) {
assertEquals(d.pluginConfigClass.getAnnotation(JsonTypeName.class).value(), d.typeName);
switch (d.typeName) {
case "text":
assertEquals(TextFormatConfig.class, d.pluginConfigClass);
assertEquals(
"(type: String, lineDelimiter: String, fieldDelimiter: String, quote: String, escape: String, comment: String, skipFirstLine: boolean, extractHeader: boolean)",
d.presentParams()
);
break;
case "named":
assertEquals(NamedFormatPluginConfig.class, d.pluginConfigClass);
assertEquals("(type: String, name: String)", d.presentParams());
break;
case "parquet":
assertEquals(d.typeName, "(type: String, autoCorrectCorruptDates: boolean, enableStringsSignedMinMax: boolean)", d.presentParams());
break;
case "json":
case "sequencefile":
case "pcapng":
case "avro":
assertEquals(d.typeName, "(type: String)", d.presentParams());
break;
case "pcap":
assertEquals(d.typeName, "(type: String, sessionizeTCPStreams: boolean)", d.presentParams());
break;
case "httpd":
assertEquals("(type: String, logFormat: String, timestampFormat: String)", d.presentParams());
break;
case "image":
assertEquals(ImageFormatConfig.class, d.pluginConfigClass);
assertEquals(
"(type: String, fileSystemMetadata: boolean, descriptive: boolean, timeZone: String)", d.presentParams()
);
break;
case "logRegex":
assertEquals(d.typeName, "(type: String, regex: String, extension: String, maxErrors: int, schema: List)", d.presentParams());
break;
default:
fail("add validation for format plugin type " + d.typeName);
}
}
}
}