/** * 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.camel.component.mongodb3; import java.util.HashMap; import java.util.List; import java.util.Map; import com.mongodb.client.model.Projections; import org.apache.camel.Exchange; import org.apache.camel.builder.RouteBuilder; import org.apache.commons.lang3.ObjectUtils; import org.bson.Document; import org.bson.conversions.Bson; import org.bson.types.ObjectId; import org.junit.Test; import static com.mongodb.client.model.Filters.eq; import static org.apache.camel.component.mongodb3.MongoDbConstants.MONGO_ID; public class MongoDbFindOperationTest extends AbstractMongoDbTest { @Test public void testFindAllNoCriteriaOperation() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Object result = template.requestBody("direct:findAll", ObjectUtils.NULL); assertTrue("Result is not of type List", result instanceof List); @SuppressWarnings("unchecked") List<Document> resultList = (List<Document>)result; assertListSize("Result does not contain all entries in collection", resultList, 1000); // Ensure that all returned documents contain all fields for (Document document : resultList) { assertNotNull("Document in returned list should contain all fields", document.get(MONGO_ID)); assertNotNull("Document in returned list should contain all fields", document.get("scientist")); assertNotNull("Document in returned list should contain all fields", document.get("fixedField")); } Exchange resultExchange = getMockEndpoint("mock:resultFindAll").getReceivedExchanges().get(0); // TODO: decide what to do with total count // assertEquals("Result total size header should equal 1000", 1000, // resultExchange.getIn().getHeader(MongoDbConstants.RESULT_TOTAL_SIZE)); assertEquals("Result page size header should equal 1000", 1000, resultExchange.getIn().getHeader(MongoDbConstants.RESULT_PAGE_SIZE)); } @Test public void testFindAllWithQueryAndNoFIlter() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Object result = template.requestBody("direct:findAll", eq("scientist", "Einstein")); assertTrue("Result is not of type List", result instanceof List); @SuppressWarnings("unchecked") List<Document> resultList = (List<Document>)result; assertListSize("Result does not contain correct number of Einstein entries", resultList, 100); // Ensure that all returned documents contain all fields, and that they // only contain 'Einstein' for (Document document : resultList) { assertNotNull("Document in returned list should not contain field _id", document.get(MONGO_ID)); assertNotNull("Document in returned list does not contain field 'scientist'", document.get("scientist")); assertNotNull("Document in returned list should not contain field fixedField", document.get("fixedField")); assertEquals("Document.scientist should only be Einstein", "Einstein", document.get("scientist")); } Exchange resultExchange = getMockEndpoint("mock:resultFindAll").getReceivedExchanges().get(0); assertEquals("Result page size header should equal 100", 100, resultExchange.getIn().getHeader(MongoDbConstants.RESULT_PAGE_SIZE)); } @Test public void testFindAllWithQueryAndFilter() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Bson fieldFilter = Projections.exclude(MONGO_ID, "fixedField"); Bson query = eq("scientist", "Einstein"); Object result = template.requestBodyAndHeader("direct:findAll", query, MongoDbConstants.FIELDS_PROJECTION, fieldFilter); assertTrue("Result is not of type List", result instanceof List); @SuppressWarnings("unchecked") List<Document> resultList = (List<Document>)result; assertListSize("Result does not contain correct number of Einstein entries", resultList, 100); // Ensure that all returned documents contain all fields, and that they // only contain 'Einstein' for (Document document : resultList) { assertNull("Document in returned list should not contain field _id", document.get(MONGO_ID)); assertNotNull("Document in returned list does not contain field 'scientist'", document.get("scientist")); assertNull("Document in returned list should not contain field fixedField", document.get("fixedField")); assertEquals("Document.scientist should only be Einstein", "Einstein", document.get("scientist")); } Exchange resultExchange = getMockEndpoint("mock:resultFindAll").getReceivedExchanges().get(0); assertEquals("Result page size header should equal 100", 100, resultExchange.getIn().getHeader(MongoDbConstants.RESULT_PAGE_SIZE)); } @Test public void testFindAllNoCriteriaWithFilterOperation() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Bson fieldFilter = Projections.exclude(MONGO_ID, "fixedField"); Object result = template.requestBodyAndHeader("direct:findAll", ObjectUtils.NULL, MongoDbConstants.FIELDS_PROJECTION, fieldFilter); assertTrue("Result is not of type List", result instanceof List); @SuppressWarnings("unchecked") List<Document> resultList = (List<Document>)result; assertListSize("Result does not contain all entries in collection", resultList, 1000); // Ensure that all returned documents contain all fields for (Document document : resultList) { assertNull("Document in returned list should not contain field _id", document.get(MONGO_ID)); assertNotNull("Document in returned list does not contain field 'scientist'", document.get("scientist")); assertNull("Document in returned list should not contain field fixedField", document.get("fixedField")); } Exchange resultExchange = getMockEndpoint("mock:resultFindAll").getReceivedExchanges().get(0); // assertEquals("Result total size header should equal 1000", 1000, // resultExchange.getIn().getHeader(MongoDbConstants.RESULT_TOTAL_SIZE)); assertEquals("Result page size header should equal 1000", 1000, resultExchange.getIn().getHeader(MongoDbConstants.RESULT_PAGE_SIZE)); } @Test public void testFindAllIterationOperation() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); // Repeat ten times, obtain 10 batches of 100 results each time int numToSkip = 0; final int limit = 100; for (int i = 0; i < 10; i++) { Map<String, Object> headers = new HashMap<>(); headers.put(MongoDbConstants.NUM_TO_SKIP, numToSkip); headers.put(MongoDbConstants.LIMIT, 100); Object result = template.requestBodyAndHeaders("direct:findAll", ObjectUtils.NULL, headers); assertTrue("Result is not of type List", result instanceof List); @SuppressWarnings("unchecked") List<Document> resultList = (List<Document>)result; assertListSize("Result does not contain 100 elements", resultList, 100); assertEquals("Id of first record is not as expected", numToSkip + 1, Integer.parseInt((String)resultList.get(0).get(MONGO_ID))); // Ensure that all returned documents contain all fields for (Document document : resultList) { assertNotNull("Document in returned list should contain all fields", document.get(MONGO_ID)); assertNotNull("Document in returned list should contain all fields", document.get("scientist")); assertNotNull("Document in returned list should contain all fields", document.get("fixedField")); } numToSkip = numToSkip + limit; } for (Exchange resultExchange : getMockEndpoint("mock:resultFindAll").getReceivedExchanges()) { // TODO: decide what to do with the total number of elements // assertEquals("Result total size header should equal 1000", 1000, // resultExchange.getIn().getHeader(MongoDbConstants.RESULT_TOTAL_SIZE)); assertEquals("Result page size header should equal 100", 100, resultExchange.getIn().getHeader(MongoDbConstants.RESULT_PAGE_SIZE)); } } @Test public void testFindOneByQuery() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Bson query = eq("scientist", "Einstein"); Document result = template.requestBody("direct:findOneByQuery", query, Document.class); assertTrue("Result is not of type Document", result instanceof Document); assertNotNull("Document in returned list should contain all fields", result.get(MONGO_ID)); assertNotNull("Document in returned list should contain all fields", result.get("scientist")); assertNotNull("Document in returned list should contain all fields", result.get("fixedField")); } @Test public void testFindOneById() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); pumpDataIntoTestCollection(); Document result = template.requestBody("direct:findById", "240", Document.class); assertTrue("Result is not of type Document", result instanceof Document); assertEquals("The ID of the retrieved Document should equal 240", "240", result.get(MONGO_ID)); assertEquals("The scientist name of the retrieved Document should equal Einstein", "Einstein", result.get("scientist")); assertNotNull("Document in returned list should contain all fields", result.get(MONGO_ID)); assertNotNull("Document in returned list should contain all fields", result.get("scientist")); assertNotNull("Document in returned list should contain all fields", result.get("fixedField")); } @Test public void testFindOneByIdWithObjectId() throws Exception { // Test that the collection has 0 documents in it assertEquals(0, testCollection.count()); Document insertObject = new Document("scientist", "Einstein"); testCollection.insertOne(insertObject); assertTrue("The ID of the inserted document should be ObjectId", insertObject.get(MONGO_ID) instanceof ObjectId); ObjectId id = insertObject.getObjectId(MONGO_ID); Document result = template.requestBody("direct:findById", id, Document.class); assertTrue("Result is not of type Document", result instanceof Document); assertTrue("The ID of the retrieved Document should be ObjectId", result.get(MONGO_ID) instanceof ObjectId); assertEquals("The ID of the retrieved Document should equal to the inserted", id, result.get(MONGO_ID)); assertEquals("The scientist name of the retrieved Document should equal Einstein", "Einstein", result.get("scientist")); assertNotNull("Document in returned list should contain all fields", result.get(MONGO_ID)); assertNotNull("Document in returned list should contain all fields", result.get("scientist")); } @Override protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() { from("direct:findAll").to("mongodb3:myDb?database={{mongodb.testDb}}&collection={{mongodb.testCollection}}&operation=findAll&dynamicity=true") .to("mock:resultFindAll"); from("direct:findOneByQuery").to("mongodb3:myDb?database={{mongodb.testDb}}&collection={{mongodb.testCollection}}&operation=findOneByQuery&dynamicity=true") .to("mock:resultFindOneByQuery"); from("direct:findById").to("mongodb3:myDb?database={{mongodb.testDb}}&collection={{mongodb.testCollection}}&operation=findById&dynamicity=true") .to("mock:resultFindById"); } }; } }