-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…#2759) * fix: set `__class__` if `layout` OR `behavior` change * fix: change `__class__` under various circumstances * fix: set private attributes first * refactor: just use `._update_class` * test: add trivial test * fix: correct pickling
- Loading branch information
Showing
2 changed files
with
92 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE | ||
|
||
|
||
import awkward as ak | ||
|
||
|
||
class ArrayBehavior(ak.Array): | ||
def impl(self): | ||
return True | ||
|
||
|
||
class RecordBehavior(ak.Record): | ||
def impl(self): | ||
return True | ||
|
||
|
||
BEHAVIOR = {("*", "impl"): ArrayBehavior, "impl": RecordBehavior} | ||
|
||
|
||
def test_array_layout(): | ||
array = ak.Array([{"x": 1}, {"y": 3}], behavior=BEHAVIOR) | ||
assert not isinstance(array, ArrayBehavior) | ||
|
||
array.layout = ak.with_name([{"x": 1}, {"y": 3}], "impl", highlevel=False) | ||
assert isinstance(array, ArrayBehavior) | ||
assert array.impl() | ||
|
||
|
||
def test_array_behavior(): | ||
array = ak.Array([{"x": 1}, {"y": 3}], with_name="impl") | ||
assert not isinstance(array, ArrayBehavior) | ||
|
||
array.behavior = BEHAVIOR | ||
assert isinstance(array, ArrayBehavior) | ||
assert array.impl() | ||
|
||
|
||
def test_record_layout(): | ||
record = ak.Record({"x": 1}, behavior=BEHAVIOR) | ||
assert not isinstance(record, RecordBehavior) | ||
|
||
record.layout = ak.with_name({"x": 1}, "impl", highlevel=False) | ||
assert isinstance(record, RecordBehavior) | ||
assert record.impl() | ||
|
||
|
||
def test_record_behavior(): | ||
record = ak.Record({"x": 1}, with_name="impl") | ||
assert not isinstance(record, RecordBehavior) | ||
|
||
record.behavior = BEHAVIOR | ||
assert isinstance(record, RecordBehavior) | ||
assert record.impl() |