use of org.neo4j.storageengine.api.EntityUpdates in project neo4j by neo4j.
the class EntityValueUpdatesTest method shouldNotGenerateUpdatesForEmptyEntityUpdates.
@ParameterizedTest
@EnumSource(Entity.class)
void shouldNotGenerateUpdatesForEmptyEntityUpdates(Entity entity) {
// When
EntityUpdates updates = EntityUpdates.forEntity(ENTITY_ID, false).build();
// Then
assertThat(updates.valueUpdatesForIndexKeys(entity.indexes(), assertNoLoading(), entity.type(), NULL, INSTANCE)).isEmpty();
}
use of org.neo4j.storageengine.api.EntityUpdates in project neo4j by neo4j.
the class EntityValueUpdatesTest method shouldGenerateUpdatesForSinglePropertyAdditionWithToken.
@ParameterizedTest
@EnumSource(Entity.class)
void shouldGenerateUpdatesForSinglePropertyAdditionWithToken(Entity entity) {
// When
EntityUpdates updates = EntityUpdates.forEntity(ENTITY_ID, false).withTokens(TOKEN).added(PROPERTY_1.propertyKeyId(), PROPERTY_1.value()).build();
// Then
assertThat(updates.valueUpdatesForIndexKeys(entity.indexes(), propertyLoader(), entity.type(), NULL, INSTANCE)).contains(IndexEntryUpdate.add(ENTITY_ID, entity.index1(), PROPERTY_1.value()));
}
use of org.neo4j.storageengine.api.EntityUpdates in project neo4j by neo4j.
the class EntityValueUpdatesTest method shouldGenerateUpdateWhenRemovingOnePropertyForNonSchemaIndex.
@ParameterizedTest
@EnumSource(Entity.class)
void shouldGenerateUpdateWhenRemovingOnePropertyForNonSchemaIndex(Entity entity) {
// When
EntityUpdates updates = EntityUpdates.forEntity(ENTITY_ID, false).withTokens(TOKEN).withTokensAfter(TOKEN).removed(PROPERTY_2.propertyKeyId(), PROPERTY_2.value()).build();
// Then
assertThat(updates.valueUpdatesForIndexKeys(singleton(entity.nonSchemaIndex()), propertyLoader(PROPERTY_1, PROPERTY_2, PROPERTY_3), entity.type(), NULL, INSTANCE)).contains(IndexEntryUpdate.change(ENTITY_ID, entity.nonSchemaIndex(), VALUES_123, new Value[] { PROPERTY_1.value(), null, PROPERTY_3.value() }));
}
use of org.neo4j.storageengine.api.EntityUpdates in project neo4j by neo4j.
the class EntityValueUpdatesTest method shouldGenerateUpdatesForLabelAdditionWithExistingProperties.
@Test
void shouldGenerateUpdatesForLabelAdditionWithExistingProperties() {
// When
EntityUpdates updates = EntityUpdates.forEntity(ENTITY_ID, false).withTokens(EMPTY).withTokensAfter(TOKEN).existing(PROPERTY_KEY_ID_1, Values.of("Neo")).existing(PROPERTY_KEY_ID_2, Values.of(100L)).existing(PROPERTY_KEY_ID_3, Values.pointValue(CoordinateReferenceSystem.WGS84, 12.3, 45.6)).build();
// Then
assertThat(updates.valueUpdatesForIndexKeys(NODE_INDEXES, propertyLoader(PROPERTY_1, PROPERTY_2, PROPERTY_3), EntityType.NODE, NULL, INSTANCE)).contains(IndexEntryUpdate.add(ENTITY_ID, NODE_INDEX_1, PROPERTY_1.value()), IndexEntryUpdate.add(ENTITY_ID, NODE_INDEX_2, PROPERTY_2.value()), IndexEntryUpdate.add(ENTITY_ID, NODE_INDEX_3, PROPERTY_3.value()), IndexEntryUpdate.add(ENTITY_ID, NODE_INDEX_123, VALUES_123));
}
use of org.neo4j.storageengine.api.EntityUpdates in project neo4j by neo4j.
the class EntityValueUpdatesTest method shouldNotGenerateUpdatesForPropertyAdditionWithNoLabels.
@Test
void shouldNotGenerateUpdatesForPropertyAdditionWithNoLabels() {
// When
EntityUpdates updates = EntityUpdates.forEntity(ENTITY_ID, false).added(PROPERTY_1.propertyKeyId(), PROPERTY_1.value()).build();
// Then
assertThat(updates.valueUpdatesForIndexKeys(NODE_INDEXES, assertNoLoading(), EntityType.NODE, NULL, INSTANCE)).isEmpty();
}
Aggregations