blob: 4efba8ae5cd77942d2aed420ac178e8392701d62 [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import dbus
from autotest_lib.client.bin import test
from autotest_lib.client.common_lib import error
class platform_DebugDaemonPing(test.test):
version = 1
def run_once(self, *args, **kwargs):
bus = dbus.SystemBus()
proxy = bus.get_object('org.chromium.debugd', '/org/chromium/debugd')
self.iface = dbus.Interface(proxy,
dbus_interface='org.chromium.debugd')
handle = self.iface.PingStart(1, "127.0.0.1", {}, signature="hsa{sv}")
self.iface.PingStop(handle)
got_exception = False
try:
self.iface.PingStop(handle)
except dbus.DBusException as e:
if e.get_dbus_name() == 'org.chromium.debugd.error.NoSuchProcess':
got_exception = True
else:
print "Unexpected exception %s" % e.get_dbus_name()
if not got_exception:
raise error.TestFail("Didn't get expected exception.")