summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rwxr-xr-xtest/enable-cbs20
2 files changed, 22 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f350a61e..2922be99 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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
diff --git a/test/enable-cbs b/test/enable-cbs
new file mode 100755
index 00000000..2da57e93
--- /dev/null
+++ b/test/enable-cbs
@@ -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))