Add test script for scanning networks

This commit is contained in:
Marcel Holtmann 2010-06-19 20:17:05 +02:00
parent 681aaef1ab
commit 11d9063e57
2 changed files with 42 additions and 1 deletions

View File

@ -342,7 +342,8 @@ test_scripts = test/activate-context \
test/set-tech-preference \
test/set-use-sms-reports \
test/set-cbs-topics \
test/enable-cbs
test/enable-cbs \
test/propose-scan
if TEST
testdir = $(pkglibdir)/test

40
test/propose-scan Executable file
View File

@ -0,0 +1,40 @@
#!/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 "Propose scanning for modem %s..." % path
netreg = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.NetworkRegistration')
operators = netreg.ProposeScan(timeout=100);
for path in operators:
operator = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.NetworkOperator')
properties = operator.GetProperties()
print "[ %s ]" % (path)
for key in properties.keys():
if key in ["Technologies"]:
val = ""
for i in properties[key]:
val += i + " "
else:
val = str(properties[key])
print " %s = %s" % (key, val)
print