无需详细介绍这样做的好处,只需要帮助弄清楚为什么以下测试代码不起作用!在这一点上,这更像是一种学习练习。
只是尝试使用PowerMockito为URL类创建一个模拟,并为其定义一些行为。代码如下:
package com.icidigital.services
import com.icidigital.services.impl.WeatherServiceImpl
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.powermock.api.mockito.PowerMockito
import org.powermock.core.classloader.annotations.PrepareForTest
import org.powermock.modules.junit4.PowerMockRunner
/**
* Created by apil.tamang on 7/27/15.
* I could not get the setup to finish! Failed!
*/
@PrepareForTest(URL.class)
@RunWith(PowerMockRunner.class)
class WeatherServiceImplTest {
URL mockURL;
URLConnection mockConn;
@Before
public void setUp(){
byte[] data = "123,456".getBytes();
InputStream input = new ByteArrayInputStream(data);
//define and set behavior for mockConn
mockConn=PowerMockito.mock(HttpURLConnection.class);
//Mockito.doCallRealMethod().when(mockConn).getResponseCode();
//Mockito.when(mockConn.getResponseCode()).thenCallRealMethod().thenReturn(200);
//Mockito.when(mockConn.getInputStream()).thenReturn(input);
//define and set behavior for mockURLObj
mockURL=PowerMockito.mock(URL.class);
PowerMockito.when(mockURL.openConnection()).thenReturn(mockConn);
}
@Test
public void testSetup(){
WeatherServiceImpl testObj=new WeatherServiceImpl(mockURL);
String response=testObj.run("foobar");
PowerMockito.verifyNew(mockURL);
}
}
抛出以下异常堆栈。特别是,这个测试的linke 39,这是我的位置:PowerMockito.when(mockURL.openConnection()). thenBack(mockConn);抛出错误。请注意,URL是一个最终类,这就是我正在使用Powermockito。
java.lang.AbstractMethodError
at java.net.URL.openConnection(URL.java:971)
at java_net_URL$openConnection.call(Unknown Source)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:45)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:108)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:112)
at com.icidigital.services.WeatherServiceImplTest.setUp(WeatherServiceImplTest.groovy:39)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.junit.internal.runners.MethodRoadie.runBefores(MethodRoadie.java:129)
at org.junit.internal.runners.MethodRoadie.runBeforesThenTestThenAfters(MethodRoadie.java:93)
URL 是最终类。要模拟最终类,我们可以将PowerMockito与Junit一起使用。要模拟最终类,我们需要使用@RunWith(PowerMockRunner.class)和@PrepareForTest({ URL.class })来注释测试类
@RunWith(PowerMockRunner.class)
@PrepareForTest({ URL.class })
public class Test {
@Test
public void test() throws Exception {
URL url = PowerMockito.mock(URL.class);
HttpURLConnection huc = Mockito.mock(HttpURLConnection.class);
PowerMockito.when(url.openConnection()).thenReturn(huc);
assertTrue(url.openConnection() instanceof HttpURLConnection);
}
}
但是在PowerMockito.when(url.openConnection()).thenReturn(huc)行中;引发以下错误:
java.lang.AbstractMethodError
at javahtml" target="_blank">.net.URL.openConnection(URL.java:971)
at java_net_URL$openConnection.call(Unknown Source)
为了消除这个错误,我们可以修改我们的测试类,如下所示:
@RunWith(PowerMockRunner.class)
@PrepareForTest({ URL.class })
public class Test {
@Test
public void test() throws Exception {
public class UrlWrapper {
URL url;
public UrlWrapper(String spec) throws MalformedURLException {
url = new URL(spec);
}
public URLConnection openConnection() throws IOException {
return url.openConnection();
}
}
UrlWrapper url = Mockito.mock(UrlWrapper.class);
HttpURLConnection huc = Mockito.mock(HttpURLConnection.class);
PowerMockito.when(url.openConnection()).thenReturn(huc);
assertTrue(url.openConnection() instanceof HttpURLConnection);
}
}
访问: https://programmingproblemsandsolutions.blogspot.com/2019/04/abstractmethoderror-is-thrown-on.html
我不是很确定,但尝试使用Mockito来模拟方法调用。看来我已经遇到了这样的问题,我认为PowerMockito方面存在一些错误。
我记得,如果你愿意
Mockito.when(mockURL.openConnection()).thenReturn(mockConn);
而不是
PowerMockito.when(mockURL.openConnection()).thenReturn(mockConn);
它将正常工作。
或者如果它是错误的,请尝试使用替代方法,例如
Mockito/PowerMockito.doReturn(mockConn).when(mockUrl).openConnection();
如果其中的一些能起作用,原因似乎是PowerMockito开发团队未处理的情况。并且power mockito调用实方法以及或代替模拟方法。
好吧,这并不是一个确切的解决方案,我现在只是升级了一个不同的错误,但至少恼人的“AbstractMethodError”现在已经消失了。
我所做的是为prepClassForTest注释添加以下类:
....
@PrepareForTest({URL.class, URLConnection.class, WeatherServiceImplTest.class} )
...
有点怀疑,但下面的帖子证实了这种怀疑:powermock谜题
不管怎样,祝我好运。嘲笑我的第二天,我都搞砸了,准备丢球。。。
我试图使用PowerMockito在我正在测试的代码中模拟java.net.URL类的创建。基本上,我希望防止真正的HTTP请求发生,而是1)在请求发出时检查数据,2)在模拟响应中提供我自己的测试数据。这就是我正在尝试的: 我要测试的代码如下所示: 在前面的测试场景中,我模拟了wlInvokeUrlString以匹配“MyURLString”。我还尝试使用whenNew行的各种其他形式,尝试注入模
我有以下测试代码:
为了测试我编码的私有方法之一,我需要模拟一个单例。 用PowerMockito测试了几种方法后: 我在UtilDatabaseEnrichissement的absract父类中将配置文件定义为常量,并在构造函数中使用。 我怎么测试这部分呢?
我有最后一节课。 org.mockito.exceptions.base.MockitoExc0019:不能模拟/间谍类改造2.响应Mockito不能模拟/监视以下内容:-最终类-匿名类-原始类型 如何使用Powermockito模拟响应类?
我有一门课看起来像这样: 我想使用Mockito和Powermock为此编写一个单元测试。我知道我可以这样模仿私有方法: 但是我如何告诉它抛出异常呢?我知道会是这样的: 那里有什么? 请注意,异常是一个私有内部类,因此我不能只执行,因为从单元测试中无法访问。