use of com.azure.android.core.test.implementation.entities.HttpBinJSON in project azure-sdk-for-android by Azure.
the class RestProxyTests method service19PutWithBodyParamApplicationOctetStreamContentTypeAndByteArrayBodyWithNonEmptyBody.
@Test
public void service19PutWithBodyParamApplicationOctetStreamContentTypeAndByteArrayBodyWithNonEmptyBody() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinJSON> cbResult = new CallbackResult<>();
createService(Service19.class).putWithBodyParamApplicationOctetStreamContentTypeAndByteArrayBody(new byte[] { 0, 1, 2, 3, 4 }, new Callback<Response<HttpBinJSON>>() {
@Override
public void onSuccess(Response<HttpBinJSON> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "service19PutWithBodyParamApplicationOctetStreamContentTypeAndByteArrayBodyWithEmptyBody");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<HttpBinJSON> response = cbResult.response;
HttpBinJSON json = response.getValue();
Assertions.assertNotNull(json);
assertEquals(new String(new byte[] { 0, 1, 2, 3, 4 }), json.data());
}
}
use of com.azure.android.core.test.implementation.entities.HttpBinJSON in project azure-sdk-for-android by Azure.
the class MockHttpClient method send.
@Override
public void send(HttpRequest request, CancellationToken cancellationToken, HttpCallback httpCallback) {
HttpResponse response = null;
try {
final URL requestUrl = request.getUrl();
final String requestHost = requestUrl.getHost();
final String contentType = request.getHeaders().getValue("Content-Type");
if ("localhost".equalsIgnoreCase(requestHost)) {
final String requestPath = requestUrl.getPath();
final String requestPathLower = requestPath.toLowerCase();
if (requestPathLower.startsWith("/anything")) {
if ("HEAD".equals(request.getHttpMethod().name())) {
response = new MockHttpResponse(request, 200, new byte[0]);
} else {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.headers(toMap(request.getHeaders()));
response = new MockHttpResponse(request, 200, json);
}
} else if (requestPathLower.startsWith("/bytes/")) {
final String byteCountString = requestPath.substring("/bytes/".length());
final int byteCount = Integer.parseInt(byteCountString);
HttpHeaders newHeaders = new HttpHeaders(RESPONSE_HEADERS).put("Content-Type", "application/octet-stream").put("Content-Length", Integer.toString(byteCount));
response = new MockHttpResponse(request, 200, newHeaders, byteCount == 0 ? null : new byte[byteCount]);
} else if (requestPathLower.startsWith("/base64urlbytes/")) {
final String byteCountString = requestPath.substring("/base64urlbytes/".length());
final int byteCount = Integer.parseInt(byteCountString);
final byte[] bytes = new byte[byteCount];
for (int i = 0; i < byteCount; ++i) {
bytes[i] = (byte) i;
}
final Base64Url base64EncodedBytes = bytes.length == 0 ? null : Base64Url.encode(bytes);
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, base64EncodedBytes);
} else if (requestPathLower.equals("/base64urllistofbytes")) {
final List<String> base64EncodedBytesList = new ArrayList<>();
for (int i = 0; i < 3; ++i) {
final int byteCount = (i + 1) * 10;
final byte[] bytes = new byte[byteCount];
for (int j = 0; j < byteCount; ++j) {
bytes[j] = (byte) j;
}
base64EncodedBytesList.add(Base64Url.encode(bytes).toString());
}
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, base64EncodedBytesList);
} else if (requestPathLower.equals("/base64urllistoflistofbytes")) {
final List<List<String>> result = new ArrayList<>();
for (int i = 0; i < 2; ++i) {
final List<String> innerList = new ArrayList<>();
for (int j = 0; j < (i + 1) * 2; ++j) {
final int byteCount = (j + 1) * 5;
final byte[] bytes = new byte[byteCount];
for (int k = 0; k < byteCount; ++k) {
bytes[k] = (byte) k;
}
innerList.add(Base64Url.encode(bytes).toString());
}
result.add(innerList);
}
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, result);
} else if (requestPathLower.equals("/base64urlmapofbytes")) {
final Map<String, String> result = new HashMap<>();
for (int i = 0; i < 2; ++i) {
final String key = Integer.toString(i);
final int byteCount = (i + 1) * 10;
final byte[] bytes = new byte[byteCount];
for (int j = 0; j < byteCount; ++j) {
bytes[j] = (byte) j;
}
result.put(key, Base64Url.encode(bytes).toString());
}
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, result);
} else if (requestPathLower.equals("/datetimerfc1123")) {
final DateTimeRfc1123 now = new DateTimeRfc1123(OffsetDateTime.ofInstant(Instant.ofEpochSecond(0), ZoneOffset.UTC));
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, now.toString());
} else if (requestPathLower.equals("/unixtime")) {
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, 0);
} else if (requestPathLower.equals("/delete")) {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.data(createHttpBinResponseDataForRequest(request));
response = new MockHttpResponse(request, 200, json);
} else if (requestPathLower.equals("/get")) {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.headers(toMap(request.getHeaders()));
response = new MockHttpResponse(request, 200, json);
} else if (requestPathLower.equals("/patch")) {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.data(createHttpBinResponseDataForRequest(request));
response = new MockHttpResponse(request, 200, json);
} else if (requestPathLower.equals("/post")) {
if (contentType != null && contentType.contains("x-www-form-urlencoded")) {
Map<String, String> parsed = bodyToMap(request);
final HttpBinFormDataJSON json = new HttpBinFormDataJSON();
HttpBinFormDataJSON.Form form = new HttpBinFormDataJSON.Form();
form.customerName(parsed.get("custname"));
form.customerEmail(parsed.get("custemail"));
form.customerTelephone(parsed.get("custtel"));
form.pizzaSize(HttpBinFormDataJSON.PizzaSize.valueOf(parsed.get("size")));
form.toppings(Arrays.asList(parsed.get("toppings").split(",")));
json.form(form);
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, json);
} else {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.data(createHttpBinResponseDataForRequest(request));
json.headers(toMap(request.getHeaders()));
response = new MockHttpResponse(request, 200, json);
}
} else if (requestPathLower.equals("/put")) {
final HttpBinJSON json = new HttpBinJSON();
json.url(cleanseUrl(requestUrl));
json.data(createHttpBinResponseDataForRequest(request));
json.headers(toMap(request.getHeaders()));
response = new MockHttpResponse(request, 200, RESPONSE_HEADERS, json);
} else if (requestPathLower.startsWith("/status/")) {
final String statusCodeString = requestPathLower.substring("/status/".length());
final int statusCode = Integer.parseInt(statusCodeString);
response = new MockHttpResponse(request, statusCode);
}
} else if ("echo.org".equalsIgnoreCase(requestHost)) {
response = new MockHttpResponse(request, 200, new HttpHeaders(request.getHeaders()), request.getBody());
}
} catch (Exception ex) {
throw new RuntimeException(ex);
}
if (response == null) {
response = new MockHttpResponse(request, 500);
}
httpCallback.onSuccess(response);
}
use of com.azure.android.core.test.implementation.entities.HttpBinJSON in project azure-sdk-for-android by Azure.
the class RestProxyTests method getRequestWithAnythingWithPathParamWithSpace.
@Test
public void getRequestWithAnythingWithPathParamWithSpace() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinJSON> cbResult = new CallbackResult<>();
createService(Service5.class).getAnythingWithPathParam("with path param", new Callback<Response<HttpBinJSON>>() {
@Override
public void onSuccess(Response<HttpBinJSON> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "getRequestWithAnythingWithPathParamWithSpace");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<HttpBinJSON> response = cbResult.response;
Assertions.assertNotNull(response);
HttpBinJSON json = response.getValue();
assertNotNull(json);
assertMatchWithHttpOrHttps("localhost/anything/with path param", json.url());
}
}
use of com.azure.android.core.test.implementation.entities.HttpBinJSON in project azure-sdk-for-android by Azure.
the class RestProxyTests method service19PutWithBodyParamApplicationJsonContentTypeAndCharsetAndStringBodyWithNonEmptyBody.
@Test
public void service19PutWithBodyParamApplicationJsonContentTypeAndCharsetAndStringBodyWithNonEmptyBody() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinJSON> cbResult = new CallbackResult<>();
createService(Service19.class).putWithBodyParamApplicationJsonContentTypeAndCharsetAndStringBody("soups and stuff", new Callback<Response<HttpBinJSON>>() {
@Override
public void onSuccess(Response<HttpBinJSON> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "service19PutWithBodyParamApplicationJsonContentTypeAndCharsetAndStringBodyWithNonEmptyBody");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<HttpBinJSON> response = cbResult.response;
HttpBinJSON json = response.getValue();
Assertions.assertNotNull(json);
assertEquals("\"soups and stuff\"", json.data());
}
}
use of com.azure.android.core.test.implementation.entities.HttpBinJSON in project azure-sdk-for-android by Azure.
the class RestProxyTests method service19PutWithHeaderApplicationOctetStreamContentTypeAndByteArrayBodyWithNullBody.
@Test
public void service19PutWithHeaderApplicationOctetStreamContentTypeAndByteArrayBodyWithNullBody() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinJSON> cbResult = new CallbackResult<>();
createService(Service19.class).putWithHeaderApplicationOctetStreamContentTypeAndByteArrayBody(null, new Callback<Response<HttpBinJSON>>() {
@Override
public void onSuccess(Response<HttpBinJSON> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "service19PutWithHeaderApplicationOctetStreamContentTypeAndByteArrayBodyWithNullBody");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<HttpBinJSON> response = cbResult.response;
HttpBinJSON json = response.getValue();
Assertions.assertNotNull(json);
assertEquals("", json.data());
}
}
Aggregations