blob: 7a0a8c67eaed67098208e8b3a2b881bd53d1b107 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.oak.jcr;
import static junit.framework.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import javax.jcr.Node;
import javax.jcr.NodeIterator;
import javax.jcr.Session;
import org.apache.jackrabbit.oak.fixture.NodeStoreFixture;
import org.junit.Test;
/**
* Test nodes with many child nodes.
*/
public class ManyChildrenIT extends AbstractRepositoryTest {
public ManyChildrenIT(NodeStoreFixture fixture) {
super(fixture);
}
@Test
public void sizeTest() throws Exception {
Session session = getAdminSession();
int count = 5000;
String nodeType = "nt:folder";
Node many = session.getRootNode().addNode("many", nodeType);
for (int i = 0; i < count; i++) {
many.addNode("test" + i, nodeType);
}
session.save();
Session session2 = getAdminSession();
many = session2.getRootNode().getNode("many");
NodeIterator it = many.getNodes();
long size = it.getSize();
assertTrue("size: " + size, size == -1 || size == count);
for (int i = 0; i < count; i++) {
assertTrue(it.hasNext());
it.next();
}
assertFalse(it.hasNext());
session2.logout();
}
@Test
public void addRemoveNodes() throws Exception {
int numNodes = 101;
Session writer = getAdminSession();
Node test = writer.getRootNode().addNode("test", "nt:unstructured");
for (int i = 0; i < numNodes; i++) {
test.addNode("node-" + i, "nt:unstructured");
}
writer.save();
for (int i = 0; i < numNodes; i++) {
if (i % 2 == 0) {
test.getNode("node-" + i).remove();
}
}
writer.save();
test.addNode("node-x");
writer.save();
assertTrue(test.hasNode("node-x"));
}
}