blob: 035949f0544abbc9b89cd8f67ba156c6dfa994a4 [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.
import os
import pathlib
import tempfile
import pytest
from nanoarrow.ipc import Stream
import nanoarrow as na
def test_array_stream_iter():
stream = na.ArrayStream([1, 2, 3], na.int32())
assert stream.schema.type == na.Type.INT32
stream_iter = iter(stream)
assert list(next(stream_iter).iter_py()) == [1, 2, 3]
with pytest.raises(StopIteration):
next(stream_iter)
def test_array_stream_read_all():
stream = na.ArrayStream([1, 2, 3], na.int32())
array = stream.read_all()
assert array.schema.type == na.Type.INT32
assert list(array.iter_py()) == [1, 2, 3]
def test_array_stream_read_next():
stream = na.ArrayStream([1, 2, 3], na.int32())
array = stream.read_next()
assert array.schema.type == na.Type.INT32
assert list(array.iter_py()) == [1, 2, 3]
with pytest.raises(StopIteration):
stream.read_next()
def test_array_stream_close():
stream = na.ArrayStream([], na.int32())
stream.close()
with pytest.raises(RuntimeError, match="array stream is released"):
stream.read_all()
def test_array_stream_context_manager():
stream = na.ArrayStream([], na.int32())
with stream:
pass
with pytest.raises(RuntimeError, match="array stream is released"):
stream.read_all()
def test_array_stream_from_readable():
stream = na.ArrayStream.from_readable(Stream.example_bytes())
assert stream.schema.type == na.Type.STRUCT
assert list(stream.read_all().iter_tuples()) == [(1,), (2,), (3,)]
def test_array_stream_from_path():
with tempfile.TemporaryDirectory() as td:
path = os.path.join(td, "test.arrows")
with open(path, "wb") as f:
f.write(Stream.example_bytes())
stream = na.ArrayStream.from_path(path)
assert stream.schema.type == na.Type.STRUCT
assert list(stream.read_all().iter_tuples()) == [(1,), (2,), (3,)]
def test_array_stream_from_url():
with tempfile.TemporaryDirectory() as td:
path = os.path.join(td, "test.arrows")
with open(path, "wb") as f:
f.write(Stream.example_bytes())
uri = pathlib.Path(path).as_uri()
with na.ArrayStream.from_url(uri) as stream:
assert stream.schema.type == na.Type.STRUCT
assert list(stream.read_all().iter_tuples()) == [(1,), (2,), (3,)]