use of com.yahoo.component.chain.Chain in project vespa by vespa-engine.
the class FutureDataTestCase method testAsyncDataProcessing.
/**
* Register a chain which will be called when some async data is available
*/
@SuppressWarnings("unchecked")
@Test
public void testAsyncDataProcessing() throws InterruptedException, ExecutionException, TimeoutException {
// Set up
FutureDataSource futureDataSource = new FutureDataSource();
Chain<Processor> asyncChain = new Chain<Processor>(new DataCounter());
Chain<Processor> chain = new Chain<>(new AsyncDataProcessingInitiator(asyncChain), futureDataSource);
// Execute
Request request = new Request();
Response response = Execution.createRoot(chain, 0, Execution.Environment.createEmpty()).process(request);
// Verify the result prior to completion of delayed data
assertEquals("No data yet", 0, response.data().asList().size());
// complete async data
futureDataSource.incomingData.get(0).add(new StringData(request, "d1"));
assertEquals("New data is not visible because it is not complete", 0, response.data().asList().size());
futureDataSource.incomingData.get(0).addLast(new StringData(request, "d2"));
assertEquals("Not visible because it has not been synced yet", 0, response.data().asList().size());
response.data().complete().get(1000, TimeUnit.MILLISECONDS);
assertEquals("Now the data as well as the count is available", 3, response.data().asList().size());
assertEquals("d1", response.data().get(0).toString().toString());
assertEquals("d2", response.data().get(1).toString().toString());
assertEquals("Data count: 2", response.data().get(2).toString());
}
use of com.yahoo.component.chain.Chain in project vespa by vespa-engine.
the class FutureDataTestCase method testFutureDataPassThrough.
/**
* Run a chain which ends in a processor which returns a response containing future data.
*/
@SuppressWarnings("unchecked")
@Test
public void testFutureDataPassThrough() throws InterruptedException, ExecutionException, TimeoutException {
// Set up
FutureDataSource futureDataSource = new FutureDataSource();
Chain<Processor> chain = new Chain<>(new DataCounter(), futureDataSource);
// Execute
Request request = new Request();
// Urk ...
Response response = Execution.createRoot(chain, 0, Execution.Environment.createEmpty()).process(request);
// Verify the result prior to completion of delayed data
assertEquals(1, response.data().asList().size());
assertEquals("Data count: 0", response.data().get(0).toString());
// complete delayed data
assertEquals("Delayed data was requested once", 1, futureDataSource.incomingData.size());
futureDataSource.incomingData.get(0).add(new StringData(request, "d1"));
futureDataSource.incomingData.get(0).addLast(new StringData(request, "d2"));
assertEquals("New data is not visible because we haven't asked for it", 1, response.data().asList().size());
response.data().complete().get(1000, TimeUnit.MILLISECONDS);
assertEquals("Now the data is available", 3, response.data().asList().size());
assertEquals("d1", response.data().get(1).toString().toString());
assertEquals("d2", response.data().get(2).toString().toString());
}
Aggregations