diff options
Diffstat (limited to 'test/scan-for-operators')
-rwxr-xr-x | test/scan-for-operators | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/scan-for-operators b/test/scan-for-operators new file mode 100755 index 00000000..3206f8f0 --- /dev/null +++ b/test/scan-for-operators @@ -0,0 +1,38 @@ +#!/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.Scan(timeout=100); + +for entry in operators: + path = entry[0] + properties = entry[1] + + 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 + |