blob: 31a4fda2aed3c456998a447d6d650809094835d0 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.apex.malhar.lib.appdata.query;
import java.util.List;
import org.junit.Assert;
import org.junit.Test;
import org.apache.apex.malhar.lib.appdata.schemas.Query;
import org.apache.apex.malhar.lib.appdata.schemas.Result;
import com.google.common.collect.Lists;
public class QueryManagerSynchronousTest
{
@Test
public void simpleTest()
{
final int numQueries = 3;
QueryManagerSynchronous<Query, Void, Void, Result> queryProcessor = QueryManagerSynchronous.newInstance(
new SimpleQueryComputer());
queryProcessor.setup(null);
queryProcessor.beginWindow(0);
for (int qc = 0; qc < numQueries; qc++) {
Query query = new MockQuery(Integer.toString(qc));
queryProcessor.enqueue(query, null, null);
}
Result result;
List<Result> results = Lists.newArrayList();
while ((result = queryProcessor.process()) != null) {
results.add(result);
}
queryProcessor.endWindow();
queryProcessor.teardown();
Assert.assertEquals("Sizes must match.", numQueries, results.size());
for (int rc = 0; rc < results.size(); rc++) {
result = results.get(rc);
Assert.assertEquals("Ids must match.", Integer.toString(rc), result.getId());
}
}
public static class SimpleQueryComputer implements QueryExecutor<Query, Void, Void, Result>
{
public SimpleQueryComputer()
{
}
@Override
public Result executeQuery(Query query, Void metaQuery, Void queueContext)
{
return new MockResult(query);
}
}
}