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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
import collections
import collections.abc
from unittest import mock
from dict2xml import DataSorter, Node
class TestNode:
def test_determines_type_at_instantiation(self):
assert Node(data={}).type == "mapping"
assert Node(data=[]).type == "iterable"
for d in ["", "asdf", "", "asdf", 0, 1, False, True]:
assert Node(data=d).type == "flat"
class TestHandlingEntities:
def test_will_change_string_data_to_take_entities_into_account(self):
node = Node(data="<2&a>")
assert node.data == "<2&a>"
class TestDetermininType:
def assertType(self, *datas, **kwargs):
expected = kwargs.get("expected", None)
for d in datas:
assert Node(data=d).determine_type() == expected
def test_says_strings_are_falt(self):
self.assertType("", "asdf", "", "asdf", expected="flat")
def test_says_numbers_and_booleans_are_flat(self):
self.assertType(0, 1, False, True, expected="flat")
def test_says_anything_that_implements_dunder_iter_is_an_iterable(self):
class IterableObject(object):
def __iter__(s):
return []
self.assertType((), [], set(), IterableObject(), expected="iterable")
def test_says_anything_that_is_a_dict_or_subclass_of_collections_Mapping_is_a_mapping(
self,
):
class MappingObject(collections.abc.Mapping):
def __len__(s):
return 0
def __iter__(s):
return []
def __getitem__(s, key):
return key
self.assertType({}, MappingObject(), expected="mapping")
def test_can_not_determine_if_an_object_is_a_mapping_if_it_is_not_subclass_of_collections_Mapping(
self,
):
# Would be great if possible, but doesn't seem to be :(
class WantsToBeMappingObject(object):
def __iter__(s):
return []
def __getitem__(s, key):
return key
self.assertType(WantsToBeMappingObject(), expected="iterable")
class TestConversion:
def test_it_returns_list_of_Nodes_with_key_as_wrap_and_item_as_data_if_type_is_mapping(
self,
):
called = []
nodes = [mock.Mock(name="n{0}".format(i)) for i in range(3)]
def N(*args, **kwargs):
called.append(1)
return nodes[len(called) - 1]
ds = DataSorter()
irw = mock.Mock("irw")
ctf = mock.Mock("ctf")
FakeNode = mock.Mock(name="Node", side_effect=N)
with mock.patch("dict2xml.logic.Node", FakeNode):
data = dict(a=1, b=2, c=3)
result = Node(
data=data,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
).convert()
assert result == ("", nodes)
assert FakeNode.mock_calls == [
mock.call(
"a",
"",
1,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"b",
"",
2,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"c",
"",
3,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
]
def test_it_respects_the_order_of_an_ordered_dict(self):
called = []
nodes = [mock.Mock(name="n{0}".format(i)) for i in range(3)]
def N(*args, **kwargs):
called.append(1)
return nodes[len(called) - 1]
ds = DataSorter()
irw = mock.Mock("irw")
ctf = mock.Mock("ctf")
FakeNode = mock.Mock(name="Node", side_effect=N)
with mock.patch("dict2xml.logic.Node", FakeNode):
data = collections.OrderedDict([("b", 2), ("c", 3), ("a", 1)])
result = Node(
data=data,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
).convert()
assert result == ("", nodes)
assert FakeNode.mock_calls == [
mock.call(
"b",
"",
2,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"c",
"",
3,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"a",
"",
1,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
]
def test_it_can_be_told_to_also_sort_OrderdDict(self):
called = []
nodes = [mock.Mock(name="n{0}".format(i)) for i in range(3)]
def N(*args, **kwargs):
called.append(1)
return nodes[len(called) - 1]
ds = DataSorter.always()
irw = mock.Mock("irw")
ctf = mock.Mock("ctf")
FakeNode = mock.Mock(name="Node", side_effect=N)
with mock.patch("dict2xml.logic.Node", FakeNode):
data = collections.OrderedDict([("b", 2), ("c", 3), ("a", 1)])
result = Node(
data=data,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
).convert()
assert result == ("", nodes)
assert FakeNode.mock_calls == [
mock.call(
"a",
"",
1,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"b",
"",
2,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"c",
"",
3,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
]
def test_it_can_be_told_to_never_sort(self):
called = []
nodes = [mock.Mock(name="n{0}".format(i)) for i in range(3)]
def N(*args, **kwargs):
called.append(1)
return nodes[len(called) - 1]
ds = DataSorter.never()
irw = mock.Mock("irw")
ctf = mock.Mock("ctf")
FakeNode = mock.Mock(name="Node", side_effect=N)
with mock.patch("dict2xml.logic.Node", FakeNode):
data = {"c": 3, "a": 1, "b": 2}
result = Node(
data=data,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
).convert()
assert result == ("", nodes)
assert FakeNode.mock_calls == [
mock.call(
"c",
"",
3,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"a",
"",
1,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"b",
"",
2,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
]
def test_it_returns_list_of_Nodes_with_wrap_as_tag_and_item_as_data_if_type_is_iterable(
self,
):
called = []
nodes = [mock.Mock(name="n{0}".format(i)) for i in range(3)]
def N(*args, **kwargs):
called.append(1)
return nodes[len(called) - 1]
ds = DataSorter()
irw = mock.Mock("irw")
ctf = mock.Mock("ctf")
FakeNode = mock.Mock(name="Node", side_effect=N)
with mock.patch("dict2xml.logic.Node", FakeNode):
data = [1, 2, 3]
result = Node(
data=data,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
).convert()
assert result == ("", nodes)
assert FakeNode.mock_calls == [
mock.call(
"",
"",
1,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"",
"",
2,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
mock.call(
"",
"",
3,
iterables_repeat_wrap=irw,
closed_tags_for=ctf,
data_sorter=ds,
),
]
def test_it_returns_data_enclosed_in_tags_made_from_self_tag_if_not_iterable_or_mapping(
self,
):
tag = "thing"
results = []
for d in [0, 1, "", "", "asdf", "qwer", False, True]:
val, children = Node(tag=tag, data=d).convert()
assert len(children) == 0
results.append(val)
assert results == [
"<thing>0</thing>",
"<thing>1</thing>",
"<thing></thing>",
"<thing></thing>",
"<thing>asdf</thing>",
"<thing>qwer</thing>",
"<thing>False</thing>",
"<thing>True</thing>",
]
def test_it_returns_data_as_is_if_not_iterable_or_mapping_and_no_self_tag(self):
tag = ""
results = []
for d in [0, 1, "", "", "asdf", "qwer", False, True]:
val, children = Node(tag=tag, data=d).convert()
assert len(children) == 0
results.append(val)
assert results == ["0", "1", "", "", "asdf", "qwer", "False", "True"]
|