tests: Add terminate support for hostapd/wpa_supplicant

Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
This commit is contained in:
Janusz Dziedzic 2016-03-04 10:20:40 +01:00 committed by Jouni Malinen
parent 13073011b9
commit e3b36d420e
2 changed files with 27 additions and 0 deletions

View file

@ -101,6 +101,13 @@ class HostapdGlobal:
words = line.split(":")
return int(words[1])
def terminate(self):
self.mon.detach()
self.mon.close()
self.mon = None
self.ctrl.terminate()
self.ctrl = None
class Hostapd:
def __init__(self, ifname, bssidx=0, hostname=None, port=8877):
self.ifname = ifname
@ -114,6 +121,14 @@ class Hostapd:
self.bssid = None
self.bssidx = bssidx
def close_ctrl(self):
if self.mon is not None:
self.mon.detach()
self.mon.close()
self.mon = None
self.ctrl.close()
self.ctrl = None
def own_addr(self):
if self.bssid is None:
self.bssid = self.get_status_field('bssid[%d]' % self.bssidx)
@ -365,6 +380,11 @@ def remove_bss(ifname, hostname=None, port=8878):
hapd_global = HostapdGlobal(hostname=hostname, port=port)
hapd_global.remove(ifname)
def terminate(hostname=None, port=8878):
logger.info("Terminating hostapd")
hapd_global = HostapdGlobal(hostname=hostname, port=port)
hapd_global.terminate()
def wpa2_params(ssid=None, passphrase=None):
params = { "wpa": "2",
"wpa_key_mgmt": "WPA-PSK",

View file

@ -39,6 +39,13 @@ class WpaSupplicant:
else:
self.global_mon = None
def terminate(self):
if self.global_mon:
self.global_mon.detach()
self.global_mon = None
self.global_ctrl.terminate()
self.global_ctrl = None
def close_ctrl(self):
if self.global_mon:
self.global_mon.detach()