File size: 7,525 Bytes
f0f4f2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# 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 __future__ import annotations
import itertools
import struct
from io import SEEK_SET
from types import TracebackType
from typing import Callable, Optional, Type
from unittest.mock import MagicMock, patch
import pytest
from pyiceberg.avro.decoder import BinaryDecoder, StreamingBinaryDecoder, new_decoder
from pyiceberg.avro.decoder_fast import CythonBinaryDecoder
from pyiceberg.avro.resolver import resolve_reader
from pyiceberg.io import InputStream
from pyiceberg.types import DoubleType, FloatType
AVAILABLE_DECODERS = [StreamingBinaryDecoder, CythonBinaryDecoder]
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_boolean_true(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x01")
assert decoder.read_boolean() is True
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_boolean_false(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00")
assert decoder.read_boolean() is False
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_skip_boolean(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00")
assert decoder.tell() == 0
decoder.skip_boolean()
assert decoder.tell() == 1
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_int(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x18")
assert decoder.read_int() == 12
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_int_longer(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x8e\xd1\x87\x01")
assert decoder.read_int() == 1111111
def zigzag_encode(datum: int) -> bytes:
result = []
datum = (datum << 1) ^ (datum >> 63)
while (datum & ~0x7F) != 0:
result.append(struct.pack("B", (datum & 0x7F) | 0x80))
datum >>= 7
result.append(struct.pack("B", datum))
return b"".join(result)
@pytest.mark.parametrize(
"decoder_class, expected_value",
list(itertools.product(AVAILABLE_DECODERS, [0, -1, 2**32, -(2**32), (2**63 - 1), -(2**63)])),
)
def test_read_int_custom_encode(decoder_class: Callable[[bytes], BinaryDecoder], expected_value: int) -> None:
encoded = zigzag_encode(expected_value)
decoder = decoder_class(encoded)
decoded = decoder.read_int()
assert decoded == expected_value, f"Decoded value does not match decoded={decoded} expected={expected_value}"
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_skip_int(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x18")
assert decoder.tell() == 0
decoder.skip_int()
assert decoder.tell() == 1
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_negative_bytes(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"")
with pytest.raises(ValueError) as exc_info:
decoder.read(-1)
assert "Requested -1 bytes to read, expected positive integer." in str(exc_info.value)
class OneByteAtATimeInputStream(InputStream):
"""
Fake input stream that just returns a single byte at the time
"""
pos = 0
def read(self, size: int = 0) -> bytes:
self.pos += 1
return self.pos.to_bytes(1, byteorder="little")
def seek(self, offset: int, whence: int = SEEK_SET) -> int:
self.pos = offset
return self.pos
def tell(self) -> int:
return self.pos
def close(self) -> None:
pass
def __enter__(self) -> OneByteAtATimeInputStream:
return self
def __exit__(
self, exctype: Optional[Type[BaseException]], excinst: Optional[BaseException], exctb: Optional[TracebackType]
) -> None:
self.close()
# InMemoryBinaryDecoder doesn't work for a byte at a time reading
@pytest.mark.parametrize("decoder_class", [StreamingBinaryDecoder])
def test_read_single_byte_at_the_time(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(OneByteAtATimeInputStream()) # type: ignore
assert decoder.read(2) == b"\x01\x02"
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_float(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00\x00\x9a\x41")
assert decoder.read_float() == 19.25
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_skip_float(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00\x00\x9a\x41")
assert decoder.tell() == 0
decoder.skip_float()
assert decoder.tell() == 4
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_double(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00\x00\x00\x00\x00\x40\x33\x40")
assert decoder.read_double() == 19.25
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_skip_double(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00\x00\x00\x00\x00\x40\x33\x40")
assert decoder.tell() == 0
decoder.skip_double()
assert decoder.tell() == 8
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_bytes(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x08\x01\x02\x03\x04")
actual = decoder.read_bytes()
assert actual == b"\x01\x02\x03\x04"
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_utf8(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x04\x76\x6f")
assert decoder.read_utf8() == "vo"
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_skip_utf8(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x04\x76\x6f")
assert decoder.tell() == 0
decoder.skip_utf8()
assert decoder.tell() == 3
@pytest.mark.parametrize("decoder_class", AVAILABLE_DECODERS)
def test_read_int_as_float(decoder_class: Callable[[bytes], BinaryDecoder]) -> None:
decoder = decoder_class(b"\x00\x00\x9a\x41")
reader = resolve_reader(FloatType(), DoubleType())
assert reader.read(decoder) == 19.25
@patch("pyiceberg.avro.decoder_fast.CythonBinaryDecoder")
def test_fallback_to_pure_python_decoder(cython_decoder: MagicMock) -> None:
cython_decoder.side_effect = ModuleNotFoundError
with pytest.warns(UserWarning, match="Falling back to pure Python Avro decoder, missing Cython implementation"):
dec = new_decoder(b"")
assert isinstance(dec, StreamingBinaryDecoder)
|