File: test_2564_string_broadcast_regular.py

package info (click to toggle)
python-awkward 2.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,932 kB
  • sloc: python: 178,875; cpp: 33,828; sh: 432; makefile: 21; javascript: 8
file content (45 lines) | stat: -rw-r--r-- 1,483 bytes parent folder | download
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
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward/blob/main/LICENSE

from __future__ import annotations

import pytest

import awkward as ak


def test_regular_string_mixed_invalid():
    strings = ak.to_regular([["abc", "efg"]], axis=2)
    numbers = ak.to_regular([[[1, 2, 3], [3, 4, 3]]], axis=2)

    with pytest.raises(
        ValueError,
        match=r"cannot broadcast RegularArray of length 2 with NumpyArray of length 6",
    ):
        ak.broadcast_arrays(strings, numbers, right_broadcast=False)


def test_regular_string_mixed_valid():
    strings = ak.to_regular([["abc", "efg"]], axis=2)
    numbers = ak.to_regular([[[1], [3]]], axis=2)

    x, y = ak.broadcast_arrays(strings, numbers, right_broadcast=False)
    assert x.tolist() == [[["abc"], ["efg"]]]
    assert y.tolist() == [[[1], [3]]]


def test_regular_string_mixed_below():
    strings = ak.to_regular([["abc", "efg"]], axis=2)
    numbers = ak.to_regular([[1, 6], [3, 7]], axis=1)

    x, y = ak.broadcast_arrays(strings, numbers, right_broadcast=False)
    assert x.tolist() == [["abc", "efg"], ["abc", "efg"]]
    assert y.tolist() == [[1, 6], [3, 7]]


def test_regular_string_string_valid():
    strings = ak.to_regular([["abc", "efg"]], axis=2)
    numbers = ak.to_regular([[["ab"], ["bc", "de"]]], axis=3)

    x, y = ak.broadcast_arrays(strings, numbers, right_broadcast=False)
    assert x.tolist() == [[["abc"], ["efg", "efg"]]]
    assert y.tolist() == [[["ab"], ["bc", "de"]]]