/usr/share/ofono/scripts/test-modem is in ofono-scripts 1.12.bzr6858+14.04.20140318-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
| 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 | #!/usr/bin/python
from gi.repository import GLib
import dbus
import dbus.mainloop.glib
def property_changed(name, value):
	print("Modem property %s changed to %s" % (name, value))
if __name__ == "__main__":
	dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
	bus = dbus.SystemBus()
	manager = dbus.Interface(bus.get_object('org.ofono', '/'),
							'org.ofono.Manager')
	modems = manager.GetModems()
	modem = dbus.Interface(bus.get_object('org.ofono', modems[0][0]),
							'org.ofono.Modem')
	modem.connect_to_signal("PropertyChanged", property_changed)
	properties = modem.GetProperties()
	if 'Name' in properties:
		print("Name: %s" % (properties['Name']))
	if 'Manufacturer' in properties:
		print("Manufacturer: %s" % (properties['Manufacturer']))
	if 'Model' in properties:
		print("Model: %s" % (properties['Model']))
	if 'Revision' in properties:
		print("Revision: %s" % (properties['Revision']))
	if 'Serial' in properties:
		print("Serial: %s" % (properties['Serial']))
	if 'Powered' in properties:
		print("Powered: %s" % (properties['Powered']))
	if 'Online' in properties:
		print("Online: %s" % (properties['Online']))
	if 'Lockdown' in properties:
		print("Lockdown: %s" % (properties['Lockdown']))
	if 'Emergency' in properties:
		print("Emergency: %s" % (properties['Emergency']))
	if 'Features' in properties:
		print("Features:")
		for feature in properties["Features"]:
			print("    [ %s ]" % (feature))
	if 'Interfaces' in properties:
		print("Interfaces:")
		for interface in properties["Interfaces"]:
			print("    [ %s ]" % (interface))
	mainloop = GLib.MainLoop()
	mainloop.run()
 |