auto-t: test connectivity in testWPA

testWPA was not verifying connectivity between the two interfaces. Funny
enough, doing this resulted in the same problems that adhoc had where
we were setting the connection as complete before the gtk/igtk were set.
This is fixed now so we can now use testutil in this test.
This commit is contained in:
James Prestwood 2018-10-26 09:45:01 -07:00 committed by Denis Kenzior
parent da262e7187
commit ec4cb6beeb
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import iwd
from iwd import IWD
from iwd import PSKAgent
from iwd import NetworkType
import testutil
class Test(unittest.TestCase):
@ -42,6 +43,9 @@ class Test(unittest.TestCase):
condition = 'obj.connected'
wd.wait_for_object_condition(ordered_network.network_object, condition)
testutil.test_iface_operstate()
testutil.test_ifaces_connected()
device.disconnect()
condition = 'not obj.connected'