use of fixtures.header.models.HeaderResponseLongHeaders in project autorest.java by Azure.
the class HeaderOperationsTests method responseLong.
@Test
public void responseLong() throws Exception {
lock = new CountDownLatch(1);
client.headers().responseLongWithServiceResponseAsync("positive").subscribe(new Action1<ServiceResponseWithHeaders<Void, HeaderResponseLongHeaders>>() {
@Override
public void call(ServiceResponseWithHeaders<Void, HeaderResponseLongHeaders> response) {
Headers headers = response.response().headers();
if (headers.get("value") != null) {
Assert.assertEquals("105", headers.get("value"));
lock.countDown();
}
}
}, new Action1<Throwable>() {
@Override
public void call(Throwable throwable) {
fail();
}
});
Assert.assertTrue(lock.await(1000, TimeUnit.MILLISECONDS));
lock = new CountDownLatch(1);
client.headers().responseLongWithServiceResponseAsync("negative").subscribe(new Action1<ServiceResponseWithHeaders<Void, HeaderResponseLongHeaders>>() {
@Override
public void call(ServiceResponseWithHeaders<Void, HeaderResponseLongHeaders> response) {
Headers headers = response.response().headers();
if (headers.get("value") != null) {
Assert.assertEquals("-2", headers.get("value"));
lock.countDown();
}
}
}, new Action1<Throwable>() {
@Override
public void call(Throwable throwable) {
fail();
}
});
Assert.assertTrue(lock.await(1000, TimeUnit.MILLISECONDS));
}
Aggregations