1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
def parameterize_cases(argnames, cases):
"""
This is used for parametrizing pytest test cases.
argnames: a comma separated string of arguments that the test expects.
cases: a dictionary of test cases.
argnames_list = [i.strip() for i in argnames.split(',')]
ids = list(cases.keys())
argvalues = [tuple(test_name if k == 'test_name' else i[k - 1] for k in argnames_list) for test_name, i in cases.items()]
return {'argnames': argnames, 'argvalues': argvalues, 'ids': ids}
"""
argnames_list = [i.strip() for i in argnames.split(',')]
if 'test_name' not in argnames_list:
argnames_list.append('test_name')
argvalues = [tuple(test_name if (k == 'test_name') else test_dict[k] for k in argnames_list) for test_name, test_dict in cases.items()]
ids = list(cases.keys())
return {'argnames': argnames, 'argvalues': argvalues, 'ids': ids}
class CustomClass:
def __init__(self, a, b=None):
self.a = a
self.b = b
def __str__(self):
return "Custom({}, {})".format(self.a, self.b)
def __repr__(self):
return self.__str__()
class CustomClassMisleadingRepr(CustomClass):
def __str__(self):
return "({}, {})".format(self.a, self.b)
class CustomClass2:
def __init__(self, prop1=None, prop2=None):
self.prop1 = prop1 or []
self.prop2 = prop2 or []
def __eq__(self, other):
return self.__dict__ == other.__dict__
def __repr__(self):
return "<CustomClass2 id: {}, prop1: {}, prop2: {}>".format(
id(self), self.prop1, self.prop2)
__str__ = __repr__
class PicklableClass:
def __init__(self, item):
if item != 'delete':
self.item = item
def __reduce__(self):
if hasattr(self, 'item'):
item = self.item
else:
item = 'delete'
return (self.__class__, (item, ))
def __eq__(self, other):
if hasattr(self, 'item') and hasattr(other, 'item'):
return self.item == other.item
if not hasattr(self, 'item') and not hasattr(other, 'item'):
return True
return False
def __str__(self):
return f"<Picklable: {self.item if hasattr(self, 'item') else 'delete'}>"
__repr__ = __str__
|