我对单元测试和编写/使用异常非常新。我目前正在努力学习最佳实践并将它们集成到我的项目中。作为对我一直在阅读的一些事情的考验,我写了一个简单的合同模块。下面是契约类的初始化,它有几个相互依赖的参数。
我将如何/应该根据其参数依赖性为init方法编写测试。
提前致谢!
def __init__(self, code, description ,contract_type,
start_date ,end_date ,reminder_date,
customer=None, isgroup=False, vendor=None,
discount_perc=None):
contract_types = ['item','vendor']
self.code = code
self.description = description
self.contract_type = contract_type
self.start_date = start_date
self.end_date = end_date
self.reminder_date = reminder_date
if contract_type not in contract_types:
raise AttributeError("Valid contract types are 'item' & 'vendor'")
if isgroup:
if customer:
raise AttributeError("Group contracts should not have 'customer' passed in")
self.is_group_contract = True
else:
if customer:
self.add_customer(customer)
else:
raise AttributeError('Customer required for non group contracts.')
if contract_type == 'vendor':
if vendor and discount_perc:
self.vendor = vendor
self.discount_perc = discount_perc
else:
if not vendor:
raise AttributeError('Vendor contracts require vendor to be passed in')
if not discount_perc:
raise AttributeError('Vendor contracts require discount_perc(Decimal)')
如果这类问题不适合SO,我可能会更好地去哪儿?
答案 0 :(得分:3)
我将__init__
视为与任何其他(非类或静态)方法类似 - 根据各种输入组合测试预期输出。但除此之外,我还会测试它返回(或不返回,取决于你的要求)单例对象。
但是,有人可能更喜欢将单例测试作为__new__
相关的测试用例进行提取。
最终您将获得以下测试:
另一个提示:将contract_types = ['item','vendor']
提取到class属性将有助于业务逻辑测试组织。