单元测试,自定义用于retrofit2请求的Call类:Reponse具有私有访问权限

时间:2016-08-19 08:25:16

标签: java android unit-testing mockito retrofit2

当我创建自定义Call类时,我无法返回Response,因为Response类是final。有没有解决方法呢?

public class TestCall implements Call<PlacesResults> {

    String fileType;
    String getPlacesJson = "getplaces.json";
    String getPlacesUpdatedJson = "getplaces_updated.json";

    public TestCall(String fileType) {
        this.fileType = fileType;
    }

    @Override
    public Response execute() throws IOException {
        String responseString;
        InputStream is;
        if (fileType.equals(getPlacesJson)) {
            is = InstrumentationRegistry.getContext().getAssets().open(getPlacesJson);
        } else {
            is = InstrumentationRegistry.getContext().getAssets().open(getPlacesUpdatedJson);
        }

        PlacesResults placesResults= new Gson().fromJson(new InputStreamReader(is), PlacesResults.class);
        //CAN"T DO IT
        return new Response<PlacesResults>(null, placesResults, null);
    }

    @Override
    public void enqueue(Callback callback) {

    }

//default methods here
//....
}

在我的单元测试类中,我想像这样使用它:

Mockito.when(mockApi.getNearbyPlaces(eq("testkey"), Matchers.anyString(), Matchers.anyInt())).thenReturn(new TestCall("getplaces.json"));
GetPlacesAction action = new GetPlacesAction(getContext().getContentResolver(), mockEventBus, mockApi, "testkey");
action.downloadPlaces();

我的downloadPlaces()方法如下:

public void downloadPlaces() {
    Call<PlacesResults> call = api.getNearbyPlaces(webApiKey, LocationLocator.getInstance().getLastLocation(), 500);

    PlacesResults jsonResponse = null;
    try {
        Response<PlacesResults> response = call.execute();
        Timber.d("response " + response);
        jsonResponse = response.body();
        if (jsonResponse == null) {
            throw new IllegalStateException("Response is null");
        }
    } catch (UnknownHostException e) {
        events.sendError(EventBus.ERROR_NO_CONNECTION);
    } catch (Exception e) {
        events.sendError(EventBus.ERROR_NO_PLACES);
        return;
    }

    //TODO: some database operations
}

1 个答案:

答案 0 :(得分:1)

在更深入地查看retrofit2响应类后,我发现有一种静态方法可以满足我的需要。所以,我只是改变了这一行:

return new Response<PlacesResults>(null, placesResults, null);

为:

return Response.success(placesResults);

现在一切正常。