test: update create-context to the new API

This commit is contained in:
Denis Kenzior 2010-08-19 13:24:09 -05:00
parent b4c1938d8a
commit b775c434d9
1 changed files with 8 additions and 8 deletions

View File

@ -16,21 +16,21 @@ for path in properties["Modems"]:
properties = modem.GetProperties() properties = modem.GetProperties()
if "org.ofono.DataConnectionManager" not in properties["Interfaces"]: if "org.ofono.ConnectionManager" not in properties["Interfaces"]:
continue continue
connmgr = dbus.Interface(bus.get_object('org.ofono', path), connman = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.DataConnectionManager') 'org.ofono.ConnectionManager')
properties = connmgr.GetProperties() contexts = connman.GetContexts()
if (properties["PrimaryContexts"] == []): if (len(contexts) == 0):
path = connmgr.CreateContext("Internet access", "internet") path = connman.AddContext("internet")
else: else:
path = properties["PrimaryContexts"][0] path = contexts[0][0]
context = dbus.Interface(bus.get_object('org.ofono', path), context = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.PrimaryDataContext') 'org.ofono.ConnectionContext')
try: try:
context.SetProperty("AccessPointName", sys.argv[1]) context.SetProperty("AccessPointName", sys.argv[1])