summaryrefslogtreecommitdiff
path: root/test/test-manager
blob: 33835237f35ea759e7912b0b37a09f293d03d258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
					"org.moblin.connman.Manager")

properties = manager.GetProperties()

def print_properties(key, value):
	if key == "Profiles":
		interface = "org.moblin.connman.Profile"
	elif key == "Devices":
		interface = "org.moblin.connman.Device"
	elif key == "Connections":
		interface = "org.moblin.connman.Connection"
	elif key == "Services":
		interface = "org.moblin.connman.Service"
	else:
		return

	print "%s" % (key)
	for path in value:
		print "    %s" % (path)
		obj = dbus.Interface(bus.get_object("org.moblin.connman", path),
								interface)

		properties = obj.GetProperties()

		for key in properties.keys():
			if key in ["Networks", "Services"]:
				continue

			if key in ["Powered", "Scanning", "Connected",
					"Available", "Remember", "Default"]:
				if properties[key] == dbus.Boolean(1):
					val = "true"
				else:
					val = "false"
			elif key in ["Strength", "Priority"]:
				val = int(properties[key])
			else:
				val = str(properties[key])

			print "        %s = %s" % (key, val)

		if "Networks" in properties.keys():
			list = ""
			for path in properties["Networks"]:
				val = str(path)
				list = list + val[val.rfind("/") + 1:] + " "
			print "        Networks = [ %s]" % (list)
		if "Services" in properties.keys():
			list = ""
			for path in properties["Services"]:
				val = str(path)
				list = list + val[val.rfind("/") + 1:] + " "
			print "        Services = [ %s]" % (list)

for key in properties.keys():
	if key in ["Profiles", "Devices", "Connections", "Services"]:
		print_properties(key, properties[key])
	elif key in ["AvailableTechnologies", "EnabledTechnologies"]:
		print "%s" % (key)
		list = ""
		for val in properties[key]:
			list = list + val + " "
		print "    [ %s]" % (list)
	elif key in ["OfflineMode"]:
		print "%s" % (key)
		if properties[key] == dbus.Boolean(1):
			print "    true"
		else:
			print "    false"
	else:
		print "%s" % (key)
		print "    %s" % (properties[key])