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 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
|
# This program 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 3 of the License, or (at your option) any
# later version. See http://www.gnu.org/copyleft/lgpl.html for the full text
# of the license.
__author__ = "Martin Pitt"
__copyright__ = """
(c) 2012 Canonical Ltd.
(c) 2017 - 2022 Martin Pitt <martin@piware.de>
"""
import importlib.util
import os
import shutil
import subprocess
import sys
import tempfile
import time
import tracemalloc
import unittest
from pathlib import Path
import dbus
import dbus.mainloop.glib
from gi.repository import GLib
import dbusmock
tracemalloc.start(25)
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
# "a <heart> b" in py2/3 compatible unicode
UNICODE = b"a\xe2\x99\xa5b".decode("UTF-8")
class TestAPI(dbusmock.DBusTestCase):
"""Test dbus-mock API"""
@classmethod
def setUpClass(cls):
cls.start_session_bus()
cls.dbus_con = cls.get_dbus()
def setUp(self):
# pylint: disable=consider-using-with
self.mock_log = tempfile.NamedTemporaryFile() # noqa: SIM115
self.p_mock = self.spawn_server(
"org.freedesktop.Test", "/", "org.freedesktop.Test.Main", stdout=self.mock_log
)
self.obj_test = self.dbus_con.get_object("org.freedesktop.Test", "/")
self.dbus_test = dbus.Interface(self.obj_test, "org.freedesktop.Test.Main")
self.dbus_mock = dbus.Interface(self.obj_test, dbusmock.MOCK_IFACE)
self.dbus_props = dbus.Interface(self.obj_test, dbus.PROPERTIES_IFACE)
def assertLog(self, regex):
self.assertRegex(Path(self.mock_log.name).read_bytes(), regex)
def tearDown(self):
if self.p_mock.stdout:
self.p_mock.stdout.close()
self.p_mock.terminate()
self.p_mock.wait()
def test_noarg_noret(self):
"""no arguments, no return value"""
self.dbus_mock.AddMethod("", "Do", "", "", "")
self.assertEqual(self.dbus_test.Do(), None)
# check that it's logged correctly
self.assertLog(b"^[0-9.]+ Do$")
def test_onearg_noret(self):
"""one argument, no return value"""
self.dbus_mock.AddMethod("", "Do", "s", "", "")
self.assertEqual(self.dbus_test.Do("Hello"), None)
# check that it's logged correctly
self.assertLog(b'^[0-9.]+ Do "Hello"$')
def test_onearg_ret(self):
"""one argument, code for return value"""
self.dbus_mock.AddMethod("", "Do", "s", "s", "ret = args[0]")
self.assertEqual(self.dbus_test.Do("Hello"), "Hello")
def test_unicode_str(self):
"""unicode string roundtrip"""
self.dbus_mock.AddMethod("", "Do", "s", "s", "ret = args[0] * 2")
self.assertEqual(self.dbus_test.Do(UNICODE), dbus.String(UNICODE * 2))
def test_twoarg_ret(self):
"""two arguments, code for return value"""
self.dbus_mock.AddMethod("", "Do", "si", "s", "ret = args[0] * args[1]")
self.assertEqual(self.dbus_test.Do("foo", 3), "foofoofoo")
# check that it's logged correctly
self.assertLog(b'^[0-9.]+ Do "foo" 3$')
def test_array_arg(self):
"""array argument"""
self.dbus_mock.AddMethod(
"",
"Do",
"iaous",
"",
f"""assert len(args) == 4
assert args[0] == -1;
assert args[1] == ['/foo']
assert type(args[1]) == dbus.Array
assert type(args[1][0]) == dbus.ObjectPath
assert args[2] == 5
assert args[3] == {UNICODE!r}
""",
)
self.assertEqual(self.dbus_test.Do(-1, ["/foo"], 5, UNICODE), None)
# check that it's logged correctly
self.assertLog(b'^[0-9.]+ Do -1 \\["/foo"\\] 5 "a\\xe2\\x99\\xa5b"$')
def test_dict_arg(self):
"""dictionary argument"""
self.dbus_mock.AddMethod(
"",
"Do",
"ia{si}u",
"",
"""assert len(args) == 3
assert args[0] == -1;
assert args[1] == {'foo': 42}
assert type(args[1]) == dbus.Dictionary
assert args[2] == 5
""",
)
self.assertEqual(self.dbus_test.Do(-1, {"foo": 42}, 5), None)
# check that it's logged correctly
self.assertLog(b'^[0-9.]+ Do -1 {"foo": 42} 5$')
def test_multi_output(self):
"""multiple output values"""
self.dbus_mock.AddMethod("", "AddSub", "ii", "ii", "ret = (args[0] + args[1], args[0] - args[1])")
self.assertEqual(self.dbus_test.AddSub(3, 5), (8, -2))
def test_exception(self):
"""raise a D-Bus exception"""
self.dbus_mock.AddMethod(
"", "Do", "", "i", 'raise dbus.exceptions.DBusException("no good", name="com.example.Error.NoGood")'
)
with self.assertRaises(dbus.exceptions.DBusException) as cm:
self.dbus_test.Do()
self.assertEqual(cm.exception.get_dbus_name(), "com.example.Error.NoGood")
self.assertEqual(cm.exception.get_dbus_message(), "no good")
self.assertLog(b"\n[0-9.]+ Do raised: com.example.Error.NoGood:.*\n")
def test_methods_on_other_interfaces(self):
"""methods on other interfaces"""
self.dbus_mock.AddMethod("org.freedesktop.Test.Other", "OtherDo", "", "", "")
self.dbus_mock.AddMethods(
"org.freedesktop.Test.Other", [("OtherDo2", "", "", ""), ("OtherDo3", "i", "i", "ret = args[0]")]
)
# should not be on the main interface
self.assertRaises(dbus.exceptions.DBusException, self.dbus_test.OtherDo)
# should be on the other interface
self.assertEqual(self.obj_test.OtherDo(dbus_interface="org.freedesktop.Test.Other"), None)
self.assertEqual(self.obj_test.OtherDo2(dbus_interface="org.freedesktop.Test.Other"), None)
self.assertEqual(self.obj_test.OtherDo3(42, dbus_interface="org.freedesktop.Test.Other"), 42)
# check that it's logged correctly
self.assertLog(b"^[0-9.]+ OtherDo\n[0-9.]+ OtherDo2\n[0-9.]+ OtherDo3 42$")
def test_methods_same_name(self):
"""methods with same name on different interfaces"""
self.dbus_mock.AddMethod("org.iface1", "Do", "i", "i", "ret = args[0] + 2")
self.dbus_mock.AddMethod("org.iface2", "Do", "i", "i", "ret = args[0] + 3")
# should not be on the main interface
self.assertRaises(dbus.exceptions.DBusException, self.dbus_test.Do)
# should be on the other interface
self.assertEqual(self.obj_test.Do(10, dbus_interface="org.iface1"), 12)
self.assertEqual(self.obj_test.Do(11, dbus_interface="org.iface2"), 14)
# check that it's logged correctly
self.assertLog(b"^[0-9.]+ Do 10\n[0-9.]+ Do 11$")
# now add it to the primary interface, too
self.dbus_mock.AddMethod("", "Do", "i", "i", "ret = args[0] + 1")
self.assertEqual(self.obj_test.Do(9, dbus_interface="org.freedesktop.Test.Main"), 10)
self.assertEqual(self.obj_test.Do(10, dbus_interface="org.iface1"), 12)
self.assertEqual(self.obj_test.Do(11, dbus_interface="org.iface2"), 14)
def test_methods_type_mismatch(self):
"""calling methods with wrong arguments"""
def check(signature, args, err):
self.dbus_mock.AddMethod("", "Do", signature, "", "")
try:
self.dbus_test.Do(*args)
self.fail(f'method call did not raise an error for signature "{signature}" and arguments {args}')
except dbus.exceptions.DBusException as e:
self.assertEqual(e.get_dbus_name(), "org.freedesktop.DBus.Error.InvalidArgs")
self.assertIn(err, str(e))
# not enough arguments
check("i", [], "More items found")
check("is", [1], "More items found")
# too many arguments
check("", [1], "Fewer items found")
check("i", [1, "hello"], "Fewer items found")
# type mismatch
check("u", [-1], "convert negative value to unsigned")
check("i", ["hello"], "dbus.String")
check("i", ["hello"], "integer")
check("s", [1], "Expected a string")
def test_add_object(self):
"""add a new object"""
self.dbus_mock.AddObject(
"/obj1",
"org.freedesktop.Test.Sub",
{
"state": dbus.String("online"),
"cute": dbus.Boolean(True),
},
[],
)
obj1 = self.dbus_con.get_object("org.freedesktop.Test", "/obj1")
dbus_sub = dbus.Interface(obj1, "org.freedesktop.Test.Sub")
dbus_props = dbus.Interface(obj1, dbus.PROPERTIES_IFACE)
# check properties
self.assertEqual(dbus_props.Get("org.freedesktop.Test.Sub", "state"), "online")
self.assertEqual(dbus_props.Get("org.freedesktop.Test.Sub", "cute"), True)
self.assertEqual(dbus_props.GetAll("org.freedesktop.Test.Sub"), {"state": "online", "cute": True})
# add new method
obj1.AddMethod("", "Do", "", "s", 'ret = "hello"', dbus_interface=dbusmock.MOCK_IFACE)
self.assertEqual(dbus_sub.Do(), "hello")
def test_add_object_existing(self):
"""try to add an existing object"""
self.dbus_mock.AddObject("/obj1", "org.freedesktop.Test.Sub", {}, [])
self.assertRaises(
dbus.exceptions.DBusException, self.dbus_mock.AddObject, "/obj1", "org.freedesktop.Test.Sub", {}, []
)
# try to add the main object again
self.assertRaises(
dbus.exceptions.DBusException, self.dbus_mock.AddObject, "/", "org.freedesktop.Test.Other", {}, []
)
def test_add_object_with_methods(self):
"""add a new object with methods"""
self.dbus_mock.AddObject(
"/obj1",
"org.freedesktop.Test.Sub",
{
"state": dbus.String("online"),
"cute": dbus.Boolean(True),
},
[
("Do0", "", "i", "ret = 42"),
("Do1", "i", "i", "ret = 31337"),
],
)
obj1 = self.dbus_con.get_object("org.freedesktop.Test", "/obj1")
self.assertEqual(obj1.Do0(), 42)
self.assertEqual(obj1.Do1(1), 31337)
self.assertRaises(dbus.exceptions.DBusException, obj1.Do2, 31337)
def test_properties(self):
"""add and change properties"""
# no properties by default
self.assertEqual(self.dbus_props.GetAll("org.freedesktop.Test.Main"), {})
# no such property
with self.assertRaises(dbus.exceptions.DBusException) as ctx:
self.dbus_props.Get("org.freedesktop.Test.Main", "version")
self.assertEqual(ctx.exception.get_dbus_name(), "org.freedesktop.Test.Main.UnknownProperty")
self.assertEqual(ctx.exception.get_dbus_message(), "no such property version")
self.assertRaises(
dbus.exceptions.DBusException,
self.dbus_props.Set,
"org.freedesktop.Test.Main",
"version",
dbus.Int32(2),
)
self.dbus_mock.AddProperty("org.freedesktop.Test.Main", "version", dbus.Int32(2))
# once again on default interface
self.dbus_mock.AddProperty("", "connected", dbus.Boolean(True))
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Main", "version"), 2)
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Main", "connected"), True)
self.assertEqual(self.dbus_props.GetAll("org.freedesktop.Test.Main"), {"version": 2, "connected": True})
with self.assertRaises(dbus.exceptions.DBusException) as ctx:
self.dbus_props.GetAll("org.freedesktop.Test.Bogus")
self.assertEqual(ctx.exception.get_dbus_name(), "org.freedesktop.Test.Main.UnknownInterface")
self.assertEqual(ctx.exception.get_dbus_message(), "no such interface org.freedesktop.Test.Bogus")
# change property
self.dbus_props.Set("org.freedesktop.Test.Main", "version", dbus.Int32(4))
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Main", "version"), 4)
# check that the Get/Set calls get logged
log = Path(self.mock_log.name).read_text("UTF-8")
self.assertRegex(log, "\n[0-9.]+ Get / org.freedesktop.Test.Main.version\n")
self.assertRegex(log, "\n[0-9.]+ Get / org.freedesktop.Test.Main.connected\n")
self.assertRegex(log, "\n[0-9.]+ GetAll / org.freedesktop.Test.Main\n")
self.assertRegex(log, "\n[0-9.]+ Set / org.freedesktop.Test.Main.version 4\n")
# add property to different interface
self.dbus_mock.AddProperty("org.freedesktop.Test.Other", "color", dbus.String("yellow"))
self.assertEqual(self.dbus_props.GetAll("org.freedesktop.Test.Main"), {"version": 4, "connected": True})
self.assertEqual(self.dbus_props.GetAll("org.freedesktop.Test.Other"), {"color": "yellow"})
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Other", "color"), "yellow")
# add properties with complex types
self.dbus_mock.AddProperty("org.freedesktop.Test.Main", "intarray", dbus.Array([1, 2]))
self.dbus_mock.AddProperty("org.freedesktop.Test.Main", "vardict", dbus.Dictionary({"a": 1}))
self.dbus_mock.AddProperty("org.freedesktop.Test.Main", "struct", dbus.Struct((1, "a")))
changes = [
{
"version": 5,
"connected": False,
},
{
"intarray": [1, 3],
},
{
"vardict": {"b": "2"},
},
{
"struct": (2, "b"),
},
{
"intarray": [3, 7],
"vardict": {"d": dbus.Array([42, 1])},
"struct": (0, "test"),
},
]
changed_props = []
ml = GLib.MainLoop()
def catch(*args, **kwargs):
if kwargs["interface"] != "org.freedesktop.DBus.Properties":
return
self.assertEqual(kwargs["interface"], "org.freedesktop.DBus.Properties")
self.assertEqual(kwargs["member"], "PropertiesChanged")
[iface, changed, _invalidated] = args
self.assertEqual(iface, "org.freedesktop.Test.Main")
changed_props.append(changed)
if len(changed_props) == len(changes):
ml.quit()
match = self.dbus_con.add_signal_receiver(
catch, interface_keyword="interface", path_keyword="path", member_keyword="member"
)
# change property using mock helper
for change in changes:
self.dbus_mock.UpdateProperties("org.freedesktop.Test.Main", change)
self.assertTrue(change.items() <= self.dbus_props.GetAll("org.freedesktop.Test.Main").items())
GLib.timeout_add(3000, ml.quit)
ml.run()
match.remove()
for i, change in enumerate(changes):
self.assertEqual(changed_props[i], change)
# test adding properties with the array type
self.dbus_mock.AddProperty("org.freedesktop.Test.Main", "array", dbus.Array(["first"], signature="s"))
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Main", "array"), ["first"])
# test updating properties with the array type
self.dbus_mock.UpdateProperties(
"org.freedesktop.Test.Main", {"array": dbus.Array(["second", "third"], signature="s")}
)
self.assertEqual(self.dbus_props.Get("org.freedesktop.Test.Main", "array"), ["second", "third"])
def test_introspection_methods(self):
"""dynamically added methods appear in introspection"""
dbus_introspect = dbus.Interface(self.obj_test, dbus.INTROSPECTABLE_IFACE)
xml_empty = dbus_introspect.Introspect()
self.assertIn('<interface name="org.freedesktop.DBus.Mock">', xml_empty)
self.assertIn('<method name="AddMethod">', xml_empty)
self.dbus_mock.AddMethod("", "Do", "saiv", "i", "ret = 42")
xml_method = dbus_introspect.Introspect()
self.assertNotEqual(xml_empty, xml_method)
self.assertIn('<interface name="org.freedesktop.Test.Main">', xml_method)
# various Python versions use different name vs. type ordering
expected1 = """<method name="Do">
<arg direction="in" name="arg1" type="s" />
<arg direction="in" name="arg2" type="ai" />
<arg direction="in" name="arg3" type="v" />
<arg direction="out" type="i" />
</method>"""
expected2 = """<method name="Do">
<arg direction="in" type="s" name="arg1" />
<arg direction="in" type="ai" name="arg2" />
<arg direction="in" type="v" name="arg3" />
<arg direction="out" type="i" />
</method>"""
self.assertTrue(expected1 in xml_method or expected2 in xml_method, xml_method)
# properties in introspection are not supported by dbus-python right now
def test_introspection_properties(self):
"""dynamically added properties appear in introspection"""
self.dbus_mock.AddProperty("", "Color", "yellow")
self.dbus_mock.AddProperty("org.freedesktop.Test.Sub", "Count", 5)
xml = self.obj_test.Introspect()
self.assertIn('<interface name="org.freedesktop.Test.Main">', xml)
self.assertIn('<interface name="org.freedesktop.Test.Sub">', xml)
# various Python versions use different attribute ordering
self.assertTrue(
'<property access="readwrite" name="Color" type="s" />' in xml
or '<property name="Color" type="s" access="readwrite" />' in xml,
xml,
)
self.assertTrue(
'<property access="readwrite" name="Count" type="i" />' in xml
or '<property name="Count" type="i" access="readwrite" />' in xml,
xml,
)
def test_objects_map(self):
"""access global objects map"""
self.dbus_mock.AddMethod("", "EnumObjs", "", "ao", "ret = objects.keys()")
self.assertEqual(self.dbus_test.EnumObjs(), ["/"])
self.dbus_mock.AddObject("/obj1", "org.freedesktop.Test.Sub", {}, [])
self.assertEqual(set(self.dbus_test.EnumObjs()), {"/", "/obj1"})
def test_signals(self):
"""emitting signals"""
self.dbus_mock.AddObject("/obj1", "org.freedesktop.Test.Sub", {}, [])
def do_emit():
self.dbus_mock.EmitSignal("", "SigNoArgs", "", [])
self.dbus_mock.EmitSignal("org.freedesktop.Test.Sub", "SigTwoArgs", "su", ["hello", 42])
self.dbus_mock.EmitSignal(
"org.freedesktop.Test.Sub",
"SigTypeTest",
"iuvao",
[-42, 42, dbus.String("hello", variant_level=1), ["/a", "/b"]],
)
self.dbus_mock.EmitSignalDetailed(
"", "SigDetailed", "su", ["details", 123], {"destination": self.dbus_con.get_unique_name()}
)
self.dbus_mock.EmitSignalDetailed("", "SigDetailedWithPath", "su", ["details", 456], {"path": "/obj1"})
caught = []
ml = GLib.MainLoop()
def catch(*args, **kwargs):
if kwargs["interface"].startswith("org.freedesktop.Test"):
caught.append((args, kwargs))
if len(caught) == 5:
# we caught everything there is to catch, don't wait for the
# timeout
ml.quit()
self.dbus_con.add_signal_receiver(
catch, interface_keyword="interface", path_keyword="path", member_keyword="member"
)
GLib.timeout_add(200, do_emit)
# ensure that the loop quits even when we catch fewer than 2 signals
GLib.timeout_add(3000, ml.quit)
ml.run()
# check SigNoArgs
self.assertEqual(caught[0][0], ())
self.assertEqual(caught[0][1]["member"], "SigNoArgs")
self.assertEqual(caught[0][1]["path"], "/")
self.assertEqual(caught[0][1]["interface"], "org.freedesktop.Test.Main")
# check SigTwoArgs
self.assertEqual(caught[1][0], ("hello", 42))
self.assertEqual(caught[1][1]["member"], "SigTwoArgs")
self.assertEqual(caught[1][1]["path"], "/")
self.assertEqual(caught[1][1]["interface"], "org.freedesktop.Test.Sub")
# check data types in SigTypeTest
self.assertEqual(caught[2][1]["member"], "SigTypeTest")
self.assertEqual(caught[2][1]["path"], "/")
args = caught[2][0]
self.assertEqual(args[0], -42)
self.assertEqual(type(args[0]), dbus.Int32)
self.assertEqual(args[0].variant_level, 0)
self.assertEqual(args[1], 42)
self.assertEqual(type(args[1]), dbus.UInt32)
self.assertEqual(args[1].variant_level, 0)
self.assertEqual(args[2], "hello")
self.assertEqual(type(args[2]), dbus.String)
self.assertEqual(args[2].variant_level, 1)
self.assertEqual(args[3], ["/a", "/b"])
self.assertEqual(type(args[3]), dbus.Array)
self.assertEqual(args[3].variant_level, 0)
self.assertEqual(type(args[3][0]), dbus.ObjectPath)
self.assertEqual(args[3][0].variant_level, 0)
# check SigDetailed
self.assertEqual(caught[3][0], ("details", 123))
self.assertEqual(caught[3][1]["member"], "SigDetailed")
self.assertEqual(caught[3][1]["path"], "/")
self.assertEqual(caught[3][1]["interface"], "org.freedesktop.Test.Main")
self.assertEqual(caught[4][0], ("details", 456))
self.assertEqual(caught[4][1]["member"], "SigDetailedWithPath")
self.assertEqual(caught[4][1]["path"], "/obj1")
self.assertEqual(caught[4][1]["interface"], "org.freedesktop.Test.Main")
# check correct logging
log = Path(self.mock_log.name).read_text("UTF-8")
self.assertRegex(log, "[0-9.]+ emit / org.freedesktop.Test.Main.SigNoArgs\n")
self.assertRegex(log, '[0-9.]+ emit / org.freedesktop.Test.Sub.SigTwoArgs "hello" 42\n')
self.assertRegex(log, "[0-9.]+ emit / org.freedesktop.Test.Sub.SigTypeTest -42 42")
self.assertRegex(log, r'[0-9.]+ emit / org.freedesktop.Test.Sub.SigTypeTest -42 42 "hello" \["/a", "/b"\]\n')
self.assertRegex(log, '[0-9.]+ emit / org.freedesktop.Test.Main.SigDetailed "details" 123\n')
self.assertRegex(log, '[0-9.]+ emit /obj1 org.freedesktop.Test.Main.SigDetailedWithPath "details" 456\n')
def test_signals_type_mismatch(self):
"""emitting signals with wrong arguments"""
def check(signature, args, err):
try:
self.dbus_mock.EmitSignal("", "s", signature, args)
self.fail(f'EmitSignal did not raise an error for signature "{signature}" and arguments {args}')
except dbus.exceptions.DBusException as e:
self.assertEqual(e.get_dbus_name(), "org.freedesktop.DBus.Error.InvalidArgs")
self.assertIn(err, str(e))
# not enough arguments
check("i", [], "More items found")
check("is", [1], "More items found")
# too many arguments
check("", [1], "Fewer items found")
check("i", [1, "hello"], "Fewer items found")
# type mismatch
check("u", [-1], "convert negative value to unsigned")
check("i", ["hello"], "dbus.String")
check("i", ["hello"], "integer")
check("s", [1], "Expected a string")
def test_dbus_get_log(self):
"""query call logs over D-Bus"""
self.assertEqual(self.dbus_mock.ClearCalls(), None)
self.assertEqual(self.dbus_mock.GetCalls(), dbus.Array([]))
self.dbus_mock.AddMethod("", "Do", "", "", "")
self.assertEqual(self.dbus_test.Do(), None)
mock_log = self.dbus_mock.GetCalls()
self.assertEqual(len(mock_log), 1)
self.assertGreater(mock_log[0][0], 10000) # timestamp
self.assertEqual(mock_log[0][1], "Do")
self.assertEqual(mock_log[0][2], [])
self.assertEqual(self.dbus_mock.ClearCalls(), None)
self.assertEqual(self.dbus_mock.GetCalls(), dbus.Array([]))
self.dbus_mock.AddMethod("", "Wop", "s", "s", 'ret="hello"')
self.assertEqual(self.dbus_test.Wop("foo"), "hello")
self.assertEqual(self.dbus_test.Wop("bar"), "hello")
mock_log = self.dbus_mock.GetCalls()
self.assertEqual(len(mock_log), 2)
self.assertGreater(mock_log[0][0], 10000) # timestamp
self.assertEqual(mock_log[0][1], "Wop")
self.assertEqual(mock_log[0][2], ["foo"])
self.assertEqual(mock_log[1][1], "Wop")
self.assertEqual(mock_log[1][2], ["bar"])
self.assertEqual(self.dbus_mock.ClearCalls(), None)
self.assertEqual(self.dbus_mock.GetCalls(), dbus.Array([]))
def test_dbus_get_method_calls(self):
"""query method call logs over D-Bus"""
self.dbus_mock.AddMethod("", "Do", "", "", "")
self.assertEqual(self.dbus_test.Do(), None)
self.assertEqual(self.dbus_test.Do(), None)
self.dbus_mock.AddMethod("", "Wop", "s", "s", 'ret="hello"')
self.assertEqual(self.dbus_test.Wop("foo"), "hello")
self.assertEqual(self.dbus_test.Wop("bar"), "hello")
mock_calls = self.dbus_mock.GetMethodCalls("Do")
self.assertEqual(len(mock_calls), 2)
self.assertEqual(mock_calls[0][1], [])
self.assertEqual(mock_calls[1][1], [])
mock_calls = self.dbus_mock.GetMethodCalls("Wop")
self.assertEqual(len(mock_calls), 2)
self.assertGreater(mock_calls[0][0], 10000) # timestamp
self.assertEqual(mock_calls[0][1], ["foo"])
self.assertGreater(mock_calls[1][0], 10000) # timestamp
self.assertEqual(mock_calls[1][1], ["bar"])
def test_dbus_method_called(self):
"""subscribe to MethodCalled signal"""
loop = GLib.MainLoop()
caught_signals = []
def method_called(method, args, **_):
caught_signals.append((method, args))
loop.quit()
self.dbus_mock.AddMethod("", "Do", "s", "", "")
self.dbus_mock.connect_to_signal("MethodCalled", method_called)
self.assertEqual(self.dbus_test.Do("foo"), None)
GLib.timeout_add(5000, loop.quit)
loop.run()
self.assertEqual(len(caught_signals), 1)
method, args = caught_signals[0]
self.assertEqual(method, "Do")
self.assertEqual(len(args), 1)
self.assertEqual(args[0], "foo")
def test_reset(self):
"""resetting to pristine state"""
self.dbus_mock.AddMethod("", "Do", "", "", "")
self.dbus_mock.AddProperty("", "propone", True)
self.dbus_mock.AddProperty("org.Test.Other", "proptwo", 1)
self.dbus_mock.AddObject("/obj1", "", {}, [])
self.dbus_mock.Reset()
# resets properties and keeps the initial object
self.assertEqual(self.dbus_props.GetAll(""), {})
# resets methods
self.assertRaises(dbus.exceptions.DBusException, self.dbus_test.Do)
# resets other objects
obj1 = self.dbus_con.get_object("org.freedesktop.Test", "/obj1")
self.assertRaises(dbus.exceptions.DBusException, obj1.GetAll, "")
def test_version(self):
self.assertGreater(dbusmock.__version__, "0.28.0")
class TestTemplates(dbusmock.DBusTestCase):
"""Test template API"""
@classmethod
def setUpClass(cls):
cls.start_session_bus()
cls.start_system_bus()
def test_local(self):
"""Load a local template *.py file"""
with tempfile.NamedTemporaryFile(prefix="answer_", suffix=".py") as my_template:
my_template.write(
b"""import dbus
BUS_NAME = 'universe.Ultimate'
MAIN_OBJ = '/'
MAIN_IFACE = 'universe.Ultimate'
SYSTEM_BUS = False
def load(mock, parameters):
mock.AddMethods(MAIN_IFACE, [('Answer', 's', 'i', 'ret = 42')])
"""
)
my_template.flush()
(p_mock, dbus_ultimate) = self.spawn_server_template(my_template.name, stdout=subprocess.PIPE)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
# ensure that we don't use/write any .pyc files, they are dangerous
# in a world-writable directory like /tmp
self.assertFalse(Path(my_template.name + "c").exists())
self.assertFalse(Path(importlib.util.cache_from_source(my_template.name)).exists())
loop = GLib.MainLoop()
caught_signals = []
def method_called(method, args, **_):
caught_signals.append((method, args))
loop.quit()
dbus_mock = dbus.Interface(dbus_ultimate, dbusmock.MOCK_IFACE)
dbus_mock.connect_to_signal("MethodCalled", method_called)
self.assertEqual(dbus_ultimate.Answer("foo"), 42)
self.assertEqual(dbus_ultimate.Answer("bar"), 42)
# should appear in introspection
xml = dbus_ultimate.Introspect()
self.assertIn('<interface name="universe.Ultimate">', xml)
self.assertIn('<method name="Answer">', xml)
# should not have ObjectManager API by default
self.assertRaises(dbus.exceptions.DBusException, dbus_ultimate.GetManagedObjects)
# Call should have been registered
mock_calls = dbus_mock.GetMethodCalls("Answer")
self.assertEqual(len(mock_calls), 2)
self.assertEqual(mock_calls[0][1], ["foo"])
self.assertEqual(mock_calls[1][1], ["bar"])
# Check signals
GLib.timeout_add(5000, loop.quit)
loop.run()
# only one signal because we call loop.quit() in the handler
self.assertEqual(len(caught_signals), 1)
method, args = caught_signals[0]
self.assertEqual(method, "Answer")
self.assertEqual(len(args), 1)
self.assertEqual(args[0], "foo")
def test_xdg_data_dir(self):
"""Load a template from XDG_DATA_DIRS"""
with tempfile.TemporaryDirectory(prefix="xdg-test") as xdg_data_dir:
os.environ["XDG_DATA_DIRS"] = "/non/existing:" + xdg_data_dir
template_dir = Path(xdg_data_dir) / "python-dbusmock" / "templates"
template_dir.mkdir(parents=True)
(template_dir / "answer.py").write_text(
"""
BUS_NAME = 'universe.Ultimate'
MAIN_OBJ = '/'
MAIN_IFACE = 'universe.Ultimate'
SYSTEM_BUS = False
def load(mock, parameters):
mock.AddMethods(MAIN_IFACE, [('Answer', 's', 'i', 'ret = 42')])
"""
)
(p_mock, dbus_ultimate) = self.spawn_server_template("answer", stdout=subprocess.PIPE)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
xml = dbus_ultimate.Introspect()
self.assertIn('<interface name="universe.Ultimate">', xml)
self.assertIn('<method name="Answer">', xml)
def test_static_method(self):
"""Static method in a template"""
with tempfile.NamedTemporaryFile(prefix="answer_", suffix=".py") as my_template:
my_template.write(
b"""import dbus
BUS_NAME = 'universe.Ultimate'
MAIN_OBJ = '/'
MAIN_IFACE = 'universe.Ultimate'
SYSTEM_BUS = False
def load(mock, parameters):
pass
@dbus.service.method(MAIN_IFACE,
in_signature='s',
out_signature='i')
def Answer(self, string):
return 42
"""
)
my_template.flush()
(p_mock, dbus_ultimate) = self.spawn_server_template(my_template.name, stdout=subprocess.PIPE)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
loop = GLib.MainLoop()
caught_signals = []
def method_called(method, args, **_):
caught_signals.append((method, args))
loop.quit()
dbus_mock = dbus.Interface(dbus_ultimate, dbusmock.MOCK_IFACE)
dbus_mock.connect_to_signal("MethodCalled", method_called)
self.assertEqual(dbus_ultimate.Answer("foo"), 42)
self.assertEqual(dbus_ultimate.Answer("bar"), 42)
# should appear in introspection
xml = dbus_ultimate.Introspect()
self.assertIn('<interface name="universe.Ultimate">', xml)
self.assertIn('<method name="Answer">', xml)
# Call should have been registered
mock_calls = dbus_mock.GetMethodCalls("Answer")
self.assertEqual(len(mock_calls), 2)
self.assertEqual(mock_calls[0][1], ["foo"])
self.assertEqual(mock_calls[1][1], ["bar"])
# Check signals
GLib.timeout_add(5000, loop.quit)
loop.run()
# only one signal because we call loop.quit() in the handler
self.assertEqual(len(caught_signals), 1)
method, args = caught_signals[0]
self.assertEqual(method, "Answer")
self.assertEqual(len(args), 1)
self.assertEqual(args[0], "foo")
def test_local_nonexisting(self):
self.assertRaises(ImportError, self.spawn_server_template, "/non/existing.py")
def test_explicit_bus_(self):
"""Explicitly set the bus for a template that does not specify SYSTEM_BUS"""
with tempfile.NamedTemporaryFile(prefix="answer_", suffix=".py") as my_template:
my_template.write(
b"""import dbus
BUS_NAME = 'universe.Ultimate'
MAIN_OBJ = '/'
MAIN_IFACE = 'universe.Ultimate'
def load(mock, parameters):
mock.AddMethods(MAIN_IFACE, [('Answer', '', 'i', 'ret = 42')])
"""
)
my_template.flush()
(p_mock, dbus_ultimate) = self.spawn_server_template(
my_template.name, stdout=subprocess.PIPE, system_bus=False
)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
self.wait_for_bus_object("universe.Ultimate", "/")
self.assertEqual(dbus_ultimate.Answer(), 42)
def test_override_bus_(self):
"""Override the bus for a template"""
with tempfile.NamedTemporaryFile(prefix="answer_", suffix=".py") as my_template:
my_template.write(
b"""import dbus
BUS_NAME = 'universe.Ultimate'
MAIN_OBJ = '/'
MAIN_IFACE = 'universe.Ultimate'
SYSTEM_BUS = True
def load(mock, parameters):
mock.AddMethods(MAIN_IFACE, [('Answer', '', 'i', 'ret = 42')])
"""
)
my_template.flush()
(p_mock, dbus_ultimate) = self.spawn_server_template(
my_template.name, stdout=subprocess.PIPE, system_bus=False
)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
self.wait_for_bus_object("universe.Ultimate", "/")
self.assertEqual(dbus_ultimate.Answer(), 42)
def test_object_manager(self):
"""Template with ObjectManager API"""
with tempfile.NamedTemporaryFile(prefix="objmgr_", suffix=".py") as my_template:
my_template.write(
b"""import dbus
BUS_NAME = 'org.test.Things'
MAIN_OBJ = '/org/test/Things'
IS_OBJECT_MANAGER = True
SYSTEM_BUS = False
def load(mock, parameters):
mock.AddObject('/org/test/Things/Thing1', 'org.test.Do', {'name': 'one'}, [])
mock.AddObject('/org/test/Things/Thing2', 'org.test.Do', {'name': 'two'}, [])
mock.AddObject('/org/test/Peer', 'org.test.Do', {'name': 'peer'}, [])
"""
)
my_template.flush()
(p_mock, dbus_objmgr) = self.spawn_server_template(my_template.name, stdout=subprocess.PIPE)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
# should have the two Things, but not the Peer
self.assertEqual(
dbus_objmgr.GetManagedObjects(),
{
"/org/test/Things/Thing1": {"org.test.Do": {"name": "one"}},
"/org/test/Things/Thing2": {"org.test.Do": {"name": "two"}},
},
)
# should appear in introspection
xml = dbus_objmgr.Introspect()
self.assertIn('<interface name="org.freedesktop.DBus.ObjectManager">', xml)
self.assertIn('<method name="GetManagedObjects">', xml)
self.assertIn('<node name="Thing1" />', xml)
self.assertIn('<node name="Thing2" />', xml)
def test_add_object_with_subclass(self):
"""Template with DBusMockObject subclass"""
with tempfile.NamedTemporaryFile(prefix="objmgr_", suffix=".py") as my_template:
my_template.write(
b"""
import dbus
import dbusmock
BUS_NAME = 'org.test.Things'
MAIN_OBJ = '/org/test/Things'
MAIN_IFACE = 'org.test.Do'
SYSTEM_BUS = False
class Thing1(dbusmock.mockobject.DBusMockObject):
def __init__(self, *args, **kwargs):
super(Thing1, self).__init__(*args, **kwargs)
self.magic = kwargs.get('mock_data')
@dbus.service.method(MAIN_IFACE, in_signature='i', out_signature='i')
def Do0(self, input):
return self.magic + input
def load(mock, parameters):
mock.AddObject('/org/test/Things/Thing1', MAIN_IFACE, {}, [],
mock_class=Thing1,
mock_data=42)
"""
)
my_template.flush()
(p_mock, _) = self.spawn_server_template(my_template.name, stdout=subprocess.PIPE, system_bus=False)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
dbus_con = self.get_dbus(system_bus=False)
thing1 = dbus_con.get_object("org.test.Things", "/org/test/Things/Thing1")
self.assertEqual(thing1.Do0(0), 42)
self.assertEqual(thing1.Do0(1), 43)
def test_reset(self):
"""Reset() puts the template back to pristine state"""
(p_mock, obj_logind) = self.spawn_server_template("logind", stdout=subprocess.PIPE)
self.addCleanup(p_mock.wait)
self.addCleanup(p_mock.terminate)
self.addCleanup(p_mock.stdout.close)
# do some property, method, and object changes
obj_logind.Set("org.freedesktop.login1.Manager", "IdleAction", "frob")
mock_logind = dbus.Interface(obj_logind, dbusmock.MOCK_IFACE)
mock_logind.AddProperty("org.Test.Other", "walk", "silly")
mock_logind.AddMethod("", "DoWalk", "", "", "")
mock_logind.AddObject("/obj1", "", {}, [])
mock_logind.Reset()
# keeps the objects from the template
dbus_con = self.get_dbus(system_bus=True)
obj_logind = dbus_con.get_object("org.freedesktop.login1", "/org/freedesktop/login1")
self.assertEqual(obj_logind.CanSuspend(), "yes")
# resets properties
self.assertRaises(dbus.exceptions.DBusException, obj_logind.GetAll, "org.Test.Other")
self.assertEqual(obj_logind.Get("org.freedesktop.login1.Manager", "IdleAction"), "ignore")
# resets methods
self.assertRaises(dbus.exceptions.DBusException, obj_logind.DoWalk)
# resets other objects
obj1 = dbus_con.get_object("org.freedesktop.login1", "/obj1")
self.assertRaises(dbus.exceptions.DBusException, obj1.GetAll, "")
class TestCleanup(dbusmock.DBusTestCase):
"""Test cleanup of resources"""
def test_mock_terminates_with_bus(self):
"""Spawned mock processes exit when bus goes down"""
self.start_session_bus()
p_mock = self.spawn_server("org.freedesktop.Test", "/", "org.freedesktop.Test.Main")
self.stop_dbus(self.session_bus_pid)
# give the mock 2 seconds to terminate
timeout = 20
while timeout > 0:
if p_mock.poll() is not None:
break
timeout -= 1
time.sleep(0.1)
if p_mock.poll() is None:
# clean up manually
p_mock.terminate()
p_mock.wait()
self.fail("mock process did not terminate after 2 seconds")
self.assertEqual(p_mock.wait(), 0)
class TestSubclass(dbusmock.DBusTestCase):
"""Test subclassing DBusMockObject"""
@classmethod
def setUpClass(cls):
cls.start_session_bus()
def test_ctor(self):
"""Override DBusMockObject constructor"""
class MyMock(dbusmock.mockobject.DBusMockObject):
def __init__(self):
bus_name = dbus.service.BusName("org.test.MyMock", dbusmock.testcase.DBusTestCase.get_dbus())
dbusmock.mockobject.DBusMockObject.__init__(self, bus_name, "/", "org.test.A", {}, os.devnull)
self.AddMethod("", "Ping", "", "i", "ret = 42")
m = MyMock()
self.assertEqual(m.Ping(), 42) # pylint: disable=no-member
def test_none_props(self):
"""object with None properties argument"""
class MyMock(dbusmock.mockobject.DBusMockObject):
def __init__(self):
bus_name = dbus.service.BusName("org.test.MyMock", dbusmock.testcase.DBusTestCase.get_dbus())
dbusmock.mockobject.DBusMockObject.__init__(
self, bus_name, "/mymock", "org.test.MyMockI", None, os.devnull
)
self.AddMethod("", "Ping", "", "i", "ret = 42")
m = MyMock()
self.assertEqual(m.Ping(), 42) # pylint: disable=no-member
self.assertEqual(m.GetAll("org.test.MyMockI"), {})
m.AddProperty("org.test.MyMockI", "blurb", 5)
self.assertEqual(m.GetAll("org.test.MyMockI"), {"blurb": 5})
class TestServiceAutostart(dbusmock.DBusTestCase):
"""Test service starting DBusMockObject"""
@classmethod
def setUpClass(cls):
cls.xdg_data_dir = tempfile.mkdtemp(prefix="dbusmock_xdg_")
os.environ["XDG_DATA_DIRS"] = cls.xdg_data_dir
dbus_dir = Path(cls.xdg_data_dir, "dbus-1")
system_dir = dbus_dir / "system-services"
session_dir = dbus_dir / "services"
system_dir.mkdir(parents=True)
session_dir.mkdir()
(system_dir / "org.TestSystem.service").write_text(
"[D-BUS Service]\n"
"Name=org.TestSystem\n"
'Exec=/usr/bin/python3 -c "import sys; from gi.repository import GLib, Gio; '
" Gio.bus_own_name(Gio.BusType.SYSTEM, 'org.TestSystem', 0, None, None, lambda *args: sys.exit(0)); "
' GLib.MainLoop().run()"\n'
"User=root"
)
(session_dir / "org.TestSession.service").write_text(
"[D-BUS Service]\n"
"Name=org.TestSession\n"
'Exec=/usr/bin/python3 -c "import sys; from gi.repository import GLib, Gio; '
" Gio.bus_own_name(Gio.BusType.SESSION, 'org.TestSession', 0, None, None, lambda *args: sys.exit(0)); "
' GLib.MainLoop().run()"\n'
"User=root"
)
cls.start_system_bus()
cls.start_session_bus()
@classmethod
def tearDownClass(cls):
shutil.rmtree(cls.xdg_data_dir)
dbusmock.DBusTestCase.tearDownClass()
def test_session_service_function_raise(self):
with self.assertRaises(AssertionError):
self.enable_service("does-not-exist")
with self.assertRaises(AssertionError):
self.disable_service("does-not-exist")
def test_session_service_isolation(self):
dbus_con = self.get_dbus(system_bus=False)
dbus_obj = dbus_con.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")
dbus_if = dbus.Interface(dbus_obj, "org.freedesktop.DBus")
self.assertEqual(dbus_if.ListActivatableNames(), ["org.freedesktop.DBus"])
self.enable_service("org.TestSession")
self.addCleanup(self.disable_service, "org.TestSession")
self.assertEqual(dbus_if.ListActivatableNames(), ["org.freedesktop.DBus", "org.TestSession"])
def test_system_service_isolation(self):
dbus_con = self.get_dbus(system_bus=True)
dbus_obj = dbus_con.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")
dbus_if = dbus.Interface(dbus_obj, "org.freedesktop.DBus")
self.assertEqual(dbus_if.ListActivatableNames(), ["org.freedesktop.DBus"])
self.enable_service("org.TestSystem", system_bus=True)
self.addCleanup(self.disable_service, "org.TestSystem", system_bus=True)
self.assertEqual(dbus_if.ListActivatableNames(), ["org.freedesktop.DBus", "org.TestSystem"])
def test_session_service_activation(self):
dbus_con = self.get_dbus(system_bus=False)
dbus_obj = dbus_con.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")
dbus_if = dbus.Interface(dbus_obj, "org.freedesktop.DBus")
self.enable_service("org.TestSession")
self.addCleanup(self.disable_service, "org.TestSession")
dbus_if.StartServiceByName("org.TestSession", 0)
def test_system_service_activation(self):
dbus_con = self.get_dbus(system_bus=True)
dbus_obj = dbus_con.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")
dbus_if = dbus.Interface(dbus_obj, "org.freedesktop.DBus")
self.enable_service("org.TestSystem", system_bus=True)
self.addCleanup(self.disable_service, "org.TestSystem", system_bus=True)
dbus_if.StartServiceByName("org.TestSystem", 0)
if __name__ == "__main__":
# avoid writing to stderr
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout))
|