private LowLevelHttpResponse getResponse(String endpoint,
int status, String body, String content_type) {
MockLowLevelHttpResponse response = new MockLowLevelHttpResponse();
response.addHeader("Content-Length",
String.valueOf(body.length()));
response.setStatusCode(status);
if (content_type != null) {
response.setContentType(content_type);