fix: scope support on apply change set #64
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
netbox_diode_plugin
to improve the handling of object types and scopes, as well as updates to the test suite to cover new functionality. The most important changes include updating methods to handle both string andNetBoxType
object types, refining scope handling logic, and adding new test cases.Updates to object type handling:
netbox_diode_plugin/api/views.py
: Updated methods_get_index_class_fields
,_get_object_type_model
, and_get_serializer
to handle both string andNetBoxType
object types. [1] [2] [3]Refinement of scope handling:
netbox_diode_plugin/api/views.py
: Enhanced_get_fields_to_find_existing_objects
to handle nested scope types and updated_handle_scope
to differentiate between nested and top-level objects. [1] [2] [3] [4]Test suite improvements:
netbox_diode_plugin/tests/test_api_apply_change_set.py
: Added new test casestest_create_virtualization_cluster_with_site_stored_as_scope
andtest_create_virtualmachine_with_cluster_site_stored_as_scope
to verify correct handling of scopes for clusters and virtual machines.netbox_diode_plugin/tests/test_api_apply_change_set.py
: IncludedContentType
import and updatedsetUp
method to initialize clusters with scope types. [1] [2]