2013-11-24 14:32:52 +01:00
|
|
|
# Testing utilities
|
2015-01-07 12:41:31 +01:00
|
|
|
# Copyright (c) 2013-2015, Jouni Malinen <j@w1.fi>
|
2013-11-24 14:32:52 +01:00
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
2015-04-27 09:08:04 +02:00
|
|
|
import os
|
2015-10-12 00:05:37 +02:00
|
|
|
import time
|
2016-04-07 07:38:02 +02:00
|
|
|
import remotehost
|
2015-04-27 09:08:04 +02:00
|
|
|
|
2013-11-24 14:32:52 +01:00
|
|
|
def get_ifnames():
|
|
|
|
ifnames = []
|
|
|
|
with open("/proc/net/dev", "r") as f:
|
|
|
|
lines = f.readlines()
|
|
|
|
for l in lines:
|
|
|
|
val = l.split(':', 1)
|
|
|
|
if len(val) == 2:
|
|
|
|
ifnames.append(val[0].strip(' '))
|
|
|
|
return ifnames
|
2015-01-07 12:41:31 +01:00
|
|
|
|
|
|
|
class HwsimSkip(Exception):
|
|
|
|
def __init__(self, reason):
|
|
|
|
self.reason = reason
|
|
|
|
def __str__(self):
|
|
|
|
return self.reason
|
2015-01-05 21:00:22 +01:00
|
|
|
|
|
|
|
class alloc_fail(object):
|
|
|
|
def __init__(self, dev, count, funcs):
|
|
|
|
self._dev = dev
|
|
|
|
self._count = count
|
|
|
|
self._funcs = funcs
|
|
|
|
def __enter__(self):
|
|
|
|
cmd = "TEST_ALLOC_FAIL %d:%s" % (self._count, self._funcs)
|
|
|
|
if "OK" not in self._dev.request(cmd):
|
|
|
|
raise HwsimSkip("TEST_ALLOC_FAIL not supported")
|
|
|
|
def __exit__(self, type, value, traceback):
|
|
|
|
if type is None:
|
|
|
|
if self._dev.request("GET_ALLOC_FAIL") != "0:%s" % self._funcs:
|
|
|
|
raise Exception("Allocation failure did not trigger")
|
2015-03-02 15:30:13 +01:00
|
|
|
|
2015-06-28 20:41:56 +02:00
|
|
|
class fail_test(object):
|
|
|
|
def __init__(self, dev, count, funcs):
|
|
|
|
self._dev = dev
|
|
|
|
self._count = count
|
|
|
|
self._funcs = funcs
|
|
|
|
def __enter__(self):
|
|
|
|
cmd = "TEST_FAIL %d:%s" % (self._count, self._funcs)
|
|
|
|
if "OK" not in self._dev.request(cmd):
|
|
|
|
raise HwsimSkip("TEST_FAIL not supported")
|
|
|
|
def __exit__(self, type, value, traceback):
|
|
|
|
if type is None:
|
|
|
|
if self._dev.request("GET_FAIL") != "0:%s" % self._funcs:
|
|
|
|
raise Exception("Test failure did not trigger")
|
|
|
|
|
2015-12-20 10:55:18 +01:00
|
|
|
def wait_fail_trigger(dev, cmd, note="Failure not triggered"):
|
2015-10-12 00:05:37 +02:00
|
|
|
for i in range(0, 40):
|
|
|
|
if dev.request(cmd).startswith("0:"):
|
|
|
|
break
|
|
|
|
if i == 39:
|
2015-12-20 10:55:18 +01:00
|
|
|
raise Exception(note)
|
2015-10-12 00:05:37 +02:00
|
|
|
time.sleep(0.05)
|
|
|
|
|
2015-03-02 15:30:13 +01:00
|
|
|
def require_under_vm():
|
|
|
|
with open('/proc/1/cmdline', 'r') as f:
|
|
|
|
cmd = f.read()
|
|
|
|
if "inside.sh" not in cmd:
|
|
|
|
raise HwsimSkip("Not running under VM")
|
2015-04-27 09:08:04 +02:00
|
|
|
|
|
|
|
def iface_is_in_bridge(bridge, ifname):
|
|
|
|
fname = "/sys/class/net/"+ifname+"/brport/bridge"
|
|
|
|
if not os.path.exists(fname):
|
|
|
|
return False
|
|
|
|
if not os.path.islink(fname):
|
|
|
|
return False
|
|
|
|
truebridge = os.path.basename(os.readlink(fname))
|
|
|
|
if bridge == truebridge:
|
|
|
|
return True
|
|
|
|
return False
|
2015-08-01 17:48:49 +02:00
|
|
|
|
|
|
|
def skip_with_fips(dev, reason="Not supported in FIPS mode"):
|
|
|
|
res = dev.get_capability("fips")
|
|
|
|
if res and 'FIPS' in res:
|
|
|
|
raise HwsimSkip(reason)
|
2016-04-07 07:38:02 +02:00
|
|
|
|
|
|
|
def get_phy(ap, ifname=None):
|
|
|
|
phy = "phy3"
|
|
|
|
try:
|
|
|
|
hostname = ap['hostname']
|
|
|
|
except:
|
|
|
|
hostname = None
|
|
|
|
host = remotehost.Host(hostname)
|
|
|
|
|
|
|
|
if ifname == None:
|
|
|
|
ifname = ap['ifname']
|
2016-04-24 11:28:18 +02:00
|
|
|
status, buf = host.execute(["iw", "dev", ifname, "info"])
|
2016-04-07 07:38:02 +02:00
|
|
|
if status != 0:
|
|
|
|
raise Exception("iw " + ifname + " info failed")
|
|
|
|
lines = buf.split("\n")
|
|
|
|
for line in lines:
|
|
|
|
if "wiphy" in line:
|
|
|
|
words = line.split()
|
|
|
|
phy = "phy" + words[1]
|
|
|
|
break
|
|
|
|
return phy
|