modem: Add test script for the Lockdown property
authorGustavo F. Padovan <padovan@profusion.mobi>
Wed, 22 Dec 2010 18:51:05 +0000 (16:51 -0200)
committerDenis Kenzior <denkenz@gmail.com>
Wed, 22 Dec 2010 19:37:38 +0000 (13:37 -0600)
Makefile.am
test/lockdown-modem [new file with mode: 0755]

index 252b5da..94d5c09 100644 (file)
@@ -428,6 +428,7 @@ test_scripts = test/backtrace \
                test/set-tty \
                test/set-gsm-band \
                test/set-umts-band
+               test/lockdown-modem
 
 if TEST
 testdir = $(pkglibdir)/test
diff --git a/test/lockdown-modem b/test/lockdown-modem
new file mode 100755 (executable)
index 0000000..5d98154
--- /dev/null
@@ -0,0 +1,25 @@
+#!/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')
+       modems = manager.GetModems()
+       path = modems[0][0]
+
+print "Locking and disconnecting modem %s..." % path
+modem = dbus.Interface(bus.get_object('org.ofono', path),
+                                               'org.ofono.Modem')
+
+modem.SetProperty("Lockdown", dbus.Boolean(1))
+
+print "press ENTER to unlock the modem %s" % path
+sys.stdin.readline()
+
+modem.SetProperty("Lockdown", dbus.Boolean(0))