| ################################################################################ |
| # 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. |
| ################################################################################ |
| |
| from pyflink.testing.test_case_utils import PythonAPICompletenessTestCase, PyFlinkTestCase |
| from pyflink.table.catalog import Catalog, CatalogDatabase, CatalogBaseTable, CatalogPartition, \ |
| ObjectIdentifier, CatalogFunction, CatalogColumnStatistics, CatalogPartitionSpec, \ |
| ObjectPath, Column, WatermarkSpec, Constraint, UniqueConstraint, ResolvedSchema |
| |
| |
| class CatalogAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`Catalog` is consistent with |
| Java `org.apache.flink.table.catalog.Catalog`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return Catalog |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.Catalog" |
| |
| @classmethod |
| def excluded_methods(cls): |
| # open/close are not needed in Python API as they are used internally |
| return { |
| 'open', |
| 'close', |
| 'getFactory', |
| 'getTableFactory', |
| 'getFunctionDefinitionFactory', |
| 'listPartitionsByFilter'} |
| |
| |
| class CatalogDatabaseAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogDatabase` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogDatabase`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogDatabase |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.CatalogDatabase" |
| |
| |
| class CatalogBaseTableAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogBaseTable` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogBaseTable`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogBaseTable |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.CatalogBaseTable" |
| |
| @classmethod |
| def excluded_methods(cls): |
| return {'getUnresolvedSchema', 'getTableKind', 'getSchema'} |
| |
| |
| class CatalogFunctionAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogFunction` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogFunction`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogFunction |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.CatalogFunction" |
| |
| @classmethod |
| def excluded_methods(cls): |
| return {'getFunctionResources'} |
| |
| |
| class CatalogPartitionAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogPartition` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogPartition`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogPartition |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.CatalogPartition" |
| |
| |
| class ObjectPathAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`ObjectPath` is consistent with |
| Java `org.apache.flink.table.catalog.ObjectPath`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return ObjectPath |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.ObjectPath" |
| |
| |
| class CatalogPartitionSpecAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogPartitionSpec` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogPartitionSpec`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogPartitionSpec |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.CatalogPartitionSpec" |
| |
| |
| class CatalogColumnStatisticsAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`CatalogColumnStatistics` is consistent with |
| Java `org.apache.flink.table.catalog.CatalogColumnStatistics`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return CatalogColumnStatistics |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.stats.CatalogColumnStatistics" |
| |
| |
| class ObjectIdentifierAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`ObjectIdentifier` is consistent with |
| Java `org.apache.flink.table.catalog.ObjectIdentifier`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return ObjectIdentifier |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.ObjectIdentifier" |
| |
| |
| class ColumnAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`Column` is consistent with |
| Java `org.apache.flink.table.catalog.Column`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return Column |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.Column" |
| |
| |
| class WatermarkSpecAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`WatermarkSpec` is consistent with |
| Java `org.apache.flink.table.catalog.WatermarkSpec`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return WatermarkSpec |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.WatermarkSpec" |
| |
| |
| class ConstraintAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`Constraint` is consistent with |
| Java `org.apache.flink.table.catalog.Constraint`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return Constraint |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.Constraint" |
| |
| |
| class UniqueConstraintAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`UniqueConstraint` is consistent with |
| Java `org.apache.flink.table.catalog.UniqueConstraint`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return UniqueConstraint |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.UniqueConstraint" |
| |
| |
| class ResolvedSchemaAPICompletenessTests(PythonAPICompletenessTestCase, PyFlinkTestCase): |
| """ |
| Tests whether the Python :class:`ResolvedSchema` is consistent with |
| Java `org.apache.flink.table.catalog.ResolvedSchema`. |
| """ |
| |
| @classmethod |
| def python_class(cls): |
| return ResolvedSchema |
| |
| @classmethod |
| def java_class(cls): |
| return "org.apache.flink.table.catalog.ResolvedSchema" |
| |
| @classmethod |
| def excluded_methods(cls): |
| # getIndexes are not needed in Python API as they are used internally |
| return {'getIndexes'} |
| |
| |
| if __name__ == '__main__': |
| import unittest |
| |
| try: |
| import xmlrunner |
| testRunner = xmlrunner.XMLTestRunner(output='target/test-reports') |
| except ImportError: |
| testRunner = None |
| unittest.main(testRunner=testRunner, verbosity=2) |