Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-1042 6f66e8732 -> f9bfb4345
HAWQ-1042. Added unit-test. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/f9bfb434 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/f9bfb434 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/f9bfb434 Branch: refs/heads/HAWQ-1042 Commit: f9bfb4345c858381351aa2316dd8414bbf52487d Parents: 6f66e87 Author: Oleksandr Diachenko <[email protected]> Authored: Wed Sep 7 18:21:36 2016 -0700 Committer: Oleksandr Diachenko <[email protected]> Committed: Wed Sep 7 18:21:36 2016 -0700 ---------------------------------------------------------------------- .../pxf/api/utilities/ColumnDescriptorTest.java | 50 ++++++++++++++++++++ 1 file changed, 50 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f9bfb434/pxf/pxf-api/src/test/java/org/apache/hawq/pxf/api/utilities/ColumnDescriptorTest.java ---------------------------------------------------------------------- diff --git a/pxf/pxf-api/src/test/java/org/apache/hawq/pxf/api/utilities/ColumnDescriptorTest.java b/pxf/pxf-api/src/test/java/org/apache/hawq/pxf/api/utilities/ColumnDescriptorTest.java new file mode 100644 index 0000000..25b907e --- /dev/null +++ b/pxf/pxf-api/src/test/java/org/apache/hawq/pxf/api/utilities/ColumnDescriptorTest.java @@ -0,0 +1,50 @@ +package org.apache.hawq.pxf.api.utilities; + +/* + * 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 org.apache.hawq.pxf.api.utilities.ColumnDescriptor; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import org.junit.Test; + +public class ColumnDescriptorTest { + + + @Test + public void testConstructor() { + + ColumnDescriptor cd = new ColumnDescriptor("c1", 42, 0, "someDataType", new Integer[]{42, 46}); + + ColumnDescriptor clonned = new ColumnDescriptor(cd); + + assertEquals(clonned.columnName(), cd.columnName()); + assertEquals(clonned.columnTypeCode(), cd.columnTypeCode()); + assertEquals(clonned.columnIndex(), cd.columnIndex()); + assertEquals(clonned.columnTypeName(), cd.columnTypeName()); + assertEquals(clonned.columnTypeModifiers(), cd.columnTypeModifiers()); + assertEquals(clonned.isKeyColumn(), cd.isKeyColumn()); + + //Cloned instance should have reference to different array + assertFalse(clonned.columnTypeModifiers() == cd.columnTypeModifiers()); + + cd = new ColumnDescriptor(null, 0, 0, null, null); + } + +}
