我们在使用 Mockito 时遇到了非常棘手的问题。
代码:
public class Baz{
private Foo foo;
private List list;
public Baz(Foo foo){
this.foo = foo;
}
public void invokeBar(){
list = Arrays.asList(1,2,3);
foo.bar(list);
list.clear();
}
}
public class BazTest{
@Test
void testBarIsInvoked(){
Foo mockFoo = mock(Foo.class);
Baz baz = new Baz(mockFoo);
baz.invokeBar();
verify(mockFoo).bar(Arrays.asList(1,2,3));
}
}
这会导致如下错误消息:
Arguments are different! Wanted:
foo.bar([1,2,3]);
Actual invocation has different arguments:
foo.bar([]);
刚刚发生了什么:
Mockito 记录 reference 到 list 而不是 list 的副本,所以在上面的代码中 Mockito 验证修改版本(空列表,[])而不是调用期间实际传递的列表([1,2,3])!
问题:
除了像下面那样做一个防御性副本(这实际上有帮助,但我们不喜欢这个解决方案)之外,是否有任何优雅和干净的解决方案来解决这个问题?
public void fun(){
list = Arrays.asList(1,2,3);
foo.bar(new ArrayList(list));
list.clear();
}
我们不想修改正确生产代码并降低其性能只是为了解决测试中的技术问题。
我在这里问这个问题是因为这似乎是 Mockito 的常见问题。或者我们只是做错了什么?
附言。这不是真正的代码,所以请不要问我们为什么要创建一个列表然后清除它等等。在真正的代码中,我们确实需要做类似的事情:-)。
最佳答案
此处的解决方案是使用自定义答案。两个代码示例:第一个是使用的测试类,第二个是测试。
首先是测试类:
private interface Foo
{
void bar(final List<String> list);
}
private static final class X
{
private final Foo foo;
X(final Foo foo)
{
this.foo = foo;
}
void invokeBar()
{
// Note: using Guava's Lists here
final List<String> list = Lists.newArrayList("a", "b", "c");
foo.bar(list);
list.clear();
}
}
关于测试:
@Test
@SuppressWarnings("unchecked")
public void fooBarIsInvoked()
{
final Foo foo = mock(Foo.class);
final X x = new X(foo);
// This is to capture the arguments with which foo is invoked
// FINAL IS NECESSARY: non final method variables cannot serve
// in inner anonymous classes
final List<String> captured = new ArrayList<String>();
// Tell that when foo.bar() is invoked with any list, we want to swallow its
// list elements into the "captured" list
doAnswer(new Answer()
{
@Override
public Object answer(final InvocationOnMock invocation)
throws Throwable
{
final List<String> list
= (List<String>) invocation.getArguments()[0];
captured.addAll(list);
return null;
}
}).when(foo).bar(anyList());
// Invoke...
x.invokeBar();
// Test invocation...
verify(foo).bar(anyList());
// Test arguments: works!
assertEquals(captured, Arrays.asList("a", "b", "c"));
}
当然,能够编写这样的测试需要你能够向你的“外部对象”注入(inject)足够的状态,这样测试才有意义......在这里它相对容易。
关于java - Mockito:如果传递给 mock 的参数被修改了怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17027368/
我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val
exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby中使用两个参数异步运行exe吗?我已经尝试过ruby命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何rubygems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除
我有一些Ruby代码,如下所示:Something.createdo|x|x.foo=barend我想编写一个测试,它使用double代替block参数x,这样我就可以调用:x_double.should_receive(:foo).with("whatever").这可能吗? 最佳答案 specify'something'dox=doublex.should_receive(:foo=).with("whatever")Something.should_receive(:create).and_yield(x)#callthere
我正在为一个项目制作一个简单的shell,我希望像在Bash中一样解析参数字符串。foobar"helloworld"fooz应该变成:["foo","bar","helloworld","fooz"]等等。到目前为止,我一直在使用CSV::parse_line,将列分隔符设置为""和.compact输出。问题是我现在必须选择是要支持单引号还是双引号。CSV不支持超过一个分隔符。Python有一个名为shlex的模块:>>>shlex.split("Test'helloworld'foo")['Test','helloworld','foo']>>>shlex.split('Test"
我不确定传递给方法的对象的类型是否正确。我可能会将一个字符串传递给一个只能处理整数的函数。某种运行时保证怎么样?我看不到比以下更好的选择:defsomeFixNumMangler(input)raise"wrongtype:integerrequired"unlessinput.class==FixNumother_stuffend有更好的选择吗? 最佳答案 使用Kernel#Integer在使用之前转换输入的方法。当无法以任何合理的方式将输入转换为整数时,它将引发ArgumentError。defmy_method(number)
如果您尝试在Ruby中的nil对象上调用方法,则会出现NoMethodError异常并显示消息:"undefinedmethod‘...’fornil:NilClass"然而,有一个tryRails中的方法,如果它被发送到一个nil对象,它只返回nil:require'rubygems'require'active_support/all'nil.try(:nonexisting_method)#noNoMethodErrorexceptionanymore那么try如何在内部工作以防止该异常? 最佳答案 像Ruby中的所有其他对象
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
两者都可以defsetup(options={})options.reverse_merge:size=>25,:velocity=>10end和defsetup(options={}){:size=>25,:velocity=>10}.merge(options)end在方法的参数中分配默认值。问题是:哪个更好?您更愿意使用哪一个?在性能、代码可读性或其他方面有什么不同吗?编辑:我无意中添加了bang(!)...并不是要询问nobang方法与bang方法之间的区别 最佳答案 我倾向于使用reverse_merge方法:option
我有一个这样的哈希数组:[{:foo=>2,:date=>Sat,01Sep2014},{:foo2=>2,:date=>Sat,02Sep2014},{:foo3=>3,:date=>Sat,01Sep2014},{:foo4=>4,:date=>Sat,03Sep2014},{:foo5=>5,:date=>Sat,02Sep2014}]如果:date相同,我想合并哈希值。我对上面数组的期望是:[{:foo=>2,:foo3=>3,:date=>Sat,01Sep2014},{:foo2=>2,:foo5=>5:date=>Sat,02Sep2014},{:foo4=>4,:dat
我有一个只接受一个参数的方法:defmy_method(number)end如果使用number调用方法,我该如何引发错误??通常,我如何定义方法参数的条件?比如我想在调用的时候报错:my_method(1) 最佳答案 您可以添加guard在函数的开头,如果参数无效则引发异常。例如:defmy_method(number)failArgumentError,"Inputshouldbegreaterthanorequalto2"ifnumbereputse.messageend#=>Inputshouldbegreaterthano