Skip to content

Commit

Permalink
add test for namedtuple converter, fix namedtuple handling in treeutil
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Oct 29, 2024
1 parent 93c663c commit a2e1c7e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
31 changes: 31 additions & 0 deletions asdf/_tests/test_extension.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import collections
import fractions
import sys

Expand Down Expand Up @@ -1049,3 +1050,33 @@ class MailboxExtension:

converter = extension_manager.get_converter_for_type(mailbox.Mailbox)
assert isinstance(converter.delegate, MailboxConverter)


def test_named_tuple_extension():
Point = collections.namedtuple("Point", ["x", "y"])

class PointConverter:
tags = ["asdf://example.com/tags/point-1.0.0"]
types = [Point]

def to_yaml_tree(self, obj, tag, ctx):
return list(obj)

def from_yaml_tree(self, node, tag, ctx):
return Point(*node)

class PointExtension:
tags = PointConverter.tags
converters = [PointConverter()]
extension_uri = "asdf://example.com/extensions/point-1.0.0"

pt = Point(1, 2)

# without the extension we can't serialize this
with pytest.raises(AsdfSerializationError, match="is not serializable by asdf"):
roundtrip_object(pt)

with config_context() as cfg:
cfg.add_extension(PointExtension())
rpt = roundtrip_object(pt)
assert isinstance(rpt, Point)
4 changes: 3 additions & 1 deletion asdf/treeutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ def _handle_immutable_sequence(node, json_id):
def _handle_children(node, json_id):
if isinstance(node, (dict, lazy_nodes.AsdfDictNode)):
result = _handle_mapping(node, json_id)
elif isinstance(node, tuple):
# don't treat namedtuple instances as tuples
# see: https://github.com/python/cpython/issues/52044
elif isinstance(node, tuple) and not hasattr(node, "_fields"):
result = _handle_immutable_sequence(node, json_id)
elif isinstance(node, (list, lazy_nodes.AsdfListNode)):
result = _handle_mutable_sequence(node, json_id)
Expand Down

0 comments on commit a2e1c7e

Please sign in to comment.