auto-t: Add GCMP|CCMP-256 to WPA2 test

This commit is contained in:
Denis Kenzior 2022-10-21 11:45:19 -05:00
parent 2f64f0d080
commit 3f60bd7e63
1 changed files with 12 additions and 0 deletions

View File

@ -54,6 +54,18 @@ class Test(unittest.TestCase):
self.hostapd.wait_for_event("AP-ENABLED")
self.validate_connection_success(self.wd)
def test_gcmp_256(self):
self.hostapd.set_value('rsn_pairwise', 'GCMP-256')
self.hostapd.reload()
self.hostapd.wait_for_event("AP-ENABLED")
self.validate_connection_success(self.wd)
def test_ccmp_256(self):
self.hostapd.set_value('rsn_pairwise', 'CCMP-256')
self.hostapd.reload()
self.hostapd.wait_for_event("AP-ENABLED")
self.validate_connection_success(self.wd)
def setUp(self):
self.wd = IWD(True)