Search in sources :

Example 1 with ValidationLevel

use of com.mongodb.client.model.ValidationLevel in project mongo-java-driver by mongodb.

the class DB method getCreateCollectionOperation.

private CreateCollectionOperation getCreateCollectionOperation(final String collectionName, final DBObject options) {
    if (options.get("size") != null && !(options.get("size") instanceof Number)) {
        throw new IllegalArgumentException("'size' should be Number");
    }
    if (options.get("max") != null && !(options.get("max") instanceof Number)) {
        throw new IllegalArgumentException("'max' should be Number");
    }
    if (options.get("capped") != null && !(options.get("capped") instanceof Boolean)) {
        throw new IllegalArgumentException("'capped' should be Boolean");
    }
    if (options.get("autoIndexId") != null && !(options.get("autoIndexId") instanceof Boolean)) {
        throw new IllegalArgumentException("'autoIndexId' should be Boolean");
    }
    if (options.get("storageEngine") != null && !(options.get("storageEngine") instanceof DBObject)) {
        throw new IllegalArgumentException("'storageEngine' should be DBObject");
    }
    if (options.get("indexOptionDefaults") != null && !(options.get("indexOptionDefaults") instanceof DBObject)) {
        throw new IllegalArgumentException("'indexOptionDefaults' should be DBObject");
    }
    if (options.get("validator") != null && !(options.get("validator") instanceof DBObject)) {
        throw new IllegalArgumentException("'validator' should be DBObject");
    }
    if (options.get("validationLevel") != null && !(options.get("validationLevel") instanceof String)) {
        throw new IllegalArgumentException("'validationLevel' should be String");
    }
    if (options.get("validationAction") != null && !(options.get("validationAction") instanceof String)) {
        throw new IllegalArgumentException("'validationAction' should be String");
    }
    boolean capped = false;
    boolean autoIndex = true;
    long sizeInBytes = 0;
    long maxDocuments = 0;
    BsonDocument storageEngineOptions = null;
    BsonDocument indexOptionDefaults = null;
    BsonDocument validator = null;
    ValidationLevel validationLevel = null;
    ValidationAction validationAction = null;
    if (options.get("capped") != null) {
        capped = (Boolean) options.get("capped");
    }
    if (options.get("size") != null) {
        sizeInBytes = ((Number) options.get("size")).longValue();
    }
    if (options.get("autoIndexId") != null) {
        autoIndex = (Boolean) options.get("autoIndexId");
    }
    if (options.get("max") != null) {
        maxDocuments = ((Number) options.get("max")).longValue();
    }
    if (options.get("storageEngine") != null) {
        storageEngineOptions = wrap((DBObject) options.get("storageEngine"));
    }
    if (options.get("indexOptionDefaults") != null) {
        indexOptionDefaults = wrap((DBObject) options.get("indexOptionDefaults"));
    }
    if (options.get("validator") != null) {
        validator = wrap((DBObject) options.get("validator"));
    }
    if (options.get("validationLevel") != null) {
        validationLevel = ValidationLevel.fromString((String) options.get("validationLevel"));
    }
    if (options.get("validationAction") != null) {
        validationAction = ValidationAction.fromString((String) options.get("validationAction"));
    }
    Collation collation = DBObjectCollationHelper.createCollationFromOptions(options);
    return new CreateCollectionOperation(getName(), collectionName, getWriteConcern()).capped(capped).collation(collation).sizeInBytes(sizeInBytes).autoIndex(autoIndex).maxDocuments(maxDocuments).storageEngineOptions(storageEngineOptions).indexOptionDefaults(indexOptionDefaults).validator(validator).validationLevel(validationLevel).validationAction(validationAction);
}
Also used : CreateCollectionOperation(com.mongodb.internal.operation.CreateCollectionOperation) BsonDocument(org.bson.BsonDocument) ValidationAction(com.mongodb.client.model.ValidationAction) ValidationLevel(com.mongodb.client.model.ValidationLevel) Collation(com.mongodb.client.model.Collation)

Example 2 with ValidationLevel

use of com.mongodb.client.model.ValidationLevel in project morphia by mongodb.

the class TestDocumentValidation method validationDocuments.

@Test
public void validationDocuments() {
    Document validator = parse("{ \"jelly\" : { \"$ne\" : \"rhubarb\" } }");
    getMapper().map(DocumentValidation.class);
    EntityModel model = getMapper().getEntityModel(DocumentValidation.class);
    for (ValidationLevel level : EnumSet.allOf(ValidationLevel.class)) {
        for (ValidationAction action : EnumSet.allOf(ValidationAction.class)) {
            checkValidation(validator, model, level, action);
        }
    }
}
Also used : ValidationAction(com.mongodb.client.model.ValidationAction) EntityModel(dev.morphia.mapping.codec.pojo.EntityModel) ValidationLevel(com.mongodb.client.model.ValidationLevel) Document(org.bson.Document) Test(org.testng.annotations.Test)

Example 3 with ValidationLevel

use of com.mongodb.client.model.ValidationLevel in project morphia by mongodb.

the class TestDocumentValidation method validationDocuments.

@Test
public void validationDocuments() {
    Document validator = Document.parse("{ jelly : { $ne : 'rhubarb' } }");
    getMorphia().map(DocumentValidation.class);
    MappedClass mappedClass = getMorphia().getMapper().getMappedClass(DocumentValidation.class);
    for (ValidationLevel level : EnumSet.allOf(ValidationLevel.class)) {
        for (ValidationAction action : EnumSet.allOf(ValidationAction.class)) {
            checkValidation(validator, mappedClass, level, action);
        }
    }
}
Also used : ValidationAction(com.mongodb.client.model.ValidationAction) ValidationLevel(com.mongodb.client.model.ValidationLevel) MappedClass(org.mongodb.morphia.mapping.MappedClass) Document(org.bson.Document) Test(org.junit.Test)

Aggregations

ValidationAction (com.mongodb.client.model.ValidationAction)3 ValidationLevel (com.mongodb.client.model.ValidationLevel)3 Document (org.bson.Document)2 Collation (com.mongodb.client.model.Collation)1 CreateCollectionOperation (com.mongodb.internal.operation.CreateCollectionOperation)1 EntityModel (dev.morphia.mapping.codec.pojo.EntityModel)1 BsonDocument (org.bson.BsonDocument)1 Test (org.junit.Test)1 MappedClass (org.mongodb.morphia.mapping.MappedClass)1 Test (org.testng.annotations.Test)1