mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 15:20:42 +01:00
test: add test utility for Roam() method
This commit is contained in:
parent
694ccf62d0
commit
f3d662db74
16
test/force-roam
Executable file
16
test/force-roam
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import dbus
|
||||||
|
|
||||||
|
if (len(sys.argv) != 3):
|
||||||
|
print("Usage: %s <device> <mac>" % (sys.argv[0]))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
bus = dbus.SystemBus()
|
||||||
|
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
|
||||||
|
"net.connman.iwd.StationDiagnostic")
|
||||||
|
|
||||||
|
mac = sys.argv[2].replace(':', '')
|
||||||
|
|
||||||
|
device.Roam(dbus.ByteArray.fromhex(mac))
|
Loading…
x
Reference in New Issue
Block a user