All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rxmicro.test.mockito.mongo.internal.AggregateOperationMockFactory Maven / Gradle / Ivy

There is a newer version: 0.11
Show newest version
/*
 * Copyright (c) 2020. https://rxmicro.io
 *
 * Licensed 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 io.rxmicro.test.mockito.mongo.internal;

import com.mongodb.reactivestreams.client.AggregatePublisher;
import com.mongodb.reactivestreams.client.MongoCollection;
import com.mongodb.reactivestreams.client.MongoDatabase;
import io.rxmicro.test.mockito.mongo.AggregateOperationMock;
import org.bson.Document;

import static io.rxmicro.test.mockito.internal.CommonMatchers.anyList;
import static io.rxmicro.test.mockito.mongo.internal.AnyValues.ANY_PIPELINE;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

/**
 * @author nedis
 * @since 0.1
 */
public final class AggregateOperationMockFactory extends AbstractOperationMockFactory {

    public void prepare(final MongoDatabase mongoDatabase,
                        final String collectionName,
                        final AggregateOperationMock operationMock,
                        final Throwable throwable,
                        final Document... items) {
        final MongoCollection collection = newMongoCollection(mongoDatabase, collectionName);
        final AggregatePublisher aggregatePublisher = newAggregatePublisher(collection, operationMock);
        ifThrowableNotNullThenFailOtherwiseReturnItems(aggregatePublisher, throwable, items);
    }

    @SuppressWarnings("unchecked")
    private AggregatePublisher newAggregatePublisher(final MongoCollection collection,
                                                               final AggregateOperationMock operationMock) {
        final AggregatePublisher publisher = mock(AggregatePublisher.class);
        if (operationMock.getPipeline().isEmpty()) {
            when(collection.aggregate(anyList(ANY_PIPELINE))).thenReturn(publisher);
        } else {
            when(collection.aggregate(operationMock.getPipeline())).thenReturn(publisher);
        }
        operationMock.getHint().ifPresent(hint -> when(publisher.hint(hint)).thenReturn(publisher));
        when(publisher.allowDiskUse(operationMock.isAllowDiskUse())).thenReturn(publisher);
        return publisher;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy