blob: 01df57cdca8b72effa7702d02333401216b9b3a2 [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.
#
"""Unit tests for the type-hint objects and decorators with Python 3 syntax not
supported by 2.7."""
from __future__ import absolute_import
from __future__ import print_function
import unittest
from apache_beam.transforms.core import DoFn
from apache_beam.typehints import KV
from apache_beam.typehints import Iterable
from apache_beam.typehints import decorators
decorators._enable_from_callable = True
class TestParDoAnnotations(unittest.TestCase):
def test_with_side_input(self):
class MyDoFn(DoFn):
def process(self, element: float, side_input: str) -> \
Iterable[KV[str, float]]:
pass
th = MyDoFn().get_type_hints()
self.assertEqual(th.input_types, ((float, str), {}))
self.assertEqual(th.output_types, ((KV[str, float],), {}))
def test_pep484_annotations(self):
class MyDoFn(DoFn):
def process(self, element: int) -> Iterable[str]:
pass
print(MyDoFn().get_type_hints())
th = MyDoFn().get_type_hints()
self.assertEqual(th.input_types, ((int,), {}))
self.assertEqual(th.output_types, ((str,), {}))
if __name__ == '__main__':
unittest.main()