2018-07-11 00:47:04 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import NetworkType
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
dict = {
|
|
|
|
'ssid_open': False,
|
|
|
|
'ssid_psk': False,
|
|
|
|
'ssid_8021x': False,
|
|
|
|
'ssid_hidden_0': False,
|
|
|
|
'ssid_hidden_1': False,
|
|
|
|
'ssid_hidden_2': False,
|
|
|
|
'ssid_hidden_3': False,
|
|
|
|
'ssid_hidden_4': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
def set_network(self, ssid):
|
|
|
|
if ssid not in self.dict:
|
2018-12-14 20:15:26 +01:00
|
|
|
return
|
2018-07-11 00:47:04 +02:00
|
|
|
|
|
|
|
if self.dict[ssid]:
|
|
|
|
raise Exception('Duplicated list entry')
|
|
|
|
|
|
|
|
self.dict[ssid] = True
|
|
|
|
|
|
|
|
def validate_scan(self, wd):
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2018-07-11 00:47:04 +02:00
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
device = devices[0]
|
|
|
|
|
|
|
|
condition = 'obj.scanning'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-07-11 00:47:04 +02:00
|
|
|
condition = 'not obj.scanning'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-07-11 00:47:04 +02:00
|
|
|
|
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
ordered_networks = device.get_ordered_networks()
|
|
|
|
|
|
|
|
for network in ordered_networks:
|
|
|
|
self.set_network(network.name)
|
|
|
|
|
|
|
|
def test_scan(self):
|
2019-01-16 04:14:58 +01:00
|
|
|
wd = IWD(True, '/tmp')
|
2018-07-11 00:47:04 +02:00
|
|
|
|
2019-04-20 22:29:05 +02:00
|
|
|
self.validate_scan(wd)
|
2018-07-11 00:47:04 +02:00
|
|
|
|
|
|
|
for ssid, seen in self.dict.items():
|
|
|
|
self.assertEqual(seen, True)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
IWD.copy_to_storage('ssid_hidden_0.open')
|
|
|
|
IWD.copy_to_storage('ssid_hidden_1.open')
|
|
|
|
IWD.copy_to_storage('ssid_hidden_2.open')
|
|
|
|
IWD.copy_to_storage('ssid_hidden_3.open')
|
|
|
|
IWD.copy_to_storage('ssid_hidden_4.open')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|