Add test script for enabling cell broadcast

This commit is contained in:
Marcel Holtmann 2010-06-07 04:02:31 -07:00
parent 0329a6ceaf
commit ee3343f81b
2 changed files with 22 additions and 1 deletions

View File

@ -336,7 +336,8 @@ test_scripts = test/activate-context \
test/offline-modem \
test/online-modem \
test/get-tech-preference \
test/set-tech-preference
test/set-tech-preference \
test/enable-cbs
if TEST
testdir = $(pkglibdir)/test

20
test/enable-cbs Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/python
import dbus
import sys
bus = dbus.SystemBus()
if len(sys.argv) == 2:
path = sys.argv[1]
else:
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
'org.ofono.Manager')
properties = manager.GetProperties()
path = properties["Modems"][0]
print "Enabling cell broadcast on modem %s..." % path
cbs = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.CbsManager')
cbs.SetProperty("Powered", dbus.Boolean(1))