Return-Path: X-Original-To: apmail-hawq-dev-archive@minotaur.apache.org Delivered-To: apmail-hawq-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 22E581877B for ; Thu, 4 Feb 2016 06:52:15 +0000 (UTC) Received: (qmail 71878 invoked by uid 500); 4 Feb 2016 06:52:05 -0000 Delivered-To: apmail-hawq-dev-archive@hawq.apache.org Received: (qmail 71822 invoked by uid 500); 4 Feb 2016 06:52:05 -0000 Mailing-List: contact dev-help@hawq.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hawq.incubator.apache.org Delivered-To: mailing list dev@hawq.incubator.apache.org Received: (qmail 71811 invoked by uid 99); 4 Feb 2016 06:52:05 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2016 06:52:05 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id EA22418050B for ; Thu, 4 Feb 2016 06:52:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.449 X-Spam-Level: X-Spam-Status: No, score=-4.449 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.429] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 7qZOoHIB63UW for ; Thu, 4 Feb 2016 06:52:03 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id F2DF920CDE for ; Thu, 4 Feb 2016 06:52:02 +0000 (UTC) Received: (qmail 71801 invoked by uid 99); 4 Feb 2016 06:52:02 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2016 06:52:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AB8DFDFF96; Thu, 4 Feb 2016 06:52:02 +0000 (UTC) From: hornn To: dev@hawq.incubator.apache.org Reply-To: dev@hawq.incubator.apache.org References: In-Reply-To: Subject: [GitHub] incubator-hawq pull request: HAWQ-178: Add JSON plugin support in ... Content-Type: text/plain Message-Id: <20160204065202.AB8DFDFF96@git1-us-west.apache.org> Date: Thu, 4 Feb 2016 06:52:02 +0000 (UTC) Github user hornn commented on a diff in the pull request: https://github.com/apache/incubator-hawq/pull/302#discussion_r51835615 --- Diff: pxf/pxf-json/src/test/java/org/apache/hawq/pxf/plugins/json/JsonExtensionTest.java --- @@ -0,0 +1,288 @@ +package org.apache.hawq.pxf.plugins.json; + +/* + * 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. + */ + +import java.io.File; +import java.util.ArrayList; +import java.util.List; + +import org.apache.hadoop.fs.Path; +import org.apache.hawq.pxf.api.Fragmenter; +import org.apache.hawq.pxf.api.ReadAccessor; +import org.apache.hawq.pxf.api.ReadResolver; +import org.apache.hawq.pxf.api.io.DataType; +import org.apache.hawq.pxf.plugins.hdfs.HdfsDataFragmenter; +import org.apache.hawq.pxf.plugins.json.JsonAccessor; +import org.apache.hawq.pxf.plugins.json.JsonResolver; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class JsonExtensionTest extends PxfUnit { + + private List> columnDefs = null; + private List> extraParams = new ArrayList>(); + + @Before + public void before() { + + columnDefs = new ArrayList>(); + + columnDefs.add(new Pair("created_at", DataType.TEXT)); + columnDefs.add(new Pair("id", DataType.BIGINT)); + columnDefs.add(new Pair("text", DataType.TEXT)); + columnDefs.add(new Pair("user.screen_name", DataType.TEXT)); + columnDefs.add(new Pair("entities.hashtags[0]", DataType.TEXT)); + columnDefs.add(new Pair("coordinates.coordinates[0]", DataType.FLOAT8)); + columnDefs.add(new Pair("coordinates.coordinates[1]", DataType.FLOAT8)); + } + + @After + public void cleanup() throws Exception { + columnDefs.clear(); + extraParams.clear(); + } + + @Test + public void testCompressedMultilineJsonFile() throws Exception { + + extraParams.add(new Pair("IDENTIFIER", "created_at")); + + List output = new ArrayList(); + + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547115253761,text1,SpreadButter,tweetCongress,,"); + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547123646465,text2,patronusdeadly,,,"); + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547136233472,text3,NoSecrets_Vagas,,,"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/tweets.tar.gz"), output); + } + + @Test + public void testMaxRecordLength() throws Exception { + + // variable-size-objects.json contains 3 json objects but only 2 of them fit in the 27 byte length limitation + + extraParams.add(new Pair("IDENTIFIER", "key666")); + extraParams.add(new Pair("MAXLENGTH", "27")); + + columnDefs.clear(); + columnDefs.add(new Pair("key666", DataType.TEXT)); + + List output = new ArrayList(); + + output.add("small object1"); + // skip the large object2 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX + output.add("small object3"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/variable-size-objects.json"), output); + } + + @Test + public void testDataTypes() throws Exception { + + // TDOO: The BYTEA type is not tested!!! Current oneField.val = val.asText().getBytes(); convention is + // disputable! + + extraParams.clear(); + extraParams.add(new Pair("IDENTIFIER", "bintType")); + + columnDefs.clear(); + columnDefs.add(new Pair("bintType", DataType.BIGINT)); + columnDefs.add(new Pair("booleanType", DataType.BOOLEAN)); + columnDefs.add(new Pair("charType", DataType.CHAR)); + // columnDefs.add(new Pair("byteaType", DataType.BYTEA)); + columnDefs.add(new Pair("float8Type", DataType.FLOAT8)); + columnDefs.add(new Pair("realType", DataType.REAL)); + columnDefs.add(new Pair("integerType", DataType.INTEGER)); + columnDefs.add(new Pair("smallintType", DataType.SMALLINT)); + columnDefs.add(new Pair("bpcharType", DataType.BPCHAR)); + columnDefs.add(new Pair("varcharType", DataType.VARCHAR)); + columnDefs.add(new Pair("text", DataType.TEXT)); + + List output = new ArrayList(); + + output.add("666,true,x,3.14,3.15,999,777,bpcharType,varcharType,"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/datatypes-test.json"), output); + } + + @Test(expected = IllegalStateException.class) + public void testMissingArrayJsonAttribute() throws Exception { + + extraParams.add(new Pair("IDENTIFIER", "created_at")); + + columnDefs.clear(); + + columnDefs.add(new Pair("created_at", DataType.TEXT)); + // User is not an array! An attempt to access it should throw an exception! + columnDefs.add(new Pair("user[0]", DataType.TEXT)); + + List output = new ArrayList(); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/tweets-with-missing-text-attribtute.json"), output); + } + + @Test + public void testMissingJsonAttribute() throws Exception { + + List output = new ArrayList(); + + extraParams.add(new Pair("IDENTIFIER", "created_at")); + + // Missing attributes are substituted by an empty field + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547115253761,,SpreadButter,tweetCongress,,"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/tweets-with-missing-text-attribtute.json"), output); + } + + @Test + public void testMalformedJsonObject() throws Exception { + + List output = new ArrayList(); + + extraParams.add(new Pair("IDENTIFIER", "created_at")); + + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547115253761,text1,SpreadButter,tweetCongress,,"); + output.add(",,,,,,"); // Expected: malformed json records are transformed into empty rows + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547136233472,text3,NoSecrets_Vagas,,,"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/tweets-broken.json"), output); + } + + @Test + public void testSmallTweets() throws Exception { + + List output = new ArrayList(); + + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547115253761,text1,SpreadButter,tweetCongress,,"); + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547123646465,text2,patronusdeadly,,,"); + output.add("Fri Jun 07 22:45:02 +0000 2013,343136547136233472,text3,NoSecrets_Vagas,,,"); + output.add("Fri Jun 07 22:45:03 +0000 2013,343136551322136576,text4,SevenStonesBuoy,,-6.1,50.103"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/tweets-small.json"), output); + } + + @Test + public void testTweetsWithNull() throws Exception { + + List output = new ArrayList(); + + output.add("Fri Jun 07 22:45:02 +0000 2013,,text1,SpreadButter,tweetCongress,,"); + output.add("Fri Jun 07 22:45:02 +0000 2013,,text2,patronusdeadly,,,"); + + super.assertOutput(new Path(System.getProperty("user.dir") + File.separator + + "src/test/resources/null-tweets.json"), output); + } + + @Test + public void testSmallTweetsWithDelete() throws Exception { --- End diff -- what is being tested here? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---