summaryrefslogtreecommitdiff
path: root/test/test-client.py
blob: dc2be4ebf010b56bfef7023502183c1b72ab8fdc (plain)
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
#!/usr/bin/env python

# Copyright (C) 2004 Red Hat Inc. <http://www.redhat.com/>
# Copyright (C) 2005-2007 Collabora Ltd. <http://www.collabora.co.uk/>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use, copy,
# modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

from __future__ import print_function
import os
import unittest
import time
import logging
import weakref

builddir = os.path.normpath(os.environ["DBUS_TOP_BUILDDIR"])
pydir = os.path.normpath(os.environ["DBUS_TOP_SRCDIR"])

import dbus
import _dbus_bindings
import dbus.glib
import dbus.service

from dbus._compat import is_py2, is_py3
from gi.repository import GObject as gobject


logging.basicConfig()


pkg = dbus.__file__
if not pkg.startswith(pydir):
    raise Exception("DBus modules (%s) are not being picked up from the package"%pkg)

if not _dbus_bindings.__file__.startswith(builddir):
    raise Exception("DBus modules (%s) are not being picked up from the package"%_dbus_bindings.__file__)

test_types_vals = [1, 12323231, 3.14159265, 99999999.99,
                 "dude", "123", "What is all the fuss about?", "gob@gob.com",
                 '\\u310c\\u310e\\u3114', '\\u0413\\u0414\\u0415',
                 '\\u2200software \\u2203crack', '\\xf4\\xe5\\xe8',
                 [1,2,3], ["how", "are", "you"], [1.23,2.3], [1], ["Hello"],
                 (1,2,3), (1,), (1,"2",3), ("2", "what"), ("you", 1.2),
                 {1:"a", 2:"b"}, {"a":1, "b":2}, #{"a":(1,"B")},
                 {1:1.1, 2:2.2}, [[1,2,3],[2,3,4]], [["a","b"],["c","d"]],
                 True, False,
                 dbus.Int16(-10), dbus.UInt16(10), 'SENTINEL',
                 #([1,2,3],"c", 1.2, ["a","b","c"], {"a": (1,"v"), "b": (2,"d")})
                 ]

NAME = "org.freedesktop.DBus.TestSuitePythonService"
IFACE = "org.freedesktop.DBus.TestSuiteInterface"
OBJECT = "/org/freedesktop/DBus/TestSuitePythonObject"

class TestDBusBindings(unittest.TestCase):
    def setUp(self):
        self.bus = dbus.SessionBus()
        self.remote_object = self.bus.get_object(NAME, OBJECT)
        self.remote_object_follow = self.bus.get_object(NAME, OBJECT,
                follow_name_owner_changes=True)
        self.iface = dbus.Interface(self.remote_object, IFACE)

    def testGObject(self):
        print("Testing ExportedGObject... ", end='')
        remote_gobject = self.bus.get_object(NAME, OBJECT + '/GObject')
        iface = dbus.Interface(remote_gobject, IFACE)
        print("introspection, ", end='')
        remote_gobject.Introspect(dbus_interface=dbus.INTROSPECTABLE_IFACE)
        print("method call, ", end='')
        self.assertEqual(iface.Echo('123'), '123')
        print("... OK")

    def testWeakRefs(self):
        # regression test for Sugar crash caused by smcv getting weak refs
        # wrong - pre-bugfix, this would segfault
        bus = dbus.SessionBus(private=True)
        ref = weakref.ref(bus)
        self.assertTrue(ref() is bus)
        del bus
        self.assertTrue(ref() is None)

    def testInterfaceKeyword(self):
        #test dbus_interface parameter
        print(self.remote_object.Echo("dbus_interface on Proxy test Passed", 
                                      dbus_interface = IFACE))
        print(self.iface.Echo("dbus_interface on Interface test Passed", 
                              dbus_interface = IFACE))
        self.assertTrue(True)

    def testGetDBusMethod(self):
        self.assertEqual(self.iface.get_dbus_method('AcceptListOfByte')(b'\1\2\3'), [1,2,3])
        self.assertEqual(self.remote_object.get_dbus_method('AcceptListOfByte', dbus_interface=IFACE)(b'\1\2\3'), [1,2,3])

    def testCallingConventionOptions(self):
        self.assertEqual(self.iface.AcceptListOfByte(b'\1\2\3'), [1,2,3])
        self.assertEqual(self.iface.AcceptListOfByte(b'\1\2\3', byte_arrays=True), b'\1\2\3')
        self.assertEqual(self.iface.AcceptByteArray(b'\1\2\3'), [1,2,3])
        self.assertEqual(self.iface.AcceptByteArray(b'\1\2\3', byte_arrays=True), b'\1\2\3')
        if is_py2:
            self.assertTrue(isinstance(self.iface.AcceptUTF8String('abc'), unicode))
            self.assertTrue(isinstance(self.iface.AcceptUTF8String('abc', utf8_strings=True), str))
        unicode_type = (str if is_py3 else unicode)
        self.assertTrue(isinstance(self.iface.AcceptUnicodeString('abc'), 
                                   unicode_type))
        kwargs = {}
        if is_py2:
            kwargs['utf8_strings'] = True
        self.assertTrue(isinstance(self.iface.AcceptUnicodeString('abc', **kwargs), str))

    def testIntrospection(self):
        #test introspection
        print("\n********* Introspection Test ************")
        print(self.remote_object.Introspect(
            dbus_interface="org.freedesktop.DBus.Introspectable"))
        print("Introspection test passed")
        self.assertTrue(True)

    def testMultiPathIntrospection(self):
        # test introspection on an object exported in multiple places
        # https://bugs.freedesktop.org/show_bug.cgi?id=11794
        remote_object = self.bus.get_object(NAME, OBJECT + '/Multi1')
        remote_object.Introspect(dbus_interface="org.freedesktop.DBus.Introspectable")
        remote_object = self.bus.get_object(NAME, OBJECT + '/Multi2')
        remote_object.Introspect(dbus_interface="org.freedesktop.DBus.Introspectable")
        remote_object = self.bus.get_object(NAME, OBJECT + '/Multi2/3')
        remote_object.Introspect(dbus_interface="org.freedesktop.DBus.Introspectable")
        self.assertTrue(True)

    def testPythonTypes(self):
        #test sending python types and getting them back
        print("\n********* Testing Python Types ***********")
                 
        for send_val in test_types_vals:
            print("Testing %s"% str(send_val))
            recv_val = self.iface.Echo(send_val)
            self.assertEqual(send_val, recv_val)
            self.assertEqual(recv_val.variant_level, 1)

    def testMethodExtraInfoKeywords(self):
        print("Testing MethodExtraInfoKeywords...")
        sender, path, destination, message_cls = self.iface.MethodExtraInfoKeywords()
        self.assertTrue(sender.startswith(':'))
        self.assertEqual(path, '/org/freedesktop/DBus/TestSuitePythonObject')
        # we're using the "early binding" form of get_object (without
        # follow_name_owner_changes), so the destination we actually sent it
        # to will be the unique name
        self.assertTrue(destination.startswith(':'))
        self.assertEqual(message_cls, 'dbus.lowlevel.MethodCallMessage')

    def testUtf8StringsSync(self):
        if is_py3:
            return
        send_val = 'foo'
        recv_val = self.iface.Echo(send_val, utf8_strings=True)
        self.assertTrue(isinstance(recv_val, str))
        self.assertTrue(isinstance(recv_val, dbus.UTF8String))
        recv_val = self.iface.Echo(send_val, utf8_strings=False)
        self.assertTrue(isinstance(recv_val, unicode))
        self.assertTrue(isinstance(recv_val, dbus.String))

    def testBenchmarkIntrospect(self):
        print("\n********* Benchmark Introspect ************")
        a = time.time()
        print(a)
        print(self.iface.GetComplexArray())
        b = time.time()
        print(b)
        print("Delta: %f" % (b - a))
        self.assertTrue(True)

    def testAsyncCalls(self):
        #test sending python types and getting them back async
        print("\n********* Testing Async Calls ***********")

        failures = []
        main_loop = gobject.MainLoop()

        class async_check:
            def __init__(self, test_controler, expected_result, do_exit, **kwargs):
                self.expected_result = expected_result
                self.do_exit = do_exit
                self.test_controler = test_controler
                if is_py2:
                    self.utf8 = kwargs['utf8']
                elif 'utf8' in kwargs:
                    raise TypeError("unexpected keyword argument 'utf8'")

            def callback(self, val):
                try:
                    if self.do_exit:
                        main_loop.quit()

                    self.test_controler.assertEqual(val, self.expected_result)
                    self.test_controler.assertEqual(val.variant_level, 1)
                    if is_py2:
                        if self.utf8 and not isinstance(val, dbus.UTF8String):
                            failures.append('%r should have been utf8 but was not' % val)
                            return
                        elif not self.utf8 and isinstance(val, dbus.UTF8String):
                            failures.append('%r should not have been utf8' % val)
                            return
                except Exception as e:
                    failures.append("%s:\n%s" % (e.__class__, e))

            def error_handler(self, error):
                print(error)
                if self.do_exit:
                    main_loop.quit()

                failures.append('%s: %s' % (error.__class__, error))
        
        last_type = test_types_vals[-1]
        for send_val in test_types_vals:
            print("Testing %s" % str(send_val))
            kwargs = {}
            if is_py2:
                utf8 = (send_val == 'gob@gob.com')
                kwargs['utf8'] = utf8
                kwargs['utf8_strings'] = utf8
            check = async_check(self, send_val, last_type == send_val,
                                **kwargs)
            recv_val = self.iface.Echo(send_val,
                                       reply_handler=check.callback,
                                       error_handler=check.error_handler,
                                       **kwargs)
        main_loop.run()
        if failures:
            self.assertTrue(False, failures)

    def testStrictMarshalling(self):
        print("\n********* Testing strict return & signal marshalling ***********")

        # these values are the same as in the server, and the
        # methods should only succeed when they are called with
        # the right value number, because they have out_signature
        # decorations, and return an unmatching type when called
        # with a different number
        values = ["", ("",""), ("","",""), [], {}, ["",""], ["","",""]]
        methods = [
            (self.iface.ReturnOneString, 'SignalOneString', set([0]), set([0])),
            (self.iface.ReturnTwoStrings, 'SignalTwoStrings', set([1, 5]), set([1])),
            (self.iface.ReturnStruct, 'SignalStruct', set([1, 5]), set([1])),
            # all of our test values are sequences so will marshall correctly
            # into an array :P
            (self.iface.ReturnArray, 'SignalArray', set(range(len(values))), set([3, 5, 6])),
            (self.iface.ReturnDict, 'SignalDict', set([0, 3, 4]), set([4]))
            ]

        for (method, signal, success_values, return_values) in methods:
            print("\nTrying correct behaviour of", method._method_name)
            for value in range(len(values)):
                try:
                    ret = method(value)
                except Exception as e:
                    print("%s(%r) raised %s: %s" % 
                          (method._method_name, values[value], e.__class__, e))

                    # should fail if it tried to marshal the wrong type
                    self.assertTrue(value not in success_values, 
                                    "%s should succeed when we ask it to "
                                    "return %r\n%s\n%s" % (
                                        method._method_name, values[value], 
                                        e.__class__, e))
                else:
                    print("%s(%r) returned %r" % (
                        method._method_name, values[value], ret))

                    # should only succeed if it's the right return type
                    self.assertTrue(value in success_values, 
                                    "%s should fail when we ask it to "
                                    "return %r" % (
                                        method._method_name, values[value]))

                    # check the value is right too :D
                    returns = map(lambda n: values[n], return_values)
                    self.assertTrue(ret in returns, 
                                    "%s should return one of %r but it "
                                    "returned %r instead" % (
                                        method._method_name, returns, ret))

            print("\nTrying correct emission of", signal)
            for value in range(len(values)):
                try:
                    self.iface.EmitSignal(signal, value)
                except Exception as e:
                    print("EmitSignal(%s, %r) raised %s" % (signal, values[value], e.__class__))

                    # should fail if it tried to marshal the wrong type
                    self.assertTrue(value not in success_values, "EmitSignal(%s) should succeed when we ask it to return %r\n%s\n%s" % (signal, values[value], e.__class__, e))
                else:
                    print("EmitSignal(%s, %r) appeared to succeed" % (signal, values[value]))

                    # should only succeed if it's the right return type
                    self.assertTrue(value in success_values, "EmitSignal(%s) should fail when we ask it to return %r" % (signal, values[value]))

                    # FIXME: wait for the signal here

        print()

    def testInheritance(self):
        print("\n********* Testing inheritance from dbus.method.Interface ***********")
        ret = self.iface.CheckInheritance()
        print("CheckInheritance returned %s" % ret)
        self.assertTrue(ret, "overriding CheckInheritance from TestInterface failed")

    def testAsyncMethods(self):
        print("\n********* Testing asynchronous method implementation *******")
        for async in (True, False):
            for fail in (True, False):
                try:
                    val = ('a', 1, False, [1,2], {1:2})
                    print("calling AsynchronousMethod with %s %s %s" % (async, fail, val))
                    ret = self.iface.AsynchronousMethod(async, fail, val)
                except Exception as e:
                    self.assertTrue(fail, '%s: %s' % (e.__class__, e))
                    print("Expected failure: %s: %s" % (e.__class__, e))
                else:
                    self.assertTrue(not fail, 'Expected failure but succeeded?!')
                    self.assertEqual(val, ret)
                    self.assertEqual(1, ret.variant_level)

    def testBusInstanceCaching(self):
        print("\n********* Testing dbus.Bus instance sharing *********")

        # unfortunately we can't test the system bus here
        # but the codepaths are the same
        for (cls, type, func) in ((dbus.SessionBus, dbus.Bus.TYPE_SESSION, dbus.Bus.get_session), (dbus.StarterBus, dbus.Bus.TYPE_STARTER, dbus.Bus.get_starter)):
            print("\nTesting %s:" % cls.__name__)

            share_cls = cls()
            share_type = dbus.Bus(bus_type=type)
            share_func = func()

            private_cls = cls(private=True)
            private_type = dbus.Bus(bus_type=type, private=True)
            private_func = func(private=True)

            print(" - checking shared instances are the same...")
            self.assertTrue(share_cls == share_type, '%s should equal %s' % (share_cls, share_type))
            self.assertTrue(share_type == share_func, '%s should equal %s' % (share_type, share_func))

            print(" - checking private instances are distinct from the shared instance...")
            self.assertTrue(share_cls != private_cls, '%s should not equal %s' % (share_cls, private_cls))
            self.assertTrue(share_type != private_type, '%s should not equal %s' % (share_type, private_type))
            self.assertTrue(share_func != private_func, '%s should not equal %s' % (share_func, private_func))

            print(" - checking private instances are distinct from each other...")
            self.assertTrue(private_cls != private_type, '%s should not equal %s' % (private_cls, private_type))
            self.assertTrue(private_type != private_func, '%s should not equal %s' % (private_type, private_func))
            self.assertTrue(private_func != private_cls, '%s should not equal %s' % (private_func, private_cls))

    def testSenderName(self):
        print('\n******** Testing sender name keyword ********')
        myself = self.iface.WhoAmI()
        print("I am", myself)

    def testBusGetNameOwner(self):
        ret = self.bus.get_name_owner(NAME)
        self.assertTrue(ret.startswith(':'), ret)

    def testBusListNames(self):
        ret = self.bus.list_names()
        self.assertTrue(NAME in ret, ret)

    def testBusListActivatableNames(self):
        ret = self.bus.list_activatable_names()
        self.assertTrue(NAME in ret, ret)

    def testBusNameHasOwner(self):
        self.assertTrue(self.bus.name_has_owner(NAME))
        self.assertTrue(not self.bus.name_has_owner('badger.mushroom.snake'))

    def testBusNameCreation(self):
        print('\n******** Testing BusName creation ********')
        test = [('org.freedesktop.DBus.Python.TestName', True),
                ('org.freedesktop.DBus.Python.TestName', True),
                ('org.freedesktop.DBus.Python.InvalidName&^*%$', False)]
        # Do some more intelligent handling/testing of queueing vs success?
        # ('org.freedesktop.DBus.TestSuitePythonService', False)]
        # For some reason this actually succeeds
        # ('org.freedesktop.DBus', False)]

        # make a method call to ensure the test service is active
        self.iface.Echo("foo")

        names = {}
        for (name, succeed) in test:
            try:
                print("requesting %s" % name)
                busname = dbus.service.BusName(name, dbus.SessionBus())
            except Exception as e:
                print("%s:\n%s" % (e.__class__, e))
                self.assertTrue(not succeed, 'did not expect registering bus name %s to fail' % name)
            else:
                print(busname)
                self.assertTrue(succeed, 'expected registering bus name %s to fail'% name)
                if name in names:
                    self.assertTrue(names[name] == busname, 'got a new instance for same name %s' % name)
                    print("instance of %s re-used, good!" % name)
                else:
                    names[name] = busname

                del busname

            print()

        del names

        bus = dbus.Bus()
        ret = bus.name_has_owner('org.freedesktop.DBus.Python.TestName')
        self.assertTrue(not ret, 'deleting reference failed to release BusName org.freedesktop.DBus.Python.TestName')

    def testMultipleReturnWithoutSignature(self):
        # https://bugs.freedesktop.org/show_bug.cgi?id=10174
        ret = self.iface.MultipleReturnWithoutSignature()
        self.assertTrue(not isinstance(ret, dbus.Struct), repr(ret))
        self.assertEqual(ret, ('abc', 123))

    def testListExportedChildObjects(self):
        self.assertTrue(self.iface.TestListExportedChildObjects())

    def testRemoveFromConnection(self):
        # https://bugs.freedesktop.org/show_bug.cgi?id=10457
        self.assertTrue(not self.iface.HasRemovableObject())
        self.assertTrue(self.iface.AddRemovableObject())
        self.assertTrue(self.iface.HasRemovableObject())

        removable = self.bus.get_object(NAME, OBJECT + '/RemovableObject')
        iface = dbus.Interface(removable, IFACE)
        self.assertTrue(iface.IsThere())
        self.assertTrue(iface.RemoveSelf())

        self.assertTrue(not self.iface.HasRemovableObject())

        # and again...
        self.assertTrue(self.iface.AddRemovableObject())
        self.assertTrue(self.iface.HasRemovableObject())
        self.assertTrue(iface.IsThere())
        self.assertTrue(iface.RemoveSelf())
        self.assertTrue(not self.iface.HasRemovableObject())

    def testFallbackObjectTrivial(self):
        obj = self.bus.get_object(NAME, OBJECT + '/Fallback')
        iface = dbus.Interface(obj, IFACE)
        path, rel, unique_name = iface.TestPathAndConnKeywords()
        self.assertEqual(path, OBJECT + '/Fallback')
        self.assertEqual(rel, '/')
        self.assertEqual(unique_name, obj.bus_name)

    def testFallbackObjectNested(self):
        obj = self.bus.get_object(NAME, OBJECT + '/Fallback/Nested')
        iface = dbus.Interface(obj, IFACE)
        path, rel, unique_name = iface.TestPathAndConnKeywords()
        self.assertEqual(path, OBJECT + '/Fallback/Nested')
        self.assertEqual(rel, '/')
        self.assertEqual(unique_name, obj.bus_name)

        obj = self.bus.get_object(NAME, OBJECT + '/Fallback/Nested/Badger/Mushroom')
        iface = dbus.Interface(obj, IFACE)
        path, rel, unique_name = iface.TestPathAndConnKeywords()
        self.assertEqual(path, OBJECT + '/Fallback/Nested/Badger/Mushroom')
        self.assertEqual(rel, '/Badger/Mushroom')
        self.assertEqual(unique_name, obj.bus_name)

    def testFallbackObject(self):
        obj = self.bus.get_object(NAME, OBJECT + '/Fallback/Badger/Mushroom')
        iface = dbus.Interface(obj, IFACE)
        path, rel, unique_name = iface.TestPathAndConnKeywords()
        self.assertEqual(path, OBJECT + '/Fallback/Badger/Mushroom')
        self.assertEqual(rel, '/Badger/Mushroom')
        self.assertEqual(unique_name, obj.bus_name)

    def testTimeoutSync(self):
        self.assertTrue(self.iface.BlockFor500ms(timeout=1.0) is None)
        self.assertRaises(dbus.DBusException,
                          lambda: self.iface.BlockFor500ms(timeout=0.25))

    def testAsyncRaise(self):
        self.assertRaises(dbus.DBusException, self.iface.AsyncRaise)
        try:
            self.iface.AsyncRaise()
        except dbus.DBusException as e:
            self.assertTrue(e.get_dbus_name() ==
                         'org.freedesktop.bugzilla.bug12403',
                         e.get_dbus_name())
        else:
            self.assertTrue(False)

    def testClosePrivateBus(self):
        # fd.o #12096
        dbus.Bus(private=True).close()

    def testTimeoutAsyncClient(self):
        loop = gobject.MainLoop()
        passes = []
        fails = []
        def correctly_returned():
            passes.append('1000')
            if len(passes) + len(fails) >= 2:
                loop.quit()
        def correctly_failed(exc):
            passes.append('250')
            if len(passes) + len(fails) >= 2:
                loop.quit()
        def incorrectly_returned():
            fails.append('250')
            if len(passes) + len(fails) >= 2:
                loop.quit()
        def incorrectly_failed(exc):
            fails.append('1000')
            if len(passes) + len(fails) >= 2:
                loop.quit()
        self.iface.BlockFor500ms(timeout=1.0,
                                 reply_handler=correctly_returned,
                                 error_handler=incorrectly_failed)
        self.iface.BlockFor500ms(timeout=0.25,
                                 reply_handler=incorrectly_returned,
                                 error_handler=correctly_failed)
        loop.run()
        self.assertEqual(passes, ['250', '1000'])
        self.assertEqual(fails, [])

    def testTimeoutAsyncService(self):
        self.assertTrue(self.iface.AsyncWait500ms(timeout=1.0) is None)
        self.assertRaises(dbus.DBusException,
                          lambda: self.iface.AsyncWait500ms(timeout=0.25))

    def testExceptions(self):
        #self.assertRaises(dbus.DBusException,
        #                  lambda: self.iface.RaiseValueError)
        #self.assertRaises(dbus.DBusException,
        #                  lambda: self.iface.RaiseDBusExceptionNoTraceback)
        #self.assertRaises(dbus.DBusException,
        #                  lambda: self.iface.RaiseDBusExceptionWithTraceback)

        try:
            self.iface.RaiseValueError()
        except Exception as e:
            self.assertTrue(isinstance(e, dbus.DBusException), e.__class__)
            self.assertTrue('.ValueError: Traceback ' in str(e),
                         'Wanted a traceback but got:\n"""%s"""' % str(e))
        else:
            raise AssertionError('Wanted an exception')

        try:
            self.iface.RaiseDBusExceptionNoTraceback()
        except Exception as e:
            self.assertTrue(isinstance(e, dbus.DBusException), e.__class__)
            self.assertEqual(str(e),
                              'com.example.Networking.ServerError: '
                              'Server not responding')
        else:
            raise AssertionError('Wanted an exception')

        try:
            self.iface.RaiseDBusExceptionWithTraceback()
        except Exception as e:
            self.assertTrue(isinstance(e, dbus.DBusException), e.__class__)
            self.assertTrue(str(e).startswith('com.example.Misc.RealityFailure: '
                                           'Traceback '),
                         'Wanted a traceback but got:\n%s' % str(e))
        else:
            raise AssertionError('Wanted an exception')

""" Remove this for now
class TestDBusPythonToGLibBindings(unittest.TestCase):
    def setUp(self):
        self.bus = dbus.SessionBus()
        self.remote_object = self.bus.get_object("org.freedesktop.DBus.TestSuiteGLibService", "/org/freedesktop/DBus/Tests/MyTestObject")
        self.iface = dbus.Interface(self.remote_object, "org.freedesktop.DBus.Tests.MyObject")

    def testIntrospection(self):
        #test introspection
        print "\n********* Introspection Test ************"
        print self.remote_object.Introspect(dbus_interface="org.freedesktop.DBus.Introspectable")
        print "Introspection test passed"
        self.assertTrue(True)

    def testCalls(self):
        print "\n********* Call Test ************"
        result =  self.iface.ManyArgs(1000, 'Hello GLib', 2)
        print result
        self.assertTrue(result == [2002.0, 'HELLO GLIB'])

        arg0 = {"Dude": 1, "john": "palmieri", "python": 2.4}
        result = self.iface.ManyStringify(arg0)
        print result
       
        print "Call test passed"
        self.assertTrue(True)

    def testPythonTypes(self):
        print "\n********* Testing Python Types ***********"
                 
        for send_val in test_types_vals:
            print "Testing %s"% str(send_val)
            recv_val = self.iface.EchoVariant(send_val)
            self.assertEqual(send_val, recv_val.object)
"""
if __name__ == '__main__':
    gobject.threads_init()
    dbus.glib.init_threads()

    unittest.main()