test: Fix test scripts for new operator interfaces

This commit is contained in:
Marcel Holtmann 2010-08-20 11:53:32 +02:00
parent 7838503458
commit 6656aec9ad
3 changed files with 43 additions and 6 deletions

View File

@ -321,6 +321,8 @@ test_scripts = test/activate-context \
test/list-contexts \
test/list-modems \
test/list-operators \
test/scan-for-operators \
test/get-operators\
test/monitor-ofono \
test/process-context-settings \
test/receive-sms \

37
test/get-operators Executable file
View File

@ -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

View File

@ -17,13 +17,11 @@ print "Propose scanning for modem %s..." % path
netreg = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.NetworkRegistration')
operators = netreg.ProposeScan(timeout=100);
operators = netreg.Scan(timeout=100);
for path in operators:
operator = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.NetworkOperator')
properties = operator.GetProperties()
for entry in operators:
path = entry[0]
properties = entry[1]
print "[ %s ]" % (path)