我有一个奇怪的用例,当我没有检查'然后在'然后的模拟类上的两个调用时,spock mock返回正确的值。部分,但是当我在'中包含两个支票时,它返回0:'部分。 这是模拟:
mockDao.readCounter(_, _, _, _, _) >> dbValue
然后是'然后:'失败的部分:
1 * mockDao.readCounter(_, _, _, _, _)
// updateCounters is called with: sum = dbValue + value
1 * mockDao.updateCounter(namespace, date, key, min, shardID, dbValue + value)
在这种情况下,而不是' dbValue',' 0'退回。但如果我注释掉两个检查中的任何一个,那么它就会通过。因此,以下两种情况通过:
//1 * mockDao.readCounter(_, _, _, _, _)
// updateCounters is called with: sum = dbValue + value
1 * mockDao.updateCounter(namespace, date, key, min, shardID, dbValue + value)
OR
1 * mockDao.readCounter(_, _, _, _, _)
// updateCounters is called with: sum = dbValue + value
//1 * mockDao.updateCounter(namespace, date, key, min, shardID, dbValue + value)
这是spock的gradle部分:
// spock
testCompile "org.codehaus.groovy:groovy:2.4.7"
compile group: 'org.spockframework', name: 'spock-core', version: '1.0-groovy-2.4'
// !!! To get none-interface base mocking to work with Spock
compile group: 'cglib', name: 'cglib-nodep', version: '3.2.4'
答案 0 :(得分:10)
这是预期和记录的行为。如果你想在同一个模拟器上模拟和存根,你必须在一行中完成它,比如
1 * mockDao.readCounter(_, _, _, _, _) >> dbValue
这里是relevant section:
模拟和衔接是相辅相成的:
1 * subscriber.receive("message1") >> "ok"
1 * subscriber.receive("message2") >> "fail"
当模拟和存根相同的方法调用时,它们必须在相同的交互中发生。特别是,以下Mockito风格将存根和模拟分成两个单独的语句将不起作用:
setup:
subscriber.receive("message1") >> "ok"
when:
publisher.send("message1")
then:
1 * subscriber.receive("message1")
正如Where to Declare Interactions中所述,receive
调用将首先与then:
块中的互动进行匹配。由于该交互未指定响应,因此将返回方法的返回类型(在本例中为null
)的默认值。 (这只是Spock宽大的嘲弄方法的另一个方面。)因此,setup:
块中的交互永远不会有机会匹配。
注意 |同一方法调用的模拟和存根必须在同一个交互中进行。