blob: ac9d79f48f7c0b7676d83902cd6e78bafe7d7864 [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.contrib.couchdb;
import java.io.IOException;
import java.util.Map;
import org.codehaus.jackson.map.ObjectMapper;
import org.ektorp.ViewQuery;
import org.ektorp.ViewResult;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.apache.apex.malhar.lib.testbench.CollectorTestSink;
import com.google.common.collect.Maps;
import static org.apache.apex.malhar.lib.helper.OperatorContextTestHelper.mockOperatorContext;
/**
* Test for {@link PagedCouchDBInputOperatorTest}
*
* @since 0.3.5
*/
public class PagedCouchDBInputOperatorTest
{
private class TestPagedDBInputOperator extends AbstractCouchDBInputOperator<Map<Object, Object>>
{
ObjectMapper mapper = new ObjectMapper();
@Override
public ViewQuery getViewQuery()
{
return CouchDBTestHelper.createAndFetchViewQuery();
}
@SuppressWarnings("unchecked")
@Override
public Map<Object, Object> getTuple(ViewResult.Row row)
{
Map<Object, Object> valueMap = Maps.newHashMap();
try {
valueMap = mapper.readValue(row.getValueAsNode(), valueMap.getClass());
} catch (IOException e) {
e.printStackTrace();
}
return valueMap;
}
}
@SuppressWarnings({"unchecked", "rawtypes"})
@Test
public void testCouchDBInputOperator()
{
String testDocumentIdPrefix = "PagedTestDoc";
for (int i = 1; i <= 10; i++) {
Map<String, String> mapTuple = Maps.newHashMap();
mapTuple.put("_id", testDocumentIdPrefix + i);
mapTuple.put("name", "PTD" + i);
mapTuple.put("type", "test");
CouchDBTestHelper.insertDocument(mapTuple);
}
TestPagedDBInputOperator operatorTest = new TestPagedDBInputOperator();
CouchDbStore store = new CouchDbStore();
store.setDbName(CouchDBTestHelper.TEST_DB);
operatorTest.setStore(store);
CollectorTestSink sink = new CollectorTestSink();
operatorTest.outputPort.setSink(sink);
operatorTest.setPageSize(5);
operatorTest.setup(mockOperatorContext(3));
int totalDocsInDb = CouchDBTestHelper.getTotalDocuments();
int rounds = (totalDocsInDb % 5 == 0 ? 0 : 1) + (totalDocsInDb / 5);
int remainingDocCount = totalDocsInDb;
for (int i = 0; i < rounds; i++) {
operatorTest.beginWindow(i);
operatorTest.emitTuples();
operatorTest.endWindow();
Assert.assertEquals("number emitted tuples", remainingDocCount > 5 ? 5 : remainingDocCount, sink.collectedTuples.size());
remainingDocCount = remainingDocCount - 5;
sink.clear();
}
}
@BeforeClass
public static void setup()
{
CouchDBTestHelper.setup();
}
@AfterClass
public static void teardown()
{
CouchDBTestHelper.teardown();
}
}