| # 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 pyarrow |
| import pytest |
| |
| from adbc_driver_manager._lib import ArrowArrayStreamHandle |
| from adbc_driver_manager._reader import AdbcRecordBatchReader |
| |
| schema = pyarrow.schema([("ints", "int32")]) |
| batches = [ |
| pyarrow.record_batch([[1, 2, 3, 4]], schema=schema), |
| ] |
| |
| |
| def _make_reader(): |
| original = pyarrow.RecordBatchReader.from_batches(schema, batches) |
| exported = ArrowArrayStreamHandle() |
| original._export_to_c(exported.address) |
| return AdbcRecordBatchReader._import_from_c(exported.address) |
| |
| |
| def test_reader(): |
| wrapped = _make_reader() |
| assert wrapped.read_next_batch() == batches[0] |
| |
| |
| def test_reader_error(): |
| schema = pyarrow.schema([("ints", "int32")]) |
| |
| def batches(): |
| yield pyarrow.record_batch([[1, 2, 3, 4]], schema=schema) |
| raise ValueError("foo") |
| |
| original = pyarrow.RecordBatchReader.from_batches(schema, batches()) |
| exported = ArrowArrayStreamHandle() |
| original._export_to_c(exported.address) |
| wrapped = AdbcRecordBatchReader._import_from_c(exported.address) |
| |
| assert wrapped.read_next_batch() is not None |
| with pytest.raises(pyarrow.ArrowInvalid): |
| wrapped.read_next_batch() |
| |
| |
| def test_reader_methods(): |
| with _make_reader() as reader: |
| assert reader.read_all() == pyarrow.Table.from_batches(batches, schema) |
| |
| with _make_reader() as reader: |
| assert reader.read_pandas() is not None |
| |
| with _make_reader() as reader: |
| for batch in reader: |
| assert batch == batches[0] |
| |
| with _make_reader() as reader: |
| with pytest.raises(NotImplementedError): |
| assert reader.read_next_batch_with_custom_metadata() is not None |
| |
| with _make_reader() as reader: |
| with pytest.raises(NotImplementedError): |
| for batch in reader.iter_batches_with_custom_metadata(): |
| assert batch == batches[0] |
| |
| with _make_reader() as reader: |
| assert reader.schema == schema |