Skip to content
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

fix: finish common key var separation #18

Closed
wants to merge 1 commit into from
Closed
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
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,42 @@
"${workspaceFolder}/onew.json",
"new_hex_placeholder"
]
},
{
"name": "Compare JSON PF Files",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/frappe_schema_json_diff.py",
"console": "integratedTerminal",
"env": {
"TABLE_MODE": "0"
},
"args": [
"fill",
"${workspaceFolder}/pf_original.json",
"old_hex_placeholder",
"fill",
"${workspaceFolder}/pf_removed.json",
"new_hex_placeholder"
]
},
{
"name": "Compare JSON Fixtures",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/frappe_schema_json_diff.py",
"console": "integratedTerminal",
"env": {
"TABLE_MODE": "0"
},
"args": [
"fill",
"${workspaceFolder}/fixture_old.json",
"old_hex_placeholder",
"fill",
"${workspaceFolder}/fixture_new.json",
"new_hex_placeholder"
]
}
]
}
28 changes: 14 additions & 14 deletions frappe_schema_json_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def list_diff(
bd_kv = bd[common_key]
conc_b_path = f"{b_path}/{i}"
if bd_kv in deleted_dict_keys:
self.red_dict(bd, conc_b_path, list_tree)
self.red_dict(bd, conc_b_path, list_tree, common_key)
deleted_dict_keys.remove(bd_kv)
else:
for j, hd in enumerate(head_list):
Expand All @@ -197,13 +197,13 @@ def list_diff(
if rtree.children:
list_tree.add(rtree)
elif hd_kv in added_dict_keys:
self.grn_dict(hd, conc_h_path, list_tree)
self.grn_dict(hd, conc_h_path, list_tree, common_key)
added_dict_keys.remove(hd_kv)
elif isdict:
for i, d in enumerate(base_list):
self.red_dict(d, f"{b_path}/{i}", list_tree)
self.red_dict(d, f"{b_path}/{i}", list_tree, common_key)
for i, d in enumerate(head_list):
self.grn_dict(d, f"{h_path}/{i}", list_tree)
self.grn_dict(d, f"{h_path}/{i}", list_tree, common_key)
else:
del_set, add_set = symmetric_diff_sep(set(base_list), set(head_list))
for i, e in enumerate(base_list):
Expand Down Expand Up @@ -258,11 +258,11 @@ def pf_diff(
list_tree.add(rtree)
conc_b_path = f"{b_path}/{i}"
if bd_kv in deleted_dict_keys:
self.red_dict(bd, conc_b_path, list_tree)
self.red_dict(bd, conc_b_path, list_tree, common_key)
deleted_dict_keys.remove(bd_kv)
else:
for j, hd in enumerate(head_list):
hd_kv = hd[self.common_key]
# !!! hd_kv = hd[self.common_key]
conc_h_path = f"{h_path}/{j}"
if bd_kv == hd_kv and bd_kv in diff_dict_keys:
rtree = self.dict_diff(
Expand Down Expand Up @@ -337,46 +337,46 @@ def grn_elem(self, elem: str, path: str, tree: Tree) -> None:
else:
tree.add(f"[green][bold]+ {self.head_ln.val(path)}[/bold] {elem}[/green]")

def red_dict(self, bdict: dict, path: str, tree: Tree) -> None:
def red_dict(self, bdict: dict, path: str, tree: Tree, common_key: str) -> None:
if self.print_table:
self.table.add_row(
f"[bold]- {self.base_ln.val(path)}[/bold] {path}",
bdict[self.common_key],
bdict[common_key],
"[bold magenta]VALUES BELOW[/bold magenta]",
style="red",
)
for k, v in bdict.items():
self.table.add_row(
f"[bold magenta]In Dict:[/bold magenta] {bdict[self.common_key]}",
f"[bold magenta]In Dict:[/bold magenta] {bdict[common_key]}",
k,
f"{v}",
style="red",
)
else:
dict_tree = tree.add(
f"[red][bold]- {self.base_ln.val(path)}[/bold] {bdict[self.common_key]}[/red]"
f"[red][bold]- {self.base_ln.val(path)}[/bold] {bdict[common_key]}[/red]"
)
for k, v in bdict.items():
dict_tree.add(f"[red]- {k} : {v}[/red]")

def grn_dict(self, hdict: dict, path: str, tree: Tree) -> None:
def grn_dict(self, hdict: dict, path: str, tree: Tree, common_key: str) -> None:
if self.print_table:
self.table.add_row(
f"[bold]+ {self.head_ln.val(path)}[/bold] {path}",
hdict[self.common_key],
hdict[common_key],
"[bold magenta]VALUES BELOW[/bold magenta]",
style="green",
)
for k, v in hdict.items():
self.table.add_row(
f"[bold magenta]In Dict:[/bold magenta] {hdict[self.common_key]}",
f"[bold magenta]In Dict:[/bold magenta] {hdict[common_key]}",
k,
f"{v}",
style="green",
)
else:
dict_tree = tree.add(
f"[green][bold]+ {self.head_ln.val(path)}[/bold] {hdict[self.common_key]}[/green]"
f"[green][bold]+ {self.head_ln.val(path)}[/bold] {hdict[common_key]}[/green]"
)
for k, v in hdict.items():
dict_tree.add(f"[green]+ {k} : {v}[/green]")
Expand Down