use of com.azure.android.core.rest.Response in project azure-sdk-for-android by Azure.
the class RestProxyTests method headRequest.
@Test
public void headRequest() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<Void> cbResult = new CallbackResult<>();
createService(Service10.class).head(new Callback<Response<Void>>() {
@Override
public void onSuccess(Response<Void> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "headRequest");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<Void> response = cbResult.response;
Assertions.assertNotNull(response);
Assertions.assertNull(response.getValue());
}
}
use of com.azure.android.core.rest.Response in project azure-sdk-for-android by Azure.
the class RestProxyTests method getRequestWithAnythingWithEncodedPathParamWithPercent20.
@Test
public void getRequestWithAnythingWithEncodedPathParamWithPercent20() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinJSON> cbResult = new CallbackResult<>();
createService(Service5.class).getAnythingWithEncodedPathParam("with%20path%20param", 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, "getRequestWithAnythingWithEncodedPathParamWithPercent20");
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.rest.Response in project azure-sdk-for-android by Azure.
the class RestProxyTests method postUrlFormEncoded.
@Test
public void postUrlFormEncoded() {
CountDownLatch latch = new CountDownLatch(1);
CallbackResult<HttpBinFormDataJSON> cbResult = new CallbackResult<>();
Service26 service = createService(Service26.class);
service.postEncodedForm("Foo", "123", "foo@bar.com", HttpBinFormDataJSON.PizzaSize.LARGE, Arrays.asList("Bacon", "Onion"), new Callback<Response<HttpBinFormDataJSON>>() {
@Override
public void onSuccess(Response<HttpBinFormDataJSON> response) {
cbResult.response = response;
latch.countDown();
}
@Override
public void onFailure(Throwable error) {
cbResult.error = error;
latch.countDown();
}
});
awaitOnLatch(latch, "postUrlFormEncoded");
if (cbResult.error != null) {
Assertions.fail(cbResult.error);
} else {
final Response<HttpBinFormDataJSON> response = cbResult.response;
assertNotNull(response);
assertEquals(200, response.getStatusCode());
HttpBinFormDataJSON result = response.getValue();
assertNotNull(result);
assertNotNull(result.form());
assertEquals("Foo", result.form().customerName());
assertEquals("123", result.form().customerTelephone());
assertEquals("foo@bar.com", result.form().customerEmail());
assertEquals(HttpBinFormDataJSON.PizzaSize.LARGE, result.form().pizzaSize());
assertEquals(2, result.form().toppings().size());
assertEquals("Bacon", result.form().toppings().get(0));
assertEquals("Onion", result.form().toppings().get(1));
}
}
use of com.azure.android.core.rest.Response in project azure-sdk-for-android by Azure.
the class ChatThreadAsyncClientTest method canUpdateExistingMessageWithResponse.
@ParameterizedTest
@MethodSource("com.azure.android.core.test.TestBase#getHttpClients")
public void canUpdateExistingMessageWithResponse(HttpClient httpClient) throws ExecutionException, InterruptedException {
setupTest(httpClient);
SendChatMessageOptions messageRequest = super.sendMessageOptions();
UpdateChatMessageOptions updateMessageRequest = super.updateMessageOptions();
CompletableFuture<Response<SendChatMessageResult>> completableFuture1 = this.chatThreadClient.sendMessageWithResponse(messageRequest, null);
Response<SendChatMessageResult> sendResponse = completableFuture1.get();
assertNotNull(sendResponse);
final String messageId = sendResponse.getValue().getId();
assertNotNull(messageId);
CompletableFuture<Response<Void>> completableFuture2 = this.chatThreadClient.updateMessageWithResponse(messageId, updateMessageRequest, null);
Response<Void> updateResponse = completableFuture2.get();
assertNotNull(updateResponse);
assertEquals(204, updateResponse.getStatusCode());
CompletableFuture<Response<ChatMessage>> completableFuture3 = chatThreadClient.getMessageWithResponse(messageId, null);
Response<ChatMessage> getResponse = completableFuture3.get();
assertNotNull(getResponse);
ChatMessage message = getResponse.getValue();
assertEquals(message.getContent().getMessage(), updateMessageRequest.getContent());
assertEquals(message.getMetadata().containsKey("tags"), false);
assertEquals(message.getMetadata().get("deliveryMode"), updateMessageRequest.getMetadata().get("deliveryMode"));
assertEquals(message.getMetadata().get("onedriveReferences"), updateMessageRequest.getMetadata().get("onedriveReferences"));
assertEquals(message.getMetadata().get("amsreferences"), messageRequest.getMetadata().get("amsreferences"));
assertEquals(message.getMetadata().get("key"), messageRequest.getMetadata().get("key"));
}
use of com.azure.android.core.rest.Response in project azure-sdk-for-android by Azure.
the class ChatThreadAsyncClientTest method canSendThenGetMessageWithResponse.
@ParameterizedTest
@MethodSource("com.azure.android.core.test.TestBase#getHttpClients")
public void canSendThenGetMessageWithResponse(HttpClient httpClient) throws ExecutionException, InterruptedException {
setupTest(httpClient);
SendChatMessageOptions messageRequest = super.sendMessageOptions();
CompletableFuture<Response<SendChatMessageResult>> completableFuture1 = this.chatThreadClient.sendMessageWithResponse(messageRequest, null);
Response<SendChatMessageResult> response1 = completableFuture1.get();
assertNotNull(response1);
final String messageId = response1.getValue().getId();
CompletableFuture<Response<ChatMessage>> completableFuture2 = this.chatThreadClient.getMessageWithResponse(messageId, null);
Response<ChatMessage> response2 = completableFuture2.get();
assertNotNull(response2);
final ChatMessage message = response2.getValue();
assertEquals(message.getContent().getMessage(), messageRequest.getContent());
assertEquals(message.getType(), messageRequest.getType());
assertEquals(message.getSenderDisplayName(), messageRequest.getSenderDisplayName());
assertEquals(message.getMetadata(), messageRequest.getMetadata());
}
Aggregations