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()
|
|
|
|
|
|
|
|
devices = wd.list_devices();
|
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
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)
|
|
|
|
|
|
|
|
ordered_networks = device.get_ordered_networks()
|
|
|
|
o_net = ordered_networks[0]
|
|
|
|
|
|
|
|
o_net.network_object.connect()
|
|
|
|
|
|
|
|
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)
|