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
|
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward/blob/main/LICENSE
from __future__ import annotations
import pytest # noqa: F401
import awkward as ak
def test_all_options():
one = ak.highlevel.Array([1, 2, None])
two = ak.highlevel.Array([None, 5, None])
result = ak.operations.zip([one, two], optiontype_outside_record=True)
assert str(result.type) == "3 * ?(int64, int64)"
assert result.to_list() == [None, (2, 5), None]
def test_mixed_options():
one = ak.highlevel.Array([1, 2, None])
two = ak.highlevel.Array([4, 5, 6])
result = ak.operations.zip([one, two], optiontype_outside_record=True)
assert str(result.type) == "3 * ?(int64, int64)"
assert result.to_list() == [(1, 4), (2, 5), None]
def test_no_options():
one = ak.highlevel.Array([1, 2, 3])
two = ak.highlevel.Array([4, 5, 6])
result = ak.operations.zip([one, two], optiontype_outside_record=True)
assert str(result.type) == "3 * (int64, int64)"
assert result.to_list() == [(1, 4), (2, 5), (3, 6)]
def test_complex_inner():
one = ak.highlevel.Array([1, 2, 3])
two = ak.highlevel.Array([[7, 5], [1, 2], [4, None]])
result = ak.operations.zip([one, two], optiontype_outside_record=True)
assert str(result.type) == "3 * var * ?(int64, int64)"
assert result.to_list() == [[(1, 7), (1, 5)], [(2, 1), (2, 2)], [(3, 4), None]]
def test_complex_outer():
one = ak.highlevel.Array([1, None, 3])
two = ak.highlevel.Array([[7, 5], [1, 2], [4, None]])
result = ak.operations.zip([one, two], optiontype_outside_record=True)
assert str(result.type) == "3 * option[var * ?(int64, int64)]"
assert result.to_list() == [[(1, 7), (1, 5)], None, [(3, 4), None]]
|