use of com.linkedin.restli.examples.greetings.client.BatchfindersFluentClient in project rest.li by linkedin.
the class TestParseqBasedFluentClientApiWithProjections method testBatchFinderWithProjection.
@Test
public void testBatchFinderWithProjection() throws Exception {
Batchfinders batchFinders = new BatchfindersFluentClient(_parSeqRestliClient, _parSeqUnitTestHelper.getEngine());
GreetingCriteria c1 = new GreetingCriteria().setId(1L).setTone(Tone.SINCERE);
GreetingCriteria c2 = new GreetingCriteria().setId(2L).setTone(Tone.FRIENDLY);
CompletionStage<BatchCollectionResponse<Greeting>> result = batchFinders.findBySearchGreetings(Arrays.asList(c1, c2), "hello world", params -> params.withMask(mask -> mask.withTone().withId()));
CompletableFuture<BatchCollectionResponse<Greeting>> future = result.toCompletableFuture();
List<BatchFinderCriteriaResult<Greeting>> batchResult = future.get(5000, TimeUnit.MILLISECONDS).getResults();
List<Greeting> greetings1 = batchResult.get(0).getElements();
Assert.assertTrue(greetings1.get(0).hasTone());
Assert.assertEquals(greetings1.get(0).getTone(), Tone.SINCERE);
Assert.assertTrue(greetings1.get(0).hasId());
Assert.assertFalse(greetings1.get(0).hasMessage());
List<Greeting> greetings2 = batchResult.get(1).getElements();
Assert.assertTrue(greetings2.get(0).hasId());
Assert.assertEquals(greetings2.get(0).getTone(), Tone.FRIENDLY);
Assert.assertTrue(greetings2.get(0).hasId());
Assert.assertFalse(greetings2.get(0).hasMessage());
}
use of com.linkedin.restli.examples.greetings.client.BatchfindersFluentClient in project rest.li by linkedin.
the class TestParseqBasedFluentClientApiWithProjections method testBatchFinderWithPagingProjection.
@Test
public void testBatchFinderWithPagingProjection() throws Exception {
Batchfinders batchFinders = new BatchfindersFluentClient(_parSeqRestliClient, _parSeqUnitTestHelper.getEngine());
GreetingCriteria c1 = new GreetingCriteria().setId(1L).setTone(Tone.SINCERE);
GreetingCriteria c2 = new GreetingCriteria().setId(2L).setTone(Tone.FRIENDLY);
CompletionStage<BatchCollectionResponse<Greeting>> result = batchFinders.findBySearchGreetings(Arrays.asList(c1, c2), "hello world", params -> params.withPagingMask(mask -> mask.withStart()).withMask(fieldMask -> fieldMask.withId().withTone()));
CompletableFuture<BatchCollectionResponse<Greeting>> future = result.toCompletableFuture();
List<BatchFinderCriteriaResult<Greeting>> batchResult = future.get(5000, TimeUnit.MILLISECONDS).getResults();
for (BatchFinderCriteriaResult<?> singleCriteria : batchResult) {
CollectionMetadata paging = singleCriteria.getPaging();
Assert.assertTrue(paging.hasStart());
Assert.assertFalse(paging.hasCount());
Assert.assertFalse(paging.hasTotal());
Assert.assertFalse(paging.hasLinks());
}
// Same request without paging mask (setting field mask to avoid validation error on server)
result = batchFinders.findBySearchGreetings(Arrays.asList(c1, c2), "hello world", params -> params.withMask(fieldMask -> fieldMask.withId().withTone()));
future = result.toCompletableFuture();
batchResult = future.get(5000, TimeUnit.MILLISECONDS).getResults();
for (BatchFinderCriteriaResult<?> singleCriteria : batchResult) {
CollectionMetadata paging = singleCriteria.getPaging();
Assert.assertTrue(paging.hasStart());
Assert.assertTrue(paging.hasCount());
Assert.assertTrue(paging.hasTotal());
Assert.assertTrue(paging.hasLinks());
}
}
use of com.linkedin.restli.examples.greetings.client.BatchfindersFluentClient in project rest.li by linkedin.
the class TestParseqBasedFluentClientApi method testBatchFinder.
@Test
public void testBatchFinder() throws Exception {
Batchfinders batchfinders = new BatchfindersFluentClient(_parSeqRestliClient, _parSeqUnitTestHelper.getEngine());
GreetingCriteria c1 = new GreetingCriteria().setId(1L).setTone(Tone.SINCERE);
GreetingCriteria c2 = new GreetingCriteria().setId(2L).setTone(Tone.FRIENDLY);
CompletionStage<BatchCollectionResponse<Greeting>> result = batchfinders.findBySearchGreetings(Arrays.asList(c1, c2), "hello world");
CompletableFuture<BatchCollectionResponse<Greeting>> future = result.toCompletableFuture();
List<BatchFinderCriteriaResult<Greeting>> batchResult = future.get(5000, TimeUnit.MILLISECONDS).getResults();
List<Greeting> greetings1 = batchResult.get(0).getElements();
Assert.assertTrue(greetings1.get(0).hasTone());
Assert.assertEquals(greetings1.get(0).getTone(), Tone.SINCERE);
List<Greeting> greetings2 = batchResult.get(1).getElements();
Assert.assertTrue(greetings2.get(0).hasId());
Assert.assertEquals(greetings2.get(0).getTone(), Tone.FRIENDLY);
}
Aggregations