use of org.neo4j.kernel.api.schema_new.constaints.UniquenessConstraintDescriptor in project neo4j by neo4j.
the class StateHandlingStatementOperationsTest method shouldNotAddConstraintAlreadyExistsInTheStore.
@Test
public void shouldNotAddConstraintAlreadyExistsInTheStore() throws Exception {
// given
UniquenessConstraintDescriptor constraint = ConstraintDescriptorFactory.uniqueForSchema(descriptor);
TransactionState txState = mock(TransactionState.class);
when(txState.nodesWithLabelChanged(anyInt())).thenReturn(new DiffSets<Long>());
when(txState.hasChanges()).thenReturn(true);
KernelStatement state = mockedState(txState);
when(inner.constraintsGetForSchema(any())).thenReturn(iterator(constraint));
StateHandlingStatementOperations context = newTxStateOps(inner);
// when
context.uniquePropertyConstraintCreate(state, descriptor);
// then
verify(txState).indexDoUnRemove(eq(constraint.ownedIndexDescriptor()));
}
use of org.neo4j.kernel.api.schema_new.constaints.UniquenessConstraintDescriptor in project neo4j by neo4j.
the class StateHandlingStatementOperationsTest method shouldGetConstraintsByLabel.
@Test
public void shouldGetConstraintsByLabel() throws Exception {
// given
UniquenessConstraintDescriptor constraint1 = ConstraintDescriptorFactory.uniqueForLabel(2, 3);
UniquenessConstraintDescriptor constraint2 = ConstraintDescriptorFactory.uniqueForLabel(4, 5);
TransactionState txState = new TxState();
KernelStatement state = mockedState(txState);
when(inner.constraintsGetForSchema(constraint1.schema())).thenAnswer(invocation -> Iterators.emptyIterator());
when(inner.constraintsGetForSchema(constraint2.schema())).thenAnswer(invocation -> Iterators.emptyIterator());
when(inner.constraintsGetForLabel(1)).thenAnswer(invocation -> Iterators.emptyIterator());
when(inner.constraintsGetForLabel(2)).thenAnswer(invocation -> iterator(constraint1));
StateHandlingStatementOperations context = newTxStateOps(inner);
context.uniquePropertyConstraintCreate(state, constraint1.ownedIndexDescriptor().schema());
context.uniquePropertyConstraintCreate(state, constraint2.ownedIndexDescriptor().schema());
// when
Set<ConstraintDescriptor> result = Iterables.asSet(asIterable(context.constraintsGetForLabel(state, 2)));
// then
assertEquals(asSet(constraint1), result);
}
use of org.neo4j.kernel.api.schema_new.constaints.UniquenessConstraintDescriptor in project neo4j by neo4j.
the class DataIntegrityValidatingStatementOperations method uniquePropertyConstraintCreate.
@Override
public UniquenessConstraintDescriptor uniquePropertyConstraintCreate(KernelStatement state, LabelSchemaDescriptor descriptor) throws AlreadyConstrainedException, CreateConstraintFailureException, AlreadyIndexedException, RepeatedPropertyInCompositeSchemaException {
assertValidDescriptor(descriptor, OperationContext.CONSTRAINT_CREATION);
ConstraintDescriptor constraint = ConstraintDescriptorFactory.uniqueForSchema(descriptor);
assertConstraintDoesNotExist(state, constraint);
// It is not allowed to create uniqueness constraints on indexed label/property pairs
assertIndexDoesNotExist(state, OperationContext.CONSTRAINT_CREATION, SchemaBoundary.map(descriptor));
return schemaWriteDelegate.uniquePropertyConstraintCreate(state, descriptor);
}
use of org.neo4j.kernel.api.schema_new.constaints.UniquenessConstraintDescriptor in project neo4j by neo4j.
the class ConstraintEnforcingEntityOperations method nodeAddLabel.
@Override
public boolean nodeAddLabel(KernelStatement state, long nodeId, int labelId) throws EntityNotFoundException, ConstraintValidationException {
try (Cursor<NodeItem> cursor = nodeCursorById(state, nodeId)) {
NodeItem node = cursor.get();
Iterator<ConstraintDescriptor> constraints = schemaReadOperations.constraintsGetForLabel(state, labelId);
while (constraints.hasNext()) {
ConstraintDescriptor constraint = constraints.next();
if (constraint.type() == UNIQUE) {
UniquenessConstraintDescriptor uniqueConstraint = (UniquenessConstraintDescriptor) constraint;
ExactPredicate[] propertyValues = getAllPropertyValues(state, uniqueConstraint.schema(), node);
if (propertyValues != null) {
validateNoExistingNodeWithExactValues(state, uniqueConstraint, propertyValues, node.id());
}
}
}
}
return entityWriteOperations.nodeAddLabel(state, nodeId, labelId);
}
use of org.neo4j.kernel.api.schema_new.constaints.UniquenessConstraintDescriptor in project neo4j by neo4j.
the class TxStateTest method shouldAddUniquenessConstraint.
@Test
public void shouldAddUniquenessConstraint() throws Exception {
// when
UniquenessConstraintDescriptor constraint = ConstraintDescriptorFactory.uniqueForLabel(1, 17);
state.constraintDoAdd(constraint, 7);
// then
ReadableDiffSets<ConstraintDescriptor> diff = state.constraintsChangesForLabel(1);
assertEquals(singleton(constraint), diff.getAdded());
assertTrue(diff.getRemoved().isEmpty());
}
Aggregations