tvalentyn commented on code in PR #26689: URL: https://github.com/apache/beam/pull/26689#discussion_r1197184472
########## sdks/python/apache_beam/examples/avro_nyc_trips_it_test.py: ########## @@ -0,0 +1,213 @@ +# +# 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. +# + +"""End-to-end test for the avro New York City Trips example.""" + +# pytype: skip-file + +import logging +import unittest +import uuid +from io import BytesIO + +import fastavro +import pytest + +from apache_beam.examples import avro_nyc_trips +from apache_beam.io.filesystems import FileSystems +from apache_beam.testing.test_pipeline import TestPipeline + + +class AvroNycTripsIT(unittest.TestCase): + SCHEMA = { + 'fields': [ + { + 'name': 'hvfhs_license_num', 'type': ['null', 'string'] + }, + { + 'name': 'request_datetime', + 'logicalType': 'timestamp-millis', + 'type': ['null', 'long'] + }, + { + 'name': 'trip_miles', 'type': ['null', 'double'] + }, + { + 'name': 'trip_time', 'type': ['null', 'long'] + }, + { + 'name': 'base_passenger_fare', 'type': ['null', 'double'] + }, + { + 'name': 'tolls', 'type': ['null', 'double'] + }, + { + 'name': 'bcf', 'type': ['null', 'double'] + }, + { + 'name': 'sales_tax', 'type': ['null', 'double'] + }, + { + 'name': 'congestion_surcharge', 'type': ['null', 'double'] + }, + { + 'name': 'airport_fee', 'type': ['null', 'long'] + }, + { + 'name': 'tips', 'type': ['null', 'double'] + }, + { + 'name': 'driver_pay', 'type': ['null', 'double'] + }, + ], + 'name': 'nyc_fhv_trips', + 'type': 'record', + } + + RECORDS = [ + { + 'hvfhs_license_num': 'HV0003', + 'request_datetime': 1549008086000, + 'trip_miles': 2.45, + 'trip_time': 579, + 'base_passenger_fare': 9.35, + 'tolls': 0.0, + 'bcf': 0.23, + 'sales_tax': 0.83, + 'congestion_surcharge': 0.0, + 'airport_fee': None, + 'tips': 0.0, + 'driver_pay': 7.48 + }, + { + 'hvfhs_license_num': 'HV0003', + 'request_datetime': 1549009568000, + 'trip_miles': 1.71, + 'trip_time': 490, + 'base_passenger_fare': 7.91, + 'tolls': 0.0, + 'bcf': 0.2, + 'sales_tax': 0.7, + 'congestion_surcharge': 0.0, + 'airport_fee': None, + 'tips': 2.0, + 'driver_pay': 7.93 + }, + { + 'hvfhs_license_num': 'HV0005', + 'request_datetime': 1549010613000, + 'trip_miles': 11.24, + 'trip_time': 1739, + 'base_passenger_fare': 29.77, + 'tolls': 0.72, + 'bcf': 0.76, + 'sales_tax': 2.71, + 'congestion_surcharge': 0.0, + 'airport_fee': None, + 'tips': 0.0, + 'driver_pay': 22.09 + }, + { + 'hvfhs_license_num': 'HV0005', + 'request_datetime': 1549010420000, + 'trip_miles': 5.71, + 'trip_time': 1559, + 'base_passenger_fare': 21.69, + 'tolls': 0.24, + 'bcf': 0.55, + 'sales_tax': 1.95, + 'congestion_surcharge': 0.0, + 'airport_fee': None, + 'tips': 0.0, + 'driver_pay': 14.87 + }, + ] + + EXPECTED = [ + { + 'service': 'Lyft', + 'day': 'Fri', + 'total_price': 58.39, + 'total_driver_pay': 36.96, + 'total_trip_miles': 16.95, + 'total_trip_minutes': 54.96666666666667, + 'total_number_of_trips': 2, + 'price_per_trip': 29.195, + 'price_per_mile': 3.4448377581120946, + 'price_per_minute': 1.0622801697998787, + 'driver_pay_per_trip': 18.48, + 'driver_pay_per_mile': 2.1805309734513276, + 'driver_pay_per_minute': 0.6724075197089144, + 'miles_per_hour': 18.502122498483928 + }, + { + 'service': 'Uber', + 'day': 'Fri', + 'total_price': 21.22, + 'total_driver_pay': 17.41, + 'total_trip_miles': 4.16, + 'total_trip_minutes': 17.816666666666666, + 'total_number_of_trips': 2, + 'price_per_trip': 10.61, + 'price_per_mile': 5.100961538461538, + 'price_per_minute': 1.1910196445275958, + 'driver_pay_per_trip': 8.705, + 'driver_pay_per_mile': 4.185096153846153, + 'driver_pay_per_minute': 0.9771749298409729, + 'miles_per_hour': 14.00935453695042 + }, + ] + + # TODO Enable when fixed this tests for Dataflow runner Review Comment: both Direct and Dataflow runners should be able to read the public GCS bucket, so you could use the input from example instead of regenerating. Instead of hardcoding the output location in the `..._it_test.py`, you can query it from TestPipeline, like done in https://github.com/apache/beam/blob/e1396db4b18ecd60c76ca3dc271238335218c81c/sdks/python/apache_beam/examples/wordcount_it_test.py#L121 The option named 'output' is being set in: https://github.com/apache/beam/blob/e1396db4b18ecd60c76ca3dc271238335218c81c/sdks/python/scripts/run_integration_test.sh#L235 , I think this is script is used both in Direct and Dataflow runners. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
