2016-10-06 20:06:15 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import DeviceState
|
|
|
|
from iwd import NetworkType
|
|
|
|
|
|
|
|
from hostapd import HostapdCLI
|
2017-03-26 03:16:53 +02:00
|
|
|
from hostapd import hostapd_map
|
2016-10-06 20:06:15 +02:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_disconnect(self):
|
|
|
|
wd = IWD()
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2016-10-06 20:06:15 +02:00
|
|
|
device = devices[0]
|
|
|
|
|
2017-03-26 03:16:53 +02:00
|
|
|
hostapd_if = list(hostapd_map.values())[0]
|
|
|
|
hostapd = HostapdCLI(hostapd_if)
|
|
|
|
|
2016-10-06 20:06:15 +02:00
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network('ssidOpen')
|
2016-10-06 20:06:15 +02:00
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network.network_object.connect()
|
2016-10-06 20:06:15 +02:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2017-03-26 03:16:53 +02:00
|
|
|
hostapd.deauthenticate(device.address)
|
2016-10-06 20:06:15 +02:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.connecting'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.disconnected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|