Skip to content

Add NetBox 4.3 to CI matrix #1417

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- VERSION: "v4.0"
NETBOX_DOCKER_VERSION: 2.9.1
include:
- VERSION: "v4.1"
NETBOX_DOCKER_VERSION: 3.0.1
- VERSION: "v4.2"
NETBOX_DOCKER_VERSION: 3.1.0
NETBOX_DOCKER_VERSION: 3.2.1
- VERSION: "v4.3"
NETBOX_DOCKER_VERSION: 3.3.0

steps:

Expand Down
1 change: 1 addition & 0 deletions tests/integration/targets/inventory-v4.3/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
runme_config
1 change: 1 addition & 0 deletions tests/integration/targets/inventory-v4.3/aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# https://docs.ansible.com/ansible/devel/dev_guide/testing/sanity/integration-aliases.html
152 changes: 152 additions & 0 deletions tests/integration/targets/inventory-v4.3/compare_inventory_json.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
#!/usr/bin/env python

# Inspired by community.aws collection script_inventory_ec2 test
# https://github.com/ansible-collections/community.aws/blob/master/tests/integration/targets/script_inventory_ec2/inventory_diff.py

from __future__ import absolute_import, division, print_function

__metaclass__ = type

import argparse
import json
import sys
from operator import itemgetter

from deepdiff import DeepDiff

# NetBox includes "created" and "last_updated" times on objects. These end up in the interfaces objects that are included verbatim from the NetBox API.
# "url" may be different if local tests use a different host/port
# Remove these from files saved in git as test data
KEYS_REMOVE = frozenset(["created", "last_updated", "url"])

# Ignore these when performing diffs as they will be different for each test run
# (Was previously keys specific to NetBox 2.6)
KEYS_IGNORE = frozenset()

# Rack Groups became hierarchical in NetBox 2.8. Don't bother comparing against test data in NetBox 2.7
KEYS_IGNORE_27 = frozenset(
[
"rack_groups", # host var
"rack_group_parent_rack_group", # group, group_names_raw = False
"parent_rack_group", # group, group_names_raw = True
]
)


# Assume the object will not be recursive, as it originally came from JSON
def remove_keys(obj, keys):
if isinstance(obj, dict):
keys_to_remove = keys.intersection(obj.keys())
for key in keys_to_remove:
del obj[key]

for key, value in obj.items():
remove_keys(value, keys)

elif isinstance(obj, list):
# Iterate over temporary copy, as we may remove items
for item in obj[:]:
if isinstance(item, str) and item in keys:
# List contains a string that we want to remove
# eg. a group name in list of groups
obj.remove(item)
remove_keys(item, keys)


def sort_hostvar_arrays(obj):
meta = obj.get("_meta")
if not meta:
return

hostvars = meta.get("hostvars")
if not hostvars:
return

for _, host in hostvars.items(): # pylint: disable=disallowed-name
if interfaces := host.get("interfaces"):
host["interfaces"] = sorted(interfaces, key=itemgetter("id"))

if services := host.get("services"):
host["services"] = sorted(services, key=itemgetter("id"))


def read_json(filename):
with open(filename, "r", encoding="utf-8") as file:
return json.loads(file.read())


def write_json(filename, data):
with open(filename, "w", encoding="utf-8") as file:
json.dump(data, file, indent=4)


def main():
parser = argparse.ArgumentParser(description="Diff Ansible inventory JSON output")
parser.add_argument(
"filename_a",
metavar="ORIGINAL.json",
type=str,
help="Original json to test against",
)
parser.add_argument(
"filename_b",
metavar="NEW.json",
type=str,
help="Newly generated json to compare against original",
)
parser.add_argument(
"--write",
action="store_true",
help=(
"When comparing files, various keys are removed. "
"This option will not compare the files, and instead writes ORIGINAL.json to NEW.json after removing these keys. "
"This is used to clean the test json files before saving to the git repo. "
"For example, this removes dates. "
),
)
parser.add_argument(
"--netbox-version",
metavar="VERSION",
type=str,
help=(
"Apply comparison specific to NetBox version. "
"For example, rack_groups arrays will only contain a single item in v2.7, so are ignored in the comparison."
),
)

args = parser.parse_args()

data_a = read_json(args.filename_a)

if args.write:
# When writing test data, only remove "remove_keys" that will change on every git commit.
# This makes diffs more easily readable to ensure changes to test data look correct.
remove_keys(data_a, KEYS_REMOVE)
sort_hostvar_arrays(data_a)
write_json(args.filename_b, data_a)

else:
data_b = read_json(args.filename_b)

# Ignore keys that we don't want to diff, in addition to the ones removed that change on every commit
keys = KEYS_REMOVE.union(KEYS_IGNORE)
remove_keys(data_a, keys)
remove_keys(data_b, keys)

sort_hostvar_arrays(data_a)
sort_hostvar_arrays(data_b)

# Perform the diff
result = DeepDiff(data_a, data_b, ignore_order=True)

if result:
# Dictionary is not empty - print differences
print(json.dumps(result, sort_keys=True, indent=4))
sys.exit(1)
else:
# Success, no differences
sys.exit(0)


if __name__ == "__main__":
main()
Loading
Loading