use of javax.jcr.nodetype.PropertyDefinition in project jackrabbit by apache.
the class CanSetPropertyDoubleTest method testValueConstraintNotSatisfied.
/**
* Tests if canSetProperty(String propertyName, Value value) returns false
* if value does not satsfy the value constraints of the property def
*/
public void testValueConstraintNotSatisfied() throws NotExecutableException, ParseException, RepositoryException {
PropertyDefinition propDef = NodeTypeUtil.locatePropertyDef(session, PropertyType.DOUBLE, false, false, true, false);
if (propDef == null) {
throw new NotExecutableException("No double property def with " + "testable value constraints has been found");
}
Value value = NodeTypeUtil.getValueAccordingToValueConstraints(session, propDef, false);
if (value == null) {
throw new NotExecutableException("No double property def with " + "testable value constraints has been found");
}
NodeType nodeType = propDef.getDeclaringNodeType();
assertFalse("canSetProperty(String propertyName, Value value) must " + "return false if value does not match the value constraints.", nodeType.canSetProperty(propDef.getName(), value));
}
use of javax.jcr.nodetype.PropertyDefinition in project jackrabbit by apache.
the class CanSetPropertyDoubleTest method testConversionsMultiple.
/**
* Tests if NodeType.canSetProperty(String propertyName, Value[] values)
* returns true if all values and its types are convertible to DoubleValue.
*/
public void testConversionsMultiple() throws NotExecutableException, RepositoryException {
PropertyDefinition propDef = NodeTypeUtil.locatePropertyDef(session, PropertyType.DOUBLE, true, false, false, false);
if (propDef == null) {
throw new NotExecutableException("No multiple double property def that meets the " + "requirements of the test has been found");
}
NodeType nodeType = propDef.getDeclaringNodeType();
Value doubleValue = NodeTypeUtil.getValueOfType(session, PropertyType.DOUBLE);
Value anyStringValue = NodeTypeUtil.getValueOfType(session, PropertyType.STRING);
Value[] anyStringValues = new Value[] { doubleValue, anyStringValue };
assertFalse("canSetProperty(String propertyName, Value[] values) must return " + "false if the property is of type Double and values are of type StringValue " + "that are not convertible to DoubleValues", nodeType.canSetProperty(propDef.getName(), anyStringValues));
Value doubleStringValue = superuser.getValueFactory().createValue(NodeTypeUtil.getValueOfType(session, PropertyType.DOUBLE).getString());
Value[] doubleStringValues = new Value[] { doubleStringValue };
assertTrue("canSetProperty(String propertyName, Value[] values) must return " + "true if the property is of type Double and values are of type StringValue " + "that are convertible to DoubleValues", nodeType.canSetProperty(propDef.getName(), doubleStringValues));
Value anyBinaryValue = NodeTypeUtil.getValueOfType(session, PropertyType.BINARY);
Value[] anyBinaryValues = new Value[] { doubleValue, anyBinaryValue };
assertFalse("canSetProperty(String propertyName, Value[] values) must return " + "false if the property is of type Double and values are of type BinaryValue " + "that are not convertible to DoubleValues", nodeType.canSetProperty(propDef.getName(), anyBinaryValues));
Value doubleBinaryValue = superuser.getValueFactory().createValue(NodeTypeUtil.getValueOfType(session, PropertyType.DOUBLE).getString(), PropertyType.BINARY);
Value[] doubleBinaryValues = new Value[] { doubleBinaryValue };
assertTrue("canSetProperty(String propertyName, Value[] values) must return " + "true if the property is of type Double and values are of type BinaryValue " + "that are convertible to DoubleValues", nodeType.canSetProperty(propDef.getName(), doubleBinaryValues));
Value dateValue = NodeTypeUtil.getValueOfType(session, PropertyType.DATE);
Value[] dateValues = new Value[] { dateValue };
assertTrue("canSetProperty(String propertyName, Value[] values) must return " + "true if the property is of type Double and values are of type DateValue", nodeType.canSetProperty(propDef.getName(), dateValues));
Value[] doubleValues = new Value[] { doubleValue };
assertTrue("canSetProperty(String propertyName, Value[] values) must return " + "true if the property is of type Double and values are of type DoubleValue", nodeType.canSetProperty(propDef.getName(), doubleValues));
Value longValue = NodeTypeUtil.getValueOfType(session, PropertyType.LONG);
Value[] longValues = new Value[] { longValue };
assertTrue("canSetProperty(String propertyName, Value[] values) must return " + "true if the property is of type Double and values are of type LongValue", nodeType.canSetProperty(propDef.getName(), longValues));
Value booleanValue = NodeTypeUtil.getValueOfType(session, PropertyType.BOOLEAN);
Value[] booleanValues = new Value[] { doubleValue, booleanValue };
assertFalse("canSetProperty(String propertyName, Value[] values) must return " + "false if the property is of type Double and values are of type BooleanValue", nodeType.canSetProperty(propDef.getName(), booleanValues));
Value nameValue = NodeTypeUtil.getValueOfType(session, PropertyType.NAME);
Value[] nameValues = new Value[] { doubleValue, nameValue };
assertFalse("canSetProperty(String propertyName, Value[] values) must return " + "false if the property is of type Double and values are of type NameValue", nodeType.canSetProperty(propDef.getName(), nameValues));
Value pathValue = NodeTypeUtil.getValueOfType(session, PropertyType.PATH);
Value[] pathValues = new Value[] { doubleValue, pathValue };
assertFalse("canSetProperty(String propertyName, Value[] values) must return " + "false if the property is of type Double and values are of type PathValue", nodeType.canSetProperty(propDef.getName(), pathValues));
}
use of javax.jcr.nodetype.PropertyDefinition in project jackrabbit by apache.
the class CanSetPropertyDoubleTest method testValueConstraintNotSatisfiedMultiple.
/**
* Tests if canSetProperty(String propertyName, Value[] values) returns
* false if values do not satisfy the value constraints of the property def
*/
public void testValueConstraintNotSatisfiedMultiple() throws NotExecutableException, ParseException, RepositoryException {
PropertyDefinition propDef = NodeTypeUtil.locatePropertyDef(session, PropertyType.DOUBLE, true, false, true, false);
if (propDef == null) {
throw new NotExecutableException("No multiple double property def with " + "testable value constraints has been found");
}
Value value = NodeTypeUtil.getValueAccordingToValueConstraints(session, propDef, false);
if (value == null) {
throw new NotExecutableException("No multiple double property def with " + "testable value constraints has been found");
}
NodeType nodeType = propDef.getDeclaringNodeType();
Value[] values = new Value[] { value };
assertFalse("canSetProperty(String propertyName, Value[] values) must " + "return false if values do not match the value constraints.", nodeType.canSetProperty(propDef.getName(), values));
}
use of javax.jcr.nodetype.PropertyDefinition in project jackrabbit by apache.
the class CanSetPropertyLongTest method testValueConstraintNotSatisfied.
/**
* Tests if canSetProperty(String propertyName, Value value) returns false
* if value does not satisfy the value constraints of the property def
*/
public void testValueConstraintNotSatisfied() throws NotExecutableException, ParseException, RepositoryException {
PropertyDefinition propDef = NodeTypeUtil.locatePropertyDef(session, PropertyType.LONG, false, false, true, false);
if (propDef == null) {
throw new NotExecutableException("No long property def with " + "testable value constraints has been found");
}
Value value = NodeTypeUtil.getValueAccordingToValueConstraints(superuser, propDef, false);
if (value == null) {
throw new NotExecutableException("No long property def with " + "testable value constraints has been found");
}
NodeType nodeType = propDef.getDeclaringNodeType();
assertFalse("canSetProperty(String propertyName, Value value) must " + "return false if value does not match the value constraints.", nodeType.canSetProperty(propDef.getName(), value));
}
use of javax.jcr.nodetype.PropertyDefinition in project jackrabbit by apache.
the class CanSetPropertyLongTest method testConversions.
/**
* Tests if NodeType.canSetProperty(String propertyName, Value value)
* returns true if value and its type are convertible to LongValue.
*/
public void testConversions() throws NotExecutableException, RepositoryException {
PropertyDefinition propDef = NodeTypeUtil.locatePropertyDef(session, PropertyType.LONG, false, false, false, false);
if (propDef == null) {
throw new NotExecutableException("No long property def that meets the " + "requirements of the test has been found");
}
NodeType nodeType = propDef.getDeclaringNodeType();
Value anyStringValue = NodeTypeUtil.getValueOfType(session, PropertyType.STRING);
assertFalse("canSetProperty(String propertyName, Value value) must return " + "false if the property is of type Long and value is a StringValue " + "that is not convertible to a LongValue", nodeType.canSetProperty(propDef.getName(), anyStringValue));
Value longStringValue = superuser.getValueFactory().createValue(NodeTypeUtil.getValueOfType(session, PropertyType.LONG).getString());
assertTrue("canSetProperty(String propertyName, Value value) must return " + "true if the property is of type Long and value is a StringValue " + "that is convertible to a LongValue", nodeType.canSetProperty(propDef.getName(), longStringValue));
Value anyBinaryValue = NodeTypeUtil.getValueOfType(session, PropertyType.BINARY);
assertFalse("canSetProperty(String propertyName, Value value) must return " + "false if the property is of type Long and value is a UTF-8 " + "BinaryValue that is not convertible to a LongValue", nodeType.canSetProperty(propDef.getName(), anyBinaryValue));
Value longBinaryValue = superuser.getValueFactory().createValue(NodeTypeUtil.getValueOfType(session, PropertyType.LONG).getString(), PropertyType.BINARY);
assertTrue("canSetProperty(String propertyName, Value value) must return " + "true if the property is of type Long and value is a UTF-8 " + "BinaryValue that is convertible to a LongValue", nodeType.canSetProperty(propDef.getName(), longBinaryValue));
Value dateValue = NodeTypeUtil.getValueOfType(session, PropertyType.DATE);
assertTrue("canSetProperty(String propertyName, Value value) must return " + "true if the property is of type Long and value is a DateValue", nodeType.canSetProperty(propDef.getName(), dateValue));
Value doubleValue = NodeTypeUtil.getValueOfType(session, PropertyType.DOUBLE);
assertTrue("canSetProperty(String propertyName, Value value) must return " + "true if the property is of type Long and value is a DoubleValue", nodeType.canSetProperty(propDef.getName(), doubleValue));
Value longValue = NodeTypeUtil.getValueOfType(session, PropertyType.LONG);
assertTrue("canSetProperty(String propertyName, Value value) must return " + "true if the property is of type Long and value is a LongValue", nodeType.canSetProperty(propDef.getName(), longValue));
Value booleanValue = NodeTypeUtil.getValueOfType(session, PropertyType.BOOLEAN);
assertFalse("canSetProperty(String propertyName, Value value) must return " + "false if the property is of type Long and value is a BooleanValue", nodeType.canSetProperty(propDef.getName(), booleanValue));
Value nameValue = NodeTypeUtil.getValueOfType(session, PropertyType.NAME);
assertFalse("canSetProperty(String propertyName, Value value) must return " + "false if the property is of type Long and value is a NameValue", nodeType.canSetProperty(propDef.getName(), nameValue));
Value pathValue = NodeTypeUtil.getValueOfType(session, PropertyType.PATH);
assertFalse("canSetProperty(String propertyName, Value value) must return " + "false if the property is of type Long and value is a PathValue", nodeType.canSetProperty(propDef.getName(), pathValue));
}
Aggregations