- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有点复杂的设置。 Robolectric,PowerMockito 基于规则的配置。
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21)
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*"})
// Using "PrepareOnlyThis" prevents powermock from trying to instrument the whole hierarchy,
// part of which we've ignored (android.os.* in this case)
@PrepareOnlyThisForTest({ServiceCallbackBase.class}) // this class extends Handler,
// so we need PrepareOnlyThis. It also has some final methods we need to verify()
public class ServiceBaseTests {
private class Foo {
// nothing
}
@Rule
public PowerMockRule rule = new PowerMockRule();
private ServiceCallbackBase<Object, Foo> setupCallback( boolean hasValidContext, boolean allContextsCanceled ) {
ServiceCallbackBase<Object, Foo> callback = PowerMockito.mock( ServiceCallbackBase.class );
// EDIT: I have converted these to PowerMockito.doReturn()s to no avail.
PowerMockito.when( callback.hasValidContext() ).thenReturn( hasValidContext );
PowerMockito.when( callback.allContextsAreCanceled( any( Message.class ) ) ).thenReturn( allContextsCanceled );
PowerMockito.doNothing().when( callback ).preSendMessage( any( Message.class ) );
return callback;
}
应该很常规。但是每当我尝试在这些“回调”模拟实例之一上调用 verify
时,例如:
private void test_notifyCallback( boolean isFromCache ) {
ServiceCallbackBase<Object, Foo> callback = setupCallback( true, false );
uut.addHandler( TestEnum.FOO, callback );
uut.addHandler( TestEnum.BAR, PowerMockito.mock( ServiceCallbackBase.class ) );
uut.addHandler( TestEnum.BAZ, PowerMockito.mock( ServiceCallbackBase.class ) );
Response<Foo> foo = new Response<>( new Foo(), new ResponseStatus( 0, "Error" ) );
uut.handleCallBack( TestEnum.FOO, foo, isFromCache );
ArgumentCaptor<Message> captor = ArgumentCaptor.forClass( Message.class );
// this line throws the error.
verify( callback ).preSendMessage( captor.capture() );
assertThat( captor.getValue().what ).isEqualTo( TestEnum.FOO.ordinal() );
assertThat( captor.getValue().obj ).isEqualTo( foo );
assertThat( captor.getValue().arg1 ).isEqualTo( isFromCache ? 1 : 0 );
}
我收到这样的错误:
org.mockito.exceptions.misusing.NotAMockException:
Argument passed to verify() is of type ServiceCallbackBase$$EnhancerByMockitoWithCGLIB$$9acf906b and is not a mock!
Make sure you place the parenthesis correctly!
See the examples of correct verifications:
verify(mock).someMethod();
verify(mock, times(10)).someMethod();
verify(mock, atLeastOnce()).someMethod();
它显然已经被 mockito“增强”了,而且 PowerMock 没有 verify() 方法来代替 Mockito.verify()
... 是什么给了?
编辑:这在某些方面更容易混淆,而在某些方面则更少混淆。
我正在构建另一个测试类来测试 ServiceCallbackBase 本身。如果我从该类中删除测试,这些测试就会通过。不同类中的以下代码 fragment 导致上述测试失败。
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21)
public class ServiceCallbackBaseTests {
@Test
public void test_nothing(){
}
private ServiceCallbackBase<Object, String> uutSpy;
@Before
public void setup(){
uutSpy = mock( ServiceCallbackBase.class );
}
}
最佳答案
我无法构建您的示例,但我设法编写了这个产生非常相似问题的小型测试:
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21)
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*"})
@PrepareOnlyThisForTest({ServiceCallbackBase.class, Dummy.class})
public class MainActivityTest {
@Rule
public PowerMockRule rule = new PowerMockRule();
@Test
public void test1() throws Exception {
try {
//This Mockito.withSettings() thing is important to make the test fail!
ServiceCallbackBase callback = PowerMockito.mock( ServiceCallbackBase.class, Mockito.withSettings());
callback.dispatchMessage(null);
Mockito.verify(callback).dispatchMessage(null);
} catch (Exception e){
e.printStackTrace();
Assert.fail();
}
}
}
(注意 Mockito.withSettings(),我不知道为什么会导致测试失败)
打印:
org.mockito.exceptions.misusing.NotAMockException:
Argument passed to verify() is of type ServiceCallbackBase$$EnhancerByMockitoWithCGLIB$$62776c54 and is not a mock!
Make sure you place the parenthesis correctly!
......
好吧,这绝对看起来是一个类加载问题,mockito 正在比较由 Powermock 加载的 ServiceCallbackBase$$EnhancerByMockitoWithCGLIB$$等..
然后,我设法使测试工作,只需将 "org.powermock.*"
添加到行 @PowerMockIgnore...
这是:
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*", "org.powermock.*"})
这个简单的改变让我的测试成功了,我真的希望你的也能成功。
关于android - PowerMockito:模拟的 NotAMockException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34343601/
我只想模拟类中的一个静态方法,所有其他方法都应该像真实对象一样工作。 代码: public class ArrTest { public static int myMethod (int ar
我在使用 PowerMockito 模拟 whenNew(File.class) 时遇到问题。这是我要测试的方法: public void foo() { File tmpFile = new
我正在尝试模拟静态方法 Thread.sleep(1);在调用时返回 InterruptedException。我发现了一个似乎解决了我的问题的 SO 问题,但是在将我的代码设置为与该问题的答案相同后
我似乎无法克服这个问题。我正在尝试模拟一个带有 1 个参数的重载方法 class ClassWithOverloadedMethod { private boolean isValid(Cla
考虑以下(简化的)枚举: MyEnum { ONE public int myMethod() { // Some complex stuff return 1
当我尝试使用字符串输入模拟静态方法时,当我给出特定字符串时,模拟 stub 就会被执行,但是当我使用anyString()时,它不会按预期工作。 public class Foo { publ
我在一些单元测试中使用 PowerMockito,但遇到了问题。我正在尝试测试一种创建一系列线程并运行它们的方法。在每个线程内,创建一个我需要期望的对象,并返回我自己的模拟对象(它发出 http 请求
我有以下类,在构造函数中,我调用另一个构造函数来构建该类的字段: public class ClassIWantToTest { private ClassIWantToMock anothe
您好,我有这个 PowerMockito 测试,它会抛出 UnfinishedStubbingException @RunWith(PowerMockRunner.class) @PrepareFor
我有一些静态方法可以使用 Mockito + PowerMock 进行模拟。一切都是正确的,直到我尝试模拟一个只抛出异常的静态方法(并且什么都不做)。 我的测试类是这样的: 顶部: @RunWith(
测试片段: void somefunction() { try { aMock.doSomething(); bMock.another(); } finally {
我正在尝试使用 PowerMockito 捕获输入中传递给模拟对象的参数,这是代码: //I create a mock object ClassMocked mock = PowerMockito.
要测试的类 public class Randomer { public int get() { return (int) Math.random() + 1; } }
我正在编写 JUnit 测试以验证静态方法 (MyClass.myMethod()) 从未在方法流中被调用。我试着做这样的事情: PowerMockito.verifyStatic(Mockito
我想检查是否使用一组特定的参数调用了特定的构造函数,并检查参数是否正确。 该类使用 java (...) 的任意参数,如下所示: public class MyClass{ public My
我正在测试一个运行直到AtomicBoolean值发生变化的任务类。我使用 PowerMockito 是因为 AtomicBoolean 实例的 get() 方法是 final方法。 MyTaskTe
我有以下 jar : javax.servlet-api-3.1.9.jar junit-4.10.jar mockito-all-1.10.19.jar mockito-core-1.10.19.j
在单元测试中,如何忽略对方法的调用,如下所示? void methodToBeTested(){ // do some stuff methodToBeSkipped(parame
我正在尝试测试一些严重依赖静态方法调用的遗留代码。 基本上,我有一个类 A,它有方法 b() 和 c()。 A.b() 返回 void,A.c() 返回一个值。 如果真正的 A.b() 被调用,被测类
我正在使用 PowerMockito 测试静态方法,但不幸的是得到了ClassCastException。注意完全确定我是否没有遵循语法规则。 待测试代码: List proxyPrefs = (Li
我是一名优秀的程序员,十分优秀!