blob: 214091538969999330e802b79d4c9ef10f4a3037 [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.
from os import path
from typing import List
import pytest
from pyroaring import BitMap
from pyiceberg.table.puffin import _deserialize_bitmap
def _open_file(file: str) -> bytes:
cur_dir = path.dirname(path.realpath(__file__))
with open(f"{cur_dir}/bitmaps/{file}", "rb") as f:
return f.read()
def test_map_empty() -> None:
puffin = _open_file("64mapempty.bin")
expected: List[BitMap] = []
actual = _deserialize_bitmap(puffin)
assert expected == actual
def test_map_bitvals() -> None:
puffin = _open_file("64map32bitvals.bin")
expected = [BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])]
actual = _deserialize_bitmap(puffin)
assert expected == actual
def test_map_spread_vals() -> None:
puffin = _open_file("64mapspreadvals.bin")
expected = [
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
BitMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
]
actual = _deserialize_bitmap(puffin)
assert expected == actual
def test_map_high_vals() -> None:
puffin = _open_file("64maphighvals.bin")
with pytest.raises(ValueError, match="Key 4022190063 is too large, max 2147483647 to maintain compatibility with Java impl"):
_ = _deserialize_bitmap(puffin)