summaryrefslogtreecommitdiffstats
path: root/test/get-operators
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-08-20 11:53:32 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-08-20 11:53:32 +0200
commit6656aec9ad263511a8ceffed8e8b2cd60e0f810e (patch)
tree90e374e6124c856adf5e5db39c14bbb5096b28cf /test/get-operators
parent7838503458b50998b225b913d26880f27590f0db (diff)
downloadofono-6656aec9ad263511a8ceffed8e8b2cd60e0f810e.tar.bz2
test: Fix test scripts for new operator interfaces
Diffstat (limited to 'test/get-operators')
-rwxr-xr-xtest/get-operators37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/get-operators b/test/get-operators
new file mode 100755
index 00000000..2351db05
--- /dev/null
+++ b/test/get-operators
@@ -0,0 +1,37 @@
+#!/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]
+
+netreg = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.NetworkRegistration')
+
+operators = netreg.GetOperators()
+
+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
+