use of org.neo4j.kernel.impl.store.NodeLabels 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.NodeLabels 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.NodeLabels 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.NodeLabels in project neo4j by neo4j.
the class NodeLabelsFieldTest method maximumOfSevenInlinedLabels.
@Test
public void maximumOfSevenInlinedLabels() throws Exception {
// GIVEN
long[] labels = new long[] { 0, 1, 2, 3, 4, 5, 6 };
NodeRecord node = nodeRecordWithInlinedLabels(labels);
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField(node);
// WHEN
Iterable<DynamicRecord> changedDynamicRecords = nodeLabels.add(23, nodeStore, nodeStore.getDynamicLabelStore());
// THEN
assertEquals(dynamicLabelsLongRepresentation(changedDynamicRecords), node.getLabelField());
assertEquals(1, Iterables.count(changedDynamicRecords));
}
use of org.neo4j.kernel.impl.store.NodeLabels in project neo4j by neo4j.
the class NodeLabelsFieldTest method shouldInlineOneLabelWithHighId.
@Test
public void shouldInlineOneLabelWithHighId() throws Exception {
// GIVEN
long labelId = 10000;
NodeRecord node = nodeRecordWithInlinedLabels();
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField(node);
// WHEN
nodeLabels.add(labelId, null, null);
// THEN
assertEquals(inlinedLabelsLongRepresentation(labelId), node.getLabelField());
}
Aggregations