-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup project, create basic functionality.
Signed-off-by: Caroline Russell <[email protected]>
- Loading branch information
1 parent
8da9861
commit 8e78d7c
Showing
5 changed files
with
11,143 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: ["3.10", "3.11", "3.12"] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip setuptools | ||
python3 -m pip install .[dev] | ||
- name: Run tests | ||
run: | | ||
python3 -m pytest test |
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,170 @@ | ||
import argparse | ||
import json | ||
import logging | ||
import re | ||
import sys | ||
from typing import Dict, List | ||
|
||
import json_flatten | ||
|
||
|
||
def build_args(): | ||
parser = argparse.ArgumentParser() | ||
arg_group = parser.add_mutually_exclusive_group() | ||
arg_group.add_argument( | ||
"-x", | ||
"--exclude", | ||
action="append", | ||
help="exclude field(s) from comparison", | ||
default=[], | ||
dest="exclude", | ||
) | ||
arg_group.add_argument( | ||
"-s", | ||
"--skip-filepaths", | ||
action="store_true", | ||
help="skip filepaths in comparison", | ||
default=False, | ||
dest="skip_filepaths", | ||
) | ||
arg_group.add_argument( | ||
"-p", | ||
"--preset", | ||
action="store", | ||
help="preset to use", | ||
choices=["cdxgen"], | ||
dest="preset", | ||
) | ||
parser.add_argument( | ||
"-i", | ||
"--input", | ||
action="store", | ||
help="input file", | ||
required=True, | ||
nargs=2, | ||
dest="input", | ||
) | ||
parser.add_argument( | ||
"-r", | ||
"--regex", | ||
action="store_true", | ||
help="Excluded keys are regular expressions.", | ||
) | ||
return parser.parse_args() | ||
|
||
|
||
def check_key(key: str, exclude_keys: List[str]) -> bool: | ||
for k in exclude_keys: | ||
if key.startswith(k): | ||
return False | ||
return True | ||
|
||
|
||
def compare_dicts(json1: str, json2: str, skip_filepaths: bool, exclude_keys: List[str], regex: bool): | ||
json_1_data = sort_dict(load_json(json1, exclude_keys, regex, skip_filepaths)) | ||
json_2_data = sort_dict(load_json(json2, exclude_keys, regex, skip_filepaths)) | ||
output_results(json_1_data, json_2_data) | ||
|
||
|
||
def filter_dict(data: Dict, exclude_keys: List[str], regex: bool, skip_filepaths: bool) -> Dict: | ||
flattened = json_flatten.flatten(data) | ||
if regex: | ||
filtered = filter_regex(flattened, exclude_keys) | ||
else: | ||
filtered = filter_simple(flattened, exclude_keys) | ||
if skip_filepaths: | ||
filtered = remove_filepaths(filtered) | ||
return json_flatten.unflatten(filtered) | ||
|
||
|
||
def filter_simple(flattened_data: Dict, exclude_keys: List[str]) -> Dict: | ||
filtered = {} | ||
for key, value in flattened_data.items(): | ||
if check_key(key, exclude_keys): | ||
filtered[key] = value | ||
return filtered | ||
|
||
|
||
def filter_regex(flattened_data: Dict, exclude_keys: List[str]) -> Dict: | ||
exclude_keys = [re.compile(x) for x in exclude_keys] | ||
filtered = {} | ||
for key, value in flattened_data.items(): | ||
for exclude_key in exclude_keys: | ||
if not re.match(exclude_key, key): | ||
filtered[key] = value | ||
return filtered | ||
|
||
|
||
def get_sort_field(data: Dict) -> str: | ||
for i in ["url", "content", "ref", "name", "value"]: | ||
if i in data: | ||
return i | ||
raise ValueError("No sort field found") | ||
|
||
|
||
def load_json(json_file: str, exclude_keys: List[str], regex: bool, skip_filepaths: bool): | ||
try: | ||
with open(json_file, "r", encoding="utf-8") as f: | ||
data = json.load(f) | ||
except FileNotFoundError: | ||
logging.error("File not found: %s", json_file) | ||
sys.exit(1) | ||
except json.JSONDecodeError: | ||
logging.error("Invalid JSON: %s", json_file) | ||
sys.exit(1) | ||
return filter_dict(data, exclude_keys, regex, skip_filepaths) | ||
|
||
|
||
def output_results(json_1_data: Dict, json_2_data: Dict): | ||
if json_1_data == json_2_data: | ||
print("JSON files are equal") | ||
else: | ||
print("JSON files are not equal") | ||
sys.exit(1) | ||
|
||
|
||
def remove_filepaths(data: Dict) -> Dict: | ||
filtered_data = {} | ||
for key, value in data.items(): | ||
if isinstance(value, dict): | ||
filtered_data[key] = remove_filepaths(value) | ||
elif not (key == "value" and ("/" in value or r"\\" in value)): | ||
filtered_data[key] = value | ||
return filtered_data | ||
|
||
|
||
def sort_dict(result: Dict) -> Dict: | ||
"""Sorts a dictionary""" | ||
for k, v in result.items(): | ||
if isinstance(v, dict): | ||
result[k] = sort_dict(v) | ||
elif isinstance(v, list) and len(v) >= 2: | ||
result[k] = sort_list(v) | ||
else: | ||
result[k] = v | ||
return result | ||
|
||
|
||
def sort_list(lst: List) -> List: | ||
"""Sorts a list""" | ||
if isinstance(lst[0], dict): | ||
sort_field = get_sort_field(lst[0]) | ||
return sorted(lst, key=lambda x: x[sort_field]) | ||
if isinstance(lst[0], str) or isinstance(lst[0], int): | ||
lst.sort() | ||
return lst | ||
|
||
|
||
def main(): | ||
args = build_args() | ||
exclude_keys = set() | ||
if args.preset == "cdxgen": | ||
exclude_keys.add("serialNumber") | ||
exclude_keys.add("metadata.timestamp") | ||
else: | ||
exclude_keys = set(args.exclude) | ||
compare_dicts(args.input[0], args.input[1], args.skip_filepaths, exclude_keys, args.regex) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
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,45 @@ | ||
[project] | ||
name = "custom-json-diff" | ||
version = "0.1.0" | ||
description = "Custom JSON diff tool" | ||
authors = [ | ||
{ name = "Caroline Russell", email = "[email protected]" }, | ||
] | ||
dependencies = ["json-flatten>=0.3"] | ||
license = { text = "Apache-2.0" } | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Topic :: Utilities", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/appthreat/custom-json-diff" | ||
"Bug Tracker" = "https://github.com/appthreat/atom-tools/custom-json-diff/issues" | ||
|
||
[project.scripts] | ||
cjd = "custom_json_diff.custom_json_diff:main" | ||
custom-json-diff = "custom_json_diff.custom_json_diff:main" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest", | ||
] | ||
|
||
[build-system] | ||
requires = ["setuptools>=65", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"custom_json_diff", | ||
] | ||
|
||
|
Oops, something went wrong.