Skip to content

Commit

Permalink
Merge pull request #363 from Kircheneer/u/Kircheneer-fix-annotations-ltm
Browse files Browse the repository at this point in the history
Backport #362
  • Loading branch information
jdrew82 authored Feb 21, 2024
2 parents 273587f + c107865 commit 45a6701
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 6 deletions.
11 changes: 5 additions & 6 deletions nautobot_ssot/contrib.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,8 @@ def _handle_custom_relationship_to_many_relationship(
):
# Introspect type annotations to deduce which fields are of interest
# for this many-to-many relationship.
diffsync_field_type = diffsync_model.__annotations__[parameter_name]
# TODO: Why is this different then in the normal case??
inner_type = diffsync_field_type.__dict__["__args__"][0].__dict__["__args__"][0]
diffsync_field_type = get_type_hints(diffsync_model)[parameter_name]
inner_type = diffsync_field_type.__dict__["__args__"][0]
related_objects_list = []
# TODO: Allow for filtering, i.e. not taking into account all the objects behind the relationship.
relationship = self.get_from_orm_cache({"name": annotation.name}, Relationship)
Expand Down Expand Up @@ -280,7 +279,7 @@ def _handle_custom_relationship_to_many_relationship(
association, "source" if annotation.side == RelationshipSideEnum.DESTINATION else "destination"
)
dictionary_representation = {
field_name: getattr(related_object, field_name) for field_name in inner_type.__annotations__
field_name: getattr(related_object, field_name) for field_name in get_type_hints(inner_type)
}
# Only use those where there is a single field defined, all 'None's will not help us.
if any(dictionary_representation.values()):
Expand Down Expand Up @@ -352,13 +351,13 @@ class NautobotInterface(NautobotModel):
"""
# Introspect type annotations to deduce which fields are of interest
# for this many-to-many relationship.
diffsync_field_type = diffsync_model.__annotations__[parameter_name]
diffsync_field_type = get_type_hints(diffsync_model)[parameter_name]
inner_type = diffsync_field_type.__dict__["__args__"][0]
related_objects_list = []
# TODO: Allow for filtering, i.e. not taking into account all the objects behind the relationship.
for related_object in getattr(database_object, parameter_name).all():
dictionary_representation = {
field_name: getattr(related_object, field_name) for field_name in inner_type.__annotations__
field_name: getattr(related_object, field_name) for field_name in get_type_hints(inner_type)
}
# Only use those where there is a single field defined, all 'None's will not help us.
if any(dictionary_representation.values()):
Expand Down
40 changes: 40 additions & 0 deletions nautobot_ssot/tests/test_contrib.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,3 +887,43 @@ class _ProviderTestModel(NautobotModel):
diffsync_provider.diffsync = NautobotAdapter(job=None)

self.assertEqual(self.provider, diffsync_provider.get_from_db())


class AnnotationsSubclassingTest(TestCase):
"""Test that annotations work properly with subclassing."""

def test_annotations_subclassing(self):
"""Test that annotations work properly with subclassing."""

class BaseTenantModel(NautobotModel):
"""Tenant model to be subclassed."""

_model = tenancy_models.Tenant
_modelname = "tenant"
_identifiers = ("name",)
_attributes = ("tags",)

name: str
tags: List[TagDict]

class Subclass(BaseTenantModel):
"""Subclassed model."""

extra_field: Optional[str] = None

class Adapter(NautobotAdapter):
"""Test adapter."""

tenant = Subclass
top_level = ["tenant"]

tenancy_models.Tenant.objects.create(name="Test Tenant")

adapter = Adapter(job=None)
try:
adapter.load()
except KeyError as error:
if error.args[0] == "tags":
self.fail("Don't use `Klass.__annotations__`, prefer `typing.get_type_hints`.")
else:
raise error

0 comments on commit 45a6701

Please sign in to comment.