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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
#
# Copyright (C) 2019 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
# USA
#
import unittest
from dasbus.typing import get_variant, get_native, Int, Str, List, Bool, \
Dict, Structure, Variant
from dasbus.structure import DBusData, DBusStructureError, compare_data, \
generate_string_from_data
class DBusStructureTestCase(unittest.TestCase):
"""Test the DBus structure support."""
def test_empty_structure(self):
with self.assertRaises(DBusStructureError) as cm:
class NoData(DBusData):
pass
NoData()
self.assertEqual(str(cm.exception), "No fields found.")
def test_readonly_structure(self):
with self.assertRaises(DBusStructureError) as cm:
class ReadOnlyData(DBusData):
@property
def x(self) -> Int:
return 1
ReadOnlyData()
self.assertEqual(str(cm.exception), "Field 'x' cannot be set.")
def test_writeonly_structure(self):
with self.assertRaises(DBusStructureError) as cm:
class WriteOnlyData(DBusData):
def __init__(self):
self._x = 0
def set_x(self, x):
self._x = x
x = property(None, set_x)
WriteOnlyData()
self.assertEqual(str(cm.exception), "Field 'x' cannot be get.")
def test_no_type_structure(self):
with self.assertRaises(DBusStructureError) as cm:
class NoTypeData(DBusData):
def __init__(self):
self._x = 0
@property
def x(self):
return self._x
@x.setter
def x(self, x):
self._x = x
NoTypeData()
self.assertEqual(str(cm.exception), "Field 'x' has unknown type.")
class SkipData(DBusData):
class_attribute = 1
def __init__(self):
self._x = 0
self._y = 1
@property
def x(self) -> Int:
return self._x
@property
def _private_property(self):
return 1
@x.setter
def x(self, x):
self._x = x
def method(self):
pass
def test_skip_members(self):
data = self.SkipData()
structure = self.SkipData.to_structure(data)
self.assertEqual(structure, {
'x': get_variant(Int, 0)
})
data = self.SkipData.from_structure({
'x': get_variant(Int, 10)
})
self.assertEqual(data.x, 10)
class SimpleData(DBusData):
def __init__(self):
self._x = 0
@property
def x(self) -> Int:
return self._x
@x.setter
def x(self, x):
self._x = x
def test_get_simple_structure(self):
data = self.SimpleData()
self.assertEqual(data.x, 0)
structure = self.SimpleData.to_structure(data)
self.assertEqual(structure, {'x': get_variant(Int, 0)})
data.x = 10
self.assertEqual(data.x, 10)
structure = self.SimpleData.to_structure(data)
self.assertEqual(structure, {'x': get_variant(Int, 10)})
def test_get_simple_structure_list(self):
d1 = self.SimpleData()
d1.x = 1
d2 = self.SimpleData()
d2.x = 2
d3 = self.SimpleData()
d3.x = 3
structures = self.SimpleData.to_structure_list([d1, d2, d3])
self.assertEqual(structures, [
{'x': get_variant(Int, 1)},
{'x': get_variant(Int, 2)},
{'x': get_variant(Int, 3)}
])
def test_apply_simple_structure(self):
data = self.SimpleData()
self.assertEqual(data.x, 0)
structure = {'x': get_variant(Int, 10)}
data = self.SimpleData.from_structure(structure)
self.assertEqual(data.x, 10)
def test_apply_simple_invalid_structure(self):
with self.assertRaises(DBusStructureError) as cm:
self.SimpleData.from_structure({'y': get_variant(Int, 10)})
self.assertEqual(str(cm.exception), "Field 'y' doesn't exist.")
def test_apply_simple_structure_list(self):
s1 = {'x': get_variant(Int, 1)}
s2 = {'x': get_variant(Int, 2)}
s3 = {'x': get_variant(Int, 3)}
data = self.SimpleData.from_structure_list([s1, s2, s3])
self.assertEqual(len(data), 3)
self.assertEqual(data[0].x, 1)
self.assertEqual(data[1].x, 2)
self.assertEqual(data[2].x, 3)
def test_compare_simple_structure(self):
data = self.SimpleData()
self.assertTrue(compare_data(data, data))
self.assertTrue(compare_data(data, self.SimpleData()))
self.assertFalse(compare_data(data, None))
self.assertFalse(compare_data(None, data))
self.assertTrue(compare_data(
self.SimpleData.from_structure({'x': get_variant(Int, 10)}),
self.SimpleData.from_structure({'x': get_variant(Int, 10)})
))
self.assertFalse(compare_data(
self.SimpleData.from_structure({'x': get_variant(Int, 10)}),
self.SimpleData.from_structure({'x': get_variant(Int, 9)})
))
class OtherData(DBusData):
def __init__(self):
self._x = 0
@property
def x(self) -> Int:
return self._x
@x.setter
def x(self, x):
self._x = x
def test_get_structure_from_invalid_type(self):
data = self.OtherData()
with self.assertRaises(TypeError) as cm:
self.SimpleData.to_structure(data)
self.assertEqual(str(cm.exception), "Invalid type 'OtherData'.")
def test_apply_structure_with_invalid_type(self):
structure = ["x"]
with self.assertRaises(TypeError) as cm:
self.SimpleData.from_structure(structure)
self.assertEqual(str(cm.exception), "Invalid type 'list'.")
def test_apply_structure_with_invalid_type_variant(self):
structure = get_variant(List[Structure], [{'x': get_variant(Int, 10)}])
with self.assertRaises(TypeError) as cm:
self.SimpleData.from_structure_list(structure)
self.assertEqual(str(cm.exception), "Invalid type 'Variant'.")
class ComplicatedData(DBusData):
def __init__(self):
self._very_long_property_name = ""
self._bool_list = []
self._dictionary = {}
@property
def dictionary(self) -> Dict[Int, Str]:
return self._dictionary
@dictionary.setter
def dictionary(self, value):
self._dictionary = value
@property
def bool_list(self) -> List[Bool]:
return self._bool_list
@bool_list.setter
def bool_list(self, value):
self._bool_list = value
@property
def very_long_property_name(self) -> Str:
return self._very_long_property_name
@very_long_property_name.setter
def very_long_property_name(self, value):
self._very_long_property_name = value
def test_get_complicated_structure(self):
data = self.ComplicatedData()
data.dictionary = {1: "1", 2: "2"}
data.bool_list = [True, False, False]
data.very_long_property_name = "My String Value"
self.assertEqual(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
},
self.ComplicatedData.to_structure(data)
)
def test_apply_complicated_structure(self):
data = self.ComplicatedData.from_structure(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
}
)
self.assertEqual(data.dictionary, {1: "1", 2: "2"})
self.assertEqual(data.bool_list, [True, False, False])
self.assertEqual(data.very_long_property_name, "My String Value")
def test_compare_complicated_structure(self):
self.assertTrue(compare_data(
self.ComplicatedData(),
self.ComplicatedData(),
))
self.assertFalse(compare_data(
self.ComplicatedData(),
self.SimpleData()
))
self.assertFalse(compare_data(
self.SimpleData(),
self.ComplicatedData()
))
self.assertTrue(compare_data(
self.ComplicatedData.from_structure(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
}
),
self.ComplicatedData.from_structure(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
}
)
))
self.assertFalse(compare_data(
self.ComplicatedData.from_structure(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
}
),
self.ComplicatedData.from_structure(
{
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, True]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
}
)
))
def test_get_native_complicated_structure(self):
data = self.ComplicatedData.from_structure({
'dictionary': get_variant(
Dict[Int, Str], {1: "1", 2: "2"}
),
'bool-list': get_variant(
List[Bool], [True, False, False]
),
'very-long-property-name': get_variant(
Str, "My String Value"
)
})
structure = self.ComplicatedData.to_structure(
data
)
dictionary = {
'dictionary': {1: "1", 2: "2"},
'bool-list': [True, False, False],
'very-long-property-name': "My String Value"
}
self.assertEqual(get_native(structure), dictionary)
self.assertEqual(get_native(dictionary), dictionary)
class StringData(DBusData):
def __init__(self):
self._a = 1
self._b = ""
self._c = []
self._d = []
@property
def a(self) -> Int:
return self._a
@a.setter
def a(self, value):
self._a = value
@property
def b(self) -> Str:
return self._b
@b.setter
def b(self, value):
self._b = value
@property
def c(self) -> List[Bool]:
return self._c
@c.setter
def c(self, value):
self._c = value
def test_string_representation(self):
data = self.StringData()
expected = "StringData(a=1, b='', c=[])"
self.assertEqual(expected, repr(data))
self.assertEqual(expected, str(data))
data.a = 123
data.b = "HELLO"
data.c = [True, False]
expected = "StringData(a=123, b='HELLO', c=[True, False])"
self.assertEqual(expected, repr(data))
self.assertEqual(expected, str(data))
class AdvancedStringData(DBusData):
def __init__(self):
self._a = ""
self._b = ""
self._c = ""
@property
def a(self) -> Str:
return self._a
@a.setter
def a(self, value):
self._a = value
@property
def b(self) -> Str:
return self._b
@b.setter
def b(self, value):
self._b = value
@property
def c(self) -> Str:
return self._c
@c.setter
def c(self, value):
self._c = value
def __repr__(self):
return generate_string_from_data(
obj=self,
skip=["b"],
add={"b_is_set": bool(self.b)}
)
def test_advanced_string_representation(self):
data = self.AdvancedStringData()
expected = "AdvancedStringData(a='', b_is_set=False, c='')"
self.assertEqual(expected, repr(data))
self.assertEqual(expected, str(data))
data.a = "A"
data.b = "B"
data.c = "C"
expected = "AdvancedStringData(a='A', b_is_set=True, c='C')"
self.assertEqual(expected, repr(data))
self.assertEqual(expected, str(data))
def test_generate_string_from_invalid_type(self):
with self.assertRaises(DBusStructureError) as cm:
generate_string_from_data({"x": 1})
self.assertEqual(
str(cm.exception),
"Fields are not defined at '__dbus_fields__'."
)
def test_nested_structure(self):
class SimpleData(DBusData):
def __init__(self):
self._x = 0
@property
def x(self) -> Int:
return self._x
@x.setter
def x(self, value):
self._x = value
class SecretData(DBusData):
def __init__(self):
self._y = ""
@property
def y(self) -> Str:
return self._y
@y.setter
def y(self, value):
self._y = value
def __repr__(self):
return generate_string_from_data(
self, skip=["y"], add={"y_set": bool(self.y)}
)
class NestedData(DBusData):
def __init__(self):
self._attr = SimpleData()
self._secret = SecretData()
self._list = []
@property
def attr(self) -> SimpleData:
return self._attr
@attr.setter
def attr(self, value):
self._attr = value
@property
def secret(self) -> SecretData:
return self._secret
@secret.setter
def secret(self, value):
self._secret = value
@property
def list(self) -> List[SimpleData]:
return self._list
@list.setter
def list(self, value):
self._list = value
data = NestedData()
expected = \
"NestedData(" \
"attr=SimpleData(x=0), " \
"list=[], " \
"secret=SecretData(y_set=False))"
self.assertEqual(str(data), expected)
self.assertEqual(repr(data), expected)
data.attr.x = -1
data.secret.y = "SECRET"
for x in range(2):
item = SimpleData()
item.x = x
data.list.append(item)
expected = \
"NestedData(" \
"attr=SimpleData(x=-1), " \
"list=[SimpleData(x=0), SimpleData(x=1)], " \
"secret=SecretData(y_set=True))"
self.assertEqual(str(data), expected)
self.assertEqual(repr(data), expected)
self.assertEqual(NestedData.to_structure(data), {
'attr': get_variant(Structure, {
'x': get_variant(Int, -1)
}),
'secret': get_variant(Structure, {
'y': get_variant(Str, "SECRET")
}),
'list': get_variant(List[Structure], [
{'x': get_variant(Int, 0)},
{'x': get_variant(Int, 1)}
])
})
dictionary = {
'attr': {'x': 10},
'secret': {'y': "SECRET"},
'list': [{'x': 200}, {'x': 300}]
}
structure = {
'attr': get_variant(Dict[Str, Variant], {
'x': get_variant(Int, 10)
}),
'secret': get_variant(Dict[Str, Variant], {
'y': get_variant(Str, "SECRET")
}),
'list': get_variant(List[Dict[Str, Variant]], [
{'x': get_variant(Int, 200)},
{'x': get_variant(Int, 300)}
])
}
data = NestedData.from_structure(structure)
self.assertEqual(data.attr.x, 10)
self.assertEqual(data.secret.y, "SECRET")
self.assertEqual(len(data.list), 2)
self.assertEqual(data.list[0].x, 200)
self.assertEqual(data.list[1].x, 300)
structure = NestedData.to_structure(data)
self.assertEqual(get_native(structure), dictionary)
|