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

io.rxmicro.test.mockito.mongo.internal.UpdateOperationMockFactory 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.client.model.UpdateOptions;
import com.mongodb.client.result.UpdateResult;
import com.mongodb.reactivestreams.client.MongoCollection;
import com.mongodb.reactivestreams.client.MongoDatabase;
import io.rxmicro.test.mockito.mongo.UpdateOperationMock;
import io.rxmicro.test.mockito.mongo.internal.util.UpdateOptionsMatcher;
import org.bson.Document;
import org.reactivestreams.Publisher;

import static io.rxmicro.test.mockito.internal.CommonMatchers.any;
import static io.rxmicro.test.mockito.internal.CommonMatchers.equal;
import static io.rxmicro.test.mockito.mongo.internal.AnyValues.ANY_DOCUMENT;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

/**
 * @author nedis
 * @link https://rxmicro.io
 * @since 0.1
 */
public final class UpdateOperationMockFactory extends AbstractOperationMockFactory {

    @SuppressWarnings("unchecked")
    public void prepare(final MongoDatabase mongoDatabase,
                        final String collectionName,
                        final UpdateOperationMock operationMock,
                        final Throwable throwable,
                        final UpdateResult updateResult) {
        final MongoCollection collection = newMongoCollection(mongoDatabase, collectionName);
        final Publisher publisher = mock(Publisher.class);
        final Document filter = operationMock.isAnyFilter() ?
                any(Document.class, ANY_DOCUMENT) :
                equal(operationMock.getFilter());
        final Document update = operationMock.isAnyUpdate() ?
                any(Document.class, ANY_DOCUMENT) :
                equal(operationMock.getUpdate());
        final UpdateOptions updateOptions = new UpdateOptions()
                .upsert(operationMock.isUpsert());
        when(collection.updateMany(
                filter,
                update,
                equal(new UpdateOptionsMatcher(updateOptions), updateOptions)
        )).thenReturn(publisher);
        ifThrowableNotNullThenFailOtherwiseReturnItems(publisher, throwable, updateResult);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy