-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtest_diff.py
167 lines (122 loc) · 5.41 KB
/
test_diff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
"""Unit tests for the Diff class.
Copyright (c) 2020-2021 Network To Code, LLC <info@networktocode.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import pytest
from diffsync.diff import Diff, DiffElement
from diffsync.exceptions import ObjectAlreadyExists
def test_diff_empty():
"""Test the basic functionality of the Diff class when initialized and empty."""
diff = Diff()
assert not diff.children
assert not list(diff.groups())
assert not diff.has_diffs()
assert not list(diff.get_children())
def test_diff_summary_with_no_diffs():
diff = Diff()
assert diff.summary() == {"create": 0, "update": 0, "delete": 0, "no-change": 0, "skip": 0}
def test_diff_str_with_no_diffs():
diff = Diff()
assert diff.str() == "(no diffs)"
def test_diff_dict_with_no_diffs():
diff = Diff()
assert not diff.dict()
def test_diff_len_with_no_diffs():
diff = Diff()
assert len(diff) == 0
def test_diff_children():
"""Test the basic functionality of the Diff class when adding child elements."""
diff = Diff()
device_element = DiffElement("device", "device1", {"name": "device1"})
intf_element = DiffElement("interface", "eth0", {"device_name": "device1", "name": "eth0"})
diff.add(device_element)
assert "device" in diff.children
assert diff.children["device"] == {"device1": device_element}
assert list(diff.groups()) == ["device"]
assert not diff.has_diffs()
assert list(diff.get_children()) == [device_element]
with pytest.raises(ObjectAlreadyExists):
diff.add(device_element)
diff.add(intf_element)
assert "interface" in diff.children
assert diff.children["interface"] == {"eth0": intf_element}
assert list(diff.groups()) == ["device", "interface"]
assert not diff.has_diffs()
assert list(diff.get_children()) == [device_element, intf_element]
with pytest.raises(ObjectAlreadyExists):
diff.add(intf_element)
source_attrs = {"interface_type": "ethernet", "description": "my interface"}
dest_attrs = {"description": "your interface"}
intf_element.add_attrs(source=source_attrs, dest=dest_attrs)
assert diff.has_diffs()
def test_diff_summary_with_diffs(diff_with_children):
# Create person "Jimbo"
# Delete person "Sully"
# Update interface "device1_eth0"
# No change to address "RTP" and device "device1"
assert diff_with_children.summary() == {"create": 1, "update": 1, "delete": 1, "no-change": 2, "skip": 0}
def test_diff_str_with_diffs(diff_with_children):
# Since the address element has no diffs, we don't have any "address" entry in the diff string:
assert (
diff_with_children.str()
== """\
person
person: Jimbo MISSING in dest
person: Sully MISSING in source
device
device: device1
interface
interface: eth0
description source(my interface) dest(your interface)\
"""
)
def test_diff_dict_with_diffs(diff_with_children):
# Since the address element has no diffs, we don't have any "address" entry in the diff dict:
assert diff_with_children.dict() == {
"device": {
"device1": {
"interface": {"eth0": {"+": {"description": "my interface"}, "-": {"description": "your interface"}}}
}
},
"person": {"Jimbo": {"+": {}}, "Sully": {"-": {}}},
}
def test_diff_len_with_diffs(diff_with_children):
assert len(diff_with_children) == 5
assert len(diff_with_children) == sum(count for count in diff_with_children.summary().values())
def test_order_children_default(backend_a, backend_b):
"""Test that order_children_default is properly called when calling get_children."""
class MyDiff(Diff):
"""custom diff class to test order_children_default."""
@classmethod
def order_children_default(cls, children):
"""Return the children ordered in alphabetical order."""
keys = sorted(children.keys(), reverse=False)
for key in keys:
yield children[key]
# Validating default order method
diff_a_b = backend_a.diff_from(backend_b, diff_class=MyDiff)
children = diff_a_b.get_children()
children_names = [child.name for child in children]
assert children_names == ["atl", "nyc", "rdu", "sfo"]
def test_order_children_custom(backend_a, backend_b):
"""Test that a custom order_children method is properly called when calling get_children."""
class MyDiff(Diff):
"""custom diff class to test order_children_site."""
@classmethod
def order_children_site(cls, children):
"""Return the site children ordered in reverse-alphabetical order."""
keys = sorted(children.keys(), reverse=True)
for key in keys:
yield children[key]
diff_a_b = backend_a.diff_from(backend_b, diff_class=MyDiff)
children = diff_a_b.get_children()
children_names = [child.name for child in children]
assert children_names == ["sfo", "rdu", "nyc", "atl"]