2018-06-27 21:31:47 +02:00
|
|
|
#! /usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys, os
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import PSKAgent
|
|
|
|
from iwd import NetworkType
|
|
|
|
import hostapd
|
|
|
|
import testutil
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
def client_connect(self, wd, dev):
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev, condition)
|
|
|
|
|
|
|
|
if not dev.get_ordered_networks():
|
|
|
|
dev.scan()
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev, condition)
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev, condition)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = dev.get_ordered_network('TestAP1')
|
2018-06-30 01:25:00 +02:00
|
|
|
|
2018-06-27 21:31:47 +02:00
|
|
|
self.assertEqual(ordered_network.type, NetworkType.psk)
|
|
|
|
|
|
|
|
psk_agent = PSKAgent('Password1')
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2018-08-10 22:40:22 +02:00
|
|
|
try:
|
|
|
|
dev2.disconnect()
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(dev2, condition)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2018-06-27 21:31:47 +02:00
|
|
|
ordered_network.network_object.connect()
|
|
|
|
|
|
|
|
condition = 'obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(dev.name)
|
|
|
|
testutil.test_ifaces_connected(list(hostapd.hostapd_map.keys())[0],
|
|
|
|
dev.name)
|
|
|
|
|
|
|
|
dev.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
def test_connection_success(self):
|
|
|
|
wd = IWD()
|
|
|
|
|
2018-07-02 19:02:08 +02:00
|
|
|
dev1, dev2 = wd.list_devices(2)
|
2018-08-24 03:37:49 +02:00
|
|
|
dev1.disconnect()
|
|
|
|
dev2.disconnect()
|
2018-06-27 21:31:47 +02:00
|
|
|
|
|
|
|
self.client_connect(wd, dev1)
|
|
|
|
|
|
|
|
dev1.start_ap('TestAP2', 'Password2')
|
|
|
|
|
2018-08-24 03:37:49 +02:00
|
|
|
try:
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev2, condition)
|
|
|
|
dev2.scan()
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev2, condition)
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(dev2, condition)
|
2018-06-27 21:31:47 +02:00
|
|
|
|
2018-08-24 03:37:49 +02:00
|
|
|
ordered_networks = dev2.get_ordered_networks()
|
|
|
|
networks = { n.name: n for n in ordered_networks }
|
|
|
|
self.assertEqual(networks['TestAP1'].type, NetworkType.psk)
|
|
|
|
self.assertEqual(networks['TestAP2'].type, NetworkType.psk)
|
2018-06-27 21:31:47 +02:00
|
|
|
|
2018-08-24 03:37:49 +02:00
|
|
|
psk_agent = PSKAgent('InvalidPassword')
|
|
|
|
wd.register_psk_agent(psk_agent)
|
2018-06-27 21:31:47 +02:00
|
|
|
|
2018-08-24 03:37:49 +02:00
|
|
|
with self.assertRaises(iwd.FailedEx):
|
|
|
|
networks['TestAP2'].network_object.connect()
|
2018-06-27 21:31:47 +02:00
|
|
|
|
2018-08-24 03:37:49 +02:00
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
finally:
|
|
|
|
dev1.stop_ap()
|
2018-06-27 21:31:47 +02:00
|
|
|
|
|
|
|
# Finally test dev1 can go to client mode and connect again
|
|
|
|
self.client_connect(wd, dev1)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2018-09-14 18:36:10 +02:00
|
|
|
IWD.copy_to_storage('TestAP1.psk')
|
2018-06-27 21:31:47 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|