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
|
# coding: spec
import collections
import collections.abc
from unittest import mock
from dict2xml import DataSorter, Node
describe "Node":
it "determines type at instantiation":
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"
describe "Handling entities":
it "will change string data to take entities into account":
node = Node(data="<2&a>")
assert node.data == "<2&a>"
describe "Determining type":
def assertType(self, *datas, **kwargs):
expected = kwargs.get("expected", None)
for d in datas:
assert Node(data=d).determine_type() == expected
it "says strings are flat":
self.assertType("", "asdf", "", "asdf", expected="flat")
it "says numbers and booleans are flat":
self.assertType(0, 1, False, True, expected="flat")
it "says anything that implements __iter__ is an iterable":
class IterableObject(object):
def __iter__(s):
return []
self.assertType((), [], set(), IterableObject(), expected="iterable")
it "says anything that is a dict or subclass of collections.Mapping is a mapping":
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")
it "can't determine if an object is a mapping if it isn't sublass of collections.Mapping":
# 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")
describe "Conversion":
it "returns list of Nodes with key as wrap and item as data if type is mapping":
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
),
]
it "respects the order of an OrderedDict":
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
),
]
it "can be told to also sort OrderedDict":
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
),
]
it "can be told to never sort":
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
),
]
it "returns list of Nodes with wrap as tag and item as data if type is iterable":
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
),
]
it "returns data enclosed in tags made from self.tag if not iterable or mapping":
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>",
]
it "returns data as is if not iterable or mapping and no self.tag":
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"]
|