PowerMockito.doReturn returns null

元气小坏坏 提交于 2019-12-04 06:22:14

问题


This is my class under test:

public class A {

public Integer callMethod(){
  return someMethod();
}


private Integer someMethod(){
  //Some Code
  HttpPost httpPost = new HttpPost(oAuthMessage.URL);
  //Some Code
  HttpClient httpClient = new DefaultHttpClient();
  HttpResponse httpResponse = httpClient.execute(httpPost); ------1
  Integer code = httpResponse.getStatusLine().getStatusCode(); ---2
  return code;
}

Now I want to mock the line 1 & 2 & return a mock HttpResponse & code.

I have tried this but failed:

@RunWith(PowerMockRunner.class)
@PowerMockIgnore("javax.crypto.*")
public class TestA {

//Spying some things here & Injecting them

@Test
public void testA() {


   DefaultHttpClient defaultHttpClientMock = PowerMockito.mock(DefaultHttpClient.class);
   HttpResponse httpResponse = PowerMockito.mock(HttpResponse.class, RETURNS_DEEP_STUBS);
   HttpClient httpClient = PowerMockito.mock(HttpClient.class);
   //HttpResponse httpResponseMock    PowerMockito.mock(HttpResponse.class);
   HttpPost httpPost = PowerMockito.mock(HttpPost.class);
   PowerMockito.whenNew(DefaultHttpClient.class).withNoArguments().thenReturn(defaultHttpClientMock);
   PowerMockito.doReturn(httpResponse).when(httpClient).execute(httpPost);      //Returns null. It never returns httpResponse.
   PowerMockito.when(httpResponse.getStatusLine().getStatusCode()).thenReturn(anyInt());
   //call the method
}

PowerMockito.doReturn(httpResponse).when(httpClient).execute(httpPost) always returns null. I want it to return the mock object of HttpResponse. I have read other posts related to this error but not sure what to do in my case. Can anyone help?


回答1:


Instead of

PowerMockito.doReturn(httpResponse).when(httpClient).execute(httpPost);

you should use

PowerMockito.when(httpResponse.execute(httpPost)).thenReturn(httpResponse);

You also have some problems in your test : incorrect mocking constructor and you don't need httpResponse at all.

Update This code works correctly to me:

@RunWith(PowerMockRunner.class)
@PowerMockIgnore("javax.crypto.*")
@PrepareForTest({ HttpPost.class, DefaultHttpClient.class, A.class })
public class TestA {

    @Test
    public void testA() throws Exception {
        HttpPost httpPost = Mockito.mock(HttpPost.class);
        PowerMockito.whenNew(HttpPost.class).withArguments(oAuthMessage.URL).thenReturn(httpPost);

        DefaultHttpClient defaultHttpClientMock = PowerMockito.mock(DefaultHttpClient.class);
        HttpResponse httpResponse = PowerMockito.mock(HttpResponse.class);
        PowerMockito.whenNew(DefaultHttpClient.class).withNoArguments().thenReturn(defaultHttpClientMock);

        PowerMockito.when(defaultHttpClientMock.execute(httpPost)).thenReturn(httpResponse);

        StatusLine statusLine = PowerMockito.mock(StatusLine.class);

        PowerMockito.when(httpResponse.getStatusLine()).thenReturn(statusLine);
        Integer expected = new Integer(0);
        PowerMockito.when(statusLine.getStatusCode()).thenReturn(expected);

        A a = new A();
        Assert.assertEquals(expected, a.callMethod());
    }
}


来源:https://stackoverflow.com/questions/38604848/powermockito-doreturn-returns-null

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!