- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有以下类(class):
public class MyClass
{
public void deleteOrganization(Organization organization)
{
/*Delete organization*/
/*Delete related users*/
for (User user : organization.getUsers()) {
deleteUser(user);
}
}
public void deleteUser(User user)
{
/*Delete user logic*/
}
}
deleteOrganization
使用其其他公共(public)方法
deleteUser
。在我的情况下,该类是旧代码,我开始在上面添加单元测试。因此,我首先针对第一种方法
deleteOrganization
添加了一个单元测试,最后确定该测试已扩展为也可以测试
deleteUser
方法。
deleteOrganization
方法)。为了通过它,我不得不处理与
deleteUser
方法相关的不同条件,以便通过测试,这极大地增加了测试的复杂性。
deleteUser
方法:
@Test
public void shouldDeleteOrganization()
{
MyClass spy = spy(new MyClass());
// avoid invoking the method
doNothing().when(spy).deleteUser(any(User.class));
// invoke method under test
spy.deleteOrganization(new Organization());
}
spy
方法的javadoc指出:
As usual you are going to read the partial mock warning: Object oriented programming is more less tackling complexity by dividing the complexity into separate, specific, SRPy objects. How does partial mock fit into this paradigm? Well, it just doesn't... Partial mock usually means that the complexity has been moved to a different method on the same object. In most cases, this is not the way you want to design your application.
deleteOrganization
方法的复杂性已移至
deleteUser
方法,这是由类的自用引起的。除了
In most cases, this is not the way you want to design your application
语句之外,不建议使用此解决方案的事实表明存在代码异味,确实需要重构来改进此代码。
最佳答案
类的自用使用并不一定是问题:我尚未确信“除其他个人或团队风格外,它仅应测试deleteOrganization方法”。尽管将deleteUser
和deleteOrganization
保持在独立的隔离单元中很有帮助,但这并不总是可行或实际的-特别是如果方法彼此调用或依赖于一个公共(public)状态。测试的重点是测试“最小的可测试单元”,它不需要独立的方法或可以独立测试的方法。
您可以根据自己的需要以及代码库的发展方式进行选择。其中两个来自您的问题,但我在下面重新介绍它们的优点。
deleteOrganization
重复调用deleteUser
,并且可以想象实现会发生变化,而这样做不会。 (例如,将来的升级可能会使数据库触发器负责级联删除,或者单个文件删除或API调用可能会负责组织删除。)deleteOrganization
的deleteUser
调用视为私有(private)方法调用,那么您将只测试MyClass的契约(Contract)而不是其实现:创建具有某些用户的组织,调用该方法,并检查该组织是否消失以及用户太。它可能很冗长,但却是最正确,最灵活的测试。deleteUser
和deleteOrganization
是独立的。通过将它们分成两个不同的类,可以使OrganizationDeleter接受模拟UserDeleter,从而消除了对部分模拟的需求。deleteUser
和deleteOrganization
,执行所需的任何准备或验证步骤,然后对MyClassService中的原语进行一些调用。 deleteUser
可能是一个简单的委托(delegate),而deleteOrganization
可以在不调用其邻居的情况下调用该服务。deleteOrganization
的总契约(Contract)涉及对
deleteUser
的多次调用,那么这将是完全公平的创建子类或部分模拟的游戏。如果未记录,则为实现细节,应将其视为此类。)
关于java - 如何避免上课自用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31456610/
我是一名优秀的程序员,十分优秀!