tests: wpa_supplicant MIB command
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
fb5c8cea95
commit
44bb91066b
2 changed files with 20 additions and 0 deletions
|
@ -263,3 +263,11 @@ def test_wpas_ctrl_config_parser(dev):
|
||||||
|
|
||||||
if "FAIL" not in dev[0].request("SET serial_number 0123456789abcdef0123456789abcdef0"):
|
if "FAIL" not in dev[0].request("SET serial_number 0123456789abcdef0123456789abcdef0"):
|
||||||
raise Exception("Too long string accepted")
|
raise Exception("Too long string accepted")
|
||||||
|
|
||||||
|
def test_wpas_ctrl_mib(dev):
|
||||||
|
"""wpa_supplicant ctrl_iface MIB"""
|
||||||
|
mib = dev[0].get_mib()
|
||||||
|
if "dot11RSNAOptionImplemented" not in mib:
|
||||||
|
raise Exception("Missing MIB entry")
|
||||||
|
if mib["dot11RSNAOptionImplemented"] != "TRUE":
|
||||||
|
raise Exception("Unexpected dot11RSNAOptionImplemented value")
|
||||||
|
|
|
@ -290,6 +290,18 @@ class WpaSupplicant:
|
||||||
return vals[field]
|
return vals[field]
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def get_mib(self):
|
||||||
|
res = self.request("MIB")
|
||||||
|
lines = res.splitlines()
|
||||||
|
vals = dict()
|
||||||
|
for l in lines:
|
||||||
|
try:
|
||||||
|
[name,value] = l.split('=', 1)
|
||||||
|
vals[name] = value
|
||||||
|
except ValueError, e:
|
||||||
|
logger.info(self.ifname + ": Ignore unexpected MIB line: " + l)
|
||||||
|
return vals
|
||||||
|
|
||||||
def p2p_dev_addr(self):
|
def p2p_dev_addr(self):
|
||||||
return self.get_status_field("p2p_device_address")
|
return self.get_status_field("p2p_device_address")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue