com.noenv.wiremongo.mapping.update.UpdateCollectionWithOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-wiremongo Show documentation
Show all versions of vertx-wiremongo Show documentation
Lightweight mongo mocking for Vert.x
package com.noenv.wiremongo.mapping.update;
import com.noenv.wiremongo.command.Command;
import com.noenv.wiremongo.command.update.UpdateCollectionWithOptionsCommand;
import com.noenv.wiremongo.matching.JsonMatcher;
import com.noenv.wiremongo.matching.Matcher;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.mongo.MongoClientUpdateResult;
import io.vertx.ext.mongo.UpdateOptions;
@SuppressWarnings("squid:MaximumInheritanceDepth")
public class UpdateCollectionWithOptions extends UpdateCollectionBase, UpdateCollectionWithOptions> {
private Matcher options;
public UpdateCollectionWithOptions() {
super("updateCollectionWithOptions");
}
public UpdateCollectionWithOptions(String method) {
super(method);
}
public UpdateCollectionWithOptions(JsonObject json) {
super(json);
options = Matcher.create(json.getJsonObject("options"), j -> new UpdateOptions((JsonObject) j), UpdateOptions::toJson);
}
@Override
protected MongoClientUpdateResult parseResponse(Object jsonValue) {
return new MongoClientUpdateResult((JsonObject) jsonValue);
}
@Override
public boolean matches(Command cmd) {
if (!super.matches(cmd)) {
return false;
}
if (!(cmd instanceof UpdateCollectionWithOptionsCommand)) {
return false;
}
UpdateCollectionWithOptionsCommand c = (UpdateCollectionWithOptionsCommand) cmd;
return options == null || options.matches(c.getOptions());
}
public UpdateCollectionWithOptions withOptions(UpdateOptions options) {
return withOptions(JsonMatcher.equalToJson(options.toJson(), UpdateOptions::toJson));
}
public UpdateCollectionWithOptions withOptions(Matcher options) {
this.options = options;
return self();
}
}