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 numpy as np
import awkward as ak
def test_read_negative_number_of_items():
vm = ak.forth.ForthMachine32("input source -5 source #q-> stack")
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.stack == []
vm = ak.forth.ForthMachine32("input source output sink float64 -5 source #q-> sink")
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.output("sink").tolist() == []
def test_read_negative_and_positive_number_of_items():
vm = ak.forth.ForthMachine32(
"input source -5 source #q-> stack 5 source #q-> stack"
)
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.stack == [1, 2, 3, 4, 5]
vm = ak.forth.ForthMachine32(
"input source output sink float64 -5 source #q-> sink 5 source #q-> sink"
)
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.output("sink").tolist() == [1, 2, 3, 4, 5]
def test_read_positive_and_negative_number_of_items():
vm = ak.forth.ForthMachine32(
"input source 5 source #q-> stack -5 source #q-> stack"
)
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.stack == [1, 2, 3, 4, 5]
vm = ak.forth.ForthMachine32(
"input source output sink float64 5 source #q-> sink -5 source #q-> sink"
)
vm.run({"source": np.array([1, 2, 3, 4, 5], dtype=np.int64)})
assert vm.output("sink").tolist() == [1, 2, 3, 4, 5]
|