test: Added test to enable sofia 3gr tx throttling

This commit is contained in:
Rajagopal Aravindan 2016-05-24 14:14:18 +05:30 committed by Denis Kenzior
parent a8d084dcf0
commit 06bc8c4160
2 changed files with 20 additions and 1 deletions

View File

@ -752,7 +752,8 @@ test_scripts = test/backtrace \
test/set-sms-smsc \
test/set-sms-bearer \
test/get-serving-cell-info \
test/list-allowed-access-points
test/list-allowed-access-points \
test/enable-throttling
if TEST
testdir = $(pkglibdir)/test

18
test/enable-throttling Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/python3
import dbus, 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')
modems = manager.GetModems()
path = modems[0][0]
print("Enabling transmit power throttling of modem %s ..." % path)
thermal_management = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.sofia3gr.ThermalManagement')
thermal_management.SetProperty("TransmitPowerThrottling", dbus.Boolean(1), timeout = 30)