use of org.neo4j.kernel.impl.store.record.NodeRecord in project neo4j by neo4j.
the class NodeLabelsFieldTest method addingAnAlreadyAddedLabelWhenLabelsAreInlinedShouldFail.
@Test
public void addingAnAlreadyAddedLabelWhenLabelsAreInlinedShouldFail() throws Exception {
// GIVEN
int labelId = 1;
NodeRecord node = nodeRecordWithInlinedLabels(labelId);
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField(node);
// WHEN
try {
nodeLabels.add(labelId, nodeStore, nodeStore.getDynamicLabelStore());
fail("Should have thrown exception");
} catch (IllegalStateException e) {
// THEN
}
}
use of org.neo4j.kernel.impl.store.record.NodeRecord in project neo4j by neo4j.
the class NodeLabelsFieldTest method twoDynamicRecordsShouldShrinkToOneWhenRemovingWithoutChangingItsOwner.
@Test
public void twoDynamicRecordsShouldShrinkToOneWhenRemovingWithoutChangingItsOwner() throws Exception {
// GIVEN
// will occupy 61B of data, i.e. just two dynamic records
Long nodeId = 42L;
NodeRecord node = nodeRecordWithDynamicLabels(nodeId, nodeStore, oneByteLongs(57));
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField(node);
List<DynamicRecord> changedDynamicRecords = Iterables.addToCollection(nodeLabels.remove(255, /*Initial labels go from 255 and down to 255-58*/
nodeStore), new ArrayList<DynamicRecord>());
// WHEN
Pair<Long, long[]> changedPair = DynamicNodeLabels.getDynamicLabelsArrayAndOwner(changedDynamicRecords, nodeStore.getDynamicLabelStore());
// THEN
assertEquals(nodeId, changedPair.first());
}
use of org.neo4j.kernel.impl.store.record.NodeRecord in project neo4j by neo4j.
the class NodeLabelsFieldTest method shouldReadIdOfDynamicRecordFromDynamicLabelsField.
@Test
public void shouldReadIdOfDynamicRecordFromDynamicLabelsField() throws Exception {
// GIVEN
NodeRecord node = nodeRecordWithDynamicLabels(nodeStore, oneByteLongs(5));
DynamicRecord dynamicRecord = node.getDynamicLabelRecords().iterator().next();
// WHEN
long dynRecordId = NodeLabelsField.firstDynamicLabelRecordId(node.getLabelField());
// THEN
assertEquals(dynamicRecord.getId(), dynRecordId);
}
use of org.neo4j.kernel.impl.store.record.NodeRecord in project neo4j by neo4j.
the class NodeLabelsFieldTest method shouldInlineOneLabel.
@Test
public void shouldInlineOneLabel() throws Exception {
// GIVEN
long labelId = 10;
NodeRecord node = nodeRecordWithInlinedLabels();
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField(node);
// WHEN
nodeLabels.add(labelId, null, null);
// THEN
assertEquals(inlinedLabelsLongRepresentation(labelId), node.getLabelField());
}
use of org.neo4j.kernel.impl.store.record.NodeRecord in project neo4j by neo4j.
the class NodeLabelsFieldTest method nodeRecordWithDynamicLabels.
private NodeRecord nodeRecordWithDynamicLabels(long nodeId, NodeStore nodeStore, long... labels) {
NodeRecord node = new NodeRecord(nodeId, false, 0, 0);
Collection<DynamicRecord> initialRecords = allocateAndApply(nodeStore, node.getId(), labels);
node.setLabelField(dynamicLabelsLongRepresentation(initialRecords), initialRecords);
return node;
}
Aggregations