You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

# Utility class to match test filters.
#
# * @author Matthew Woehlke June 2018
#
# =============================================================================
class Selector(object):
# -------------------------------------------------------------------------
def __init__(self, s):
class Range(object):
pass
self.ranges = []
for p in s.split(','):
r = Range()
if ':' in p:
r.group, p = p.split(':')
else:
r.group = None
if '-' in p:
r.lower, r.upper = map(int, p.split('-'))
else:
r.lower = int(p)
r.upper = int(p)
self.ranges.append(r)
# -------------------------------------------------------------------------
def test(self, name):
group, num = name.split(':')
num = int(num)
for r in self.ranges:
if r.group is not None and r.group != group:
continue
if num < r.lower or num > r.upper:
continue
return True
return False