use of com.github.ljtfreitas.julian.CollectionResponseT in project julian-http-client by ljtfreitas.
the class SetResponseTTest method bindNullCollection.
@Test
void bindNullCollection() {
when(endpoint.returnType()).thenReturn(JavaType.parameterized(Collection.class, String.class));
Promise<Response<Collection<String>>> promise = Promise.done(Response.done(null));
ResponseFn<Collection<String>, Collection<Object>> fn = new CollectionResponseT().bind(endpoint, new ObjectResponseT<Collection<Object>>().bind(endpoint, null));
Set<Object> set = responseT.bind(endpoint, fn).join(promise, Arguments.empty());
assertTrue(set.isEmpty());
}
use of com.github.ljtfreitas.julian.CollectionResponseT in project julian-http-client by ljtfreitas.
the class TraversableResponseTTest method bind.
@Test
void bind() {
when(endpoint.returnType()).thenReturn(JavaType.parameterized(Collection.class, String.class));
Collection<String> values = java.util.List.of("one", "two", "three");
Promise<Response<Collection<String>>> promise = Promise.done(Response.done(values));
ResponseFn<Collection<String>, Collection<Object>> fn = new CollectionResponseT().bind(endpoint, new ObjectResponseT<Collection<Object>>().bind(endpoint, null));
Traversable<Object> traversable = responseT.bind(endpoint, fn).join(promise, Arguments.empty());
assertTrue(traversable.containsAll(values));
}
use of com.github.ljtfreitas.julian.CollectionResponseT in project julian-http-client by ljtfreitas.
the class VectorResponseTTest method bindNullCollection.
@Test
void bindNullCollection() {
when(endpoint.returnType()).thenReturn(JavaType.parameterized(Collection.class, String.class));
Promise<Response<Collection<String>>> promise = Promise.done(Response.done(null));
ResponseFn<Collection<String>, Collection<Object>> fn = new CollectionResponseT().bind(endpoint, new ObjectResponseT<Collection<Object>>().bind(endpoint, null));
Vector<Object> vector = responseT.bind(endpoint, fn).join(promise, Arguments.empty());
assertTrue(vector.isEmpty());
}
use of com.github.ljtfreitas.julian.CollectionResponseT in project julian-http-client by ljtfreitas.
the class IndexedSeqResponseTTest method bind.
@Test
void bind() {
when(endpoint.returnType()).thenReturn(JavaType.parameterized(Collection.class, String.class));
Collection<String> values = List.of("one", "two", "three");
Promise<Response<Collection<String>>> promise = Promise.done(Response.done(values));
ResponseFn<Collection<String>, Collection<Object>> fn = new CollectionResponseT().bind(endpoint, new ObjectResponseT<Collection<Object>>().bind(endpoint, null));
IndexedSeq<Object> seq = responseT.bind(endpoint, fn).join(promise, Arguments.empty());
assertTrue(seq.containsAll(values));
}
use of com.github.ljtfreitas.julian.CollectionResponseT in project julian-http-client by ljtfreitas.
the class QueueResponseTTest method bindNullCollection.
@Test
void bindNullCollection() {
when(endpoint.returnType()).thenReturn(JavaType.parameterized(Collection.class, String.class));
Promise<Response<Collection<String>>> promise = Promise.done(Response.done(null));
ResponseFn<Collection<String>, Collection<Object>> fn = new CollectionResponseT().bind(endpoint, new ObjectResponseT<Collection<Object>>().bind(endpoint, null));
Queue<Object> queue = responseT.bind(endpoint, fn).join(promise, Arguments.empty());
assertTrue(queue.isEmpty());
}
Aggregations