2019-09-12 18:53:37 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import PSKAgent
|
|
|
|
from iwd import NetworkType
|
|
|
|
import testutil
|
|
|
|
import os
|
|
|
|
from configparser import ConfigParser
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
2019-09-13 19:27:28 +02:00
|
|
|
def connect_network(self, wd, device, network):
|
|
|
|
ordered_network = device.get_ordered_network(network)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
ordered_network.network_object.connect()
|
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2019-09-13 19:27:28 +02:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
2019-09-12 18:53:37 +02:00
|
|
|
|
|
|
|
def test_connection_success(self):
|
|
|
|
wd = IWD(True, '/tmp')
|
|
|
|
|
|
|
|
psk_agent = PSKAgent("secret123")
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
devices = wd.list_devices(1)
|
|
|
|
device = devices[0]
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2019-09-13 19:27:28 +02:00
|
|
|
#
|
|
|
|
# Connect to the PSK network, then Hotspot so IWD creates 2 entries in
|
|
|
|
# the known frequency file.
|
|
|
|
#
|
2019-09-12 18:53:37 +02:00
|
|
|
|
2019-09-13 19:27:28 +02:00
|
|
|
self.connect_network(wd, device, 'ssidCCMP')
|
2019-09-12 18:53:37 +02:00
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
psk_agent = PSKAgent('abc', ('domain\\user', 'testpasswd'))
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2019-09-13 19:27:28 +02:00
|
|
|
self.connect_network(wd, device, 'Hotspot')
|
2019-09-12 18:53:37 +02:00
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
psk_freqs = None
|
2019-09-13 19:27:28 +02:00
|
|
|
psk_uuid = None
|
2019-09-12 18:53:37 +02:00
|
|
|
hs20_freqs = None
|
2019-09-13 19:27:28 +02:00
|
|
|
hs20_uuid = None
|
2019-09-12 18:53:37 +02:00
|
|
|
config = ConfigParser()
|
2020-11-03 20:06:40 +01:00
|
|
|
config.read('/tmp/iwd/.known_network.freq')
|
2019-09-12 18:53:37 +02:00
|
|
|
for s in config.sections():
|
|
|
|
if os.path.basename(config[s]['name']) == 'ssidCCMP.psk':
|
|
|
|
psk_freqs = config[s]['list']
|
|
|
|
psk_freqs = psk_freqs.split(' ')
|
2019-09-13 19:27:28 +02:00
|
|
|
psk_uuid = s
|
2019-09-12 18:53:37 +02:00
|
|
|
elif os.path.basename(config[s]['name']) == 'example.conf':
|
|
|
|
hs20_freqs = config[s]['list']
|
|
|
|
hs20_freqs = hs20_freqs.split(' ')
|
2019-09-13 19:27:28 +02:00
|
|
|
hs20_uuid = s
|
2019-09-12 18:53:37 +02:00
|
|
|
|
2019-09-13 19:27:28 +02:00
|
|
|
#
|
|
|
|
# Verify the frequencies are what we expect
|
|
|
|
#
|
2019-09-12 18:53:37 +02:00
|
|
|
self.assertIsNotNone(psk_freqs)
|
2019-09-13 19:27:28 +02:00
|
|
|
self.assertIsNotNone(psk_uuid)
|
2019-09-12 18:53:37 +02:00
|
|
|
self.assertIn('5180', psk_freqs)
|
|
|
|
self.assertIn('2412', psk_freqs)
|
|
|
|
|
|
|
|
self.assertIsNotNone(hs20_freqs)
|
2019-09-13 19:27:28 +02:00
|
|
|
self.assertIsNotNone(hs20_uuid)
|
2019-09-12 18:53:37 +02:00
|
|
|
self.assertIn('2412', hs20_freqs)
|
|
|
|
|
2019-09-13 19:27:28 +02:00
|
|
|
#
|
|
|
|
# Forget all know networks, this should remove all entries in the
|
|
|
|
# known frequencies file.
|
|
|
|
#
|
|
|
|
for n in wd.list_known_networks():
|
|
|
|
n.forget()
|
|
|
|
|
|
|
|
psk_agent = PSKAgent("secret123")
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Reconnect, this should generate a completely new UUID since we
|
|
|
|
# previously forgot the network.
|
|
|
|
#
|
|
|
|
self.connect_network(wd, device, 'ssidCCMP')
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Ensure that a new UUID was created and that we still have the same
|
|
|
|
# frequencies listed.
|
|
|
|
#
|
|
|
|
psk_freqs = None
|
|
|
|
psk_uuid2 = None
|
|
|
|
hs20_freqs = None
|
|
|
|
config = ConfigParser()
|
2020-11-03 20:06:40 +01:00
|
|
|
config.read('/tmp/iwd/.known_network.freq')
|
2019-09-13 19:27:28 +02:00
|
|
|
for s in config.sections():
|
|
|
|
self.assertNotEqual(os.path.basename(config[s]['name']),
|
|
|
|
'example.conf')
|
|
|
|
if os.path.basename(config[s]['name']) == 'ssidCCMP.psk':
|
|
|
|
psk_freqs = config[s]['list']
|
|
|
|
psk_freqs = psk_freqs.split(' ')
|
|
|
|
psk_uuid2 = s
|
|
|
|
|
|
|
|
self.assertIsNotNone(psk_freqs)
|
|
|
|
self.assertIsNotNone(psk_uuid2)
|
|
|
|
self.assertNotEqual(psk_uuid, psk_uuid2)
|
|
|
|
self.assertIn('5180', psk_freqs)
|
|
|
|
self.assertIn('2412', psk_freqs)
|
|
|
|
|
2019-09-12 18:53:37 +02:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
IWD.copy_to_hotspot('example.conf')
|
2019-10-25 06:18:23 +02:00
|
|
|
conf = '[General]\nDisableANQP=0\n'
|
2019-09-12 18:53:37 +02:00
|
|
|
os.system('echo "%s" > /tmp/main.conf' % conf)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
os.remove('/tmp/main.conf')
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|