blob: cb356d9c08e9709a8f6a3fab04e2a30e2c666fac [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.sling.jcr.repoinit;
import java.io.IOException;
import java.util.Arrays;
import java.util.Collections;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
import org.apache.sling.commons.testing.jcr.RepositoryUtil;
import org.apache.sling.jcr.repoinit.impl.TestUtil;
import org.apache.sling.testing.mock.sling.ResourceResolverType;
import org.apache.sling.testing.mock.sling.junit.SlingContext;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/** Test the creation of paths with specific node types */
public class CreatePathsTest {
@Rule
public final SlingContext context = new SlingContext(ResourceResolverType.JCR_OAK);
private TestUtil U;
@Before
public void setup() throws RepositoryException, IOException {
U = new TestUtil(context);
RepositoryUtil.registerSlingNodeTypes(U.adminSession);
}
@Test
public void createSimplePath() throws Exception {
final String path = "/one/two/three";
U.parseAndExecute("create path " + path);
U.assertNodeExists(path);
}
@Test
public void createSimplePathWithNamespace() throws Exception {
final String path = "/rep:policy/one";
U.parseAndExecute("create path " + path);
U.assertNodeExists(path);
}
@Test
public void createSimplePathWithAtSymbol() throws Exception {
final String path = "/one/@two/three";
U.parseAndExecute("create path " + path);
U.assertNodeExists(path);
}
@Test
public void createSimplePathWithPlusSymbol() throws Exception {
final String path = "/one/+two/three";
U.parseAndExecute("create path " + path);
U.assertNodeExists(path);
}
@Test
public void createPathWithTypes() throws Exception {
final String path = "/four/five(sling:Folder)/six(nt:folder)";
U.parseAndExecute("create path " + path);
U.assertNodeExists("/four", "nt:unstructured");
U.assertNodeExists("/four/five", "sling:Folder");
U.assertNodeExists("/four/five/six", "nt:folder");
}
@Test
public void createPathWithSpecificDefaultType() throws Exception {
final String path = "/seven/eight(nt:unstructured)/nine";
U.parseAndExecute("create path (sling:Folder) " + path);
U.assertNodeExists("/seven", "sling:Folder");
U.assertNodeExists("/seven/eight", "nt:unstructured");
U.assertNodeExists("/seven/eight/nine", "sling:Folder");
}
@Test
public void createPathWithJcrDefaultType() throws Exception {
final String path = "/ten/eleven(sling:Folder)/twelve";
U.parseAndExecute("create path " + path);
U.assertNodeExists("/ten", "nt:unstructured");
U.assertNodeExists("/ten/eleven", "sling:Folder");
U.assertNodeExists("/ten/eleven/twelve", "sling:Folder");
}
@Test
public void createPathWithMixins() throws Exception {
final String path = "/eleven(mixin mix:lockable)/twelve(mixin mix:referenceable,mix:shareable)/thirteen";
U.parseAndExecute("create path " + path);
U.assertNodeExists("/eleven", Collections.singletonList("mix:lockable"));
U.assertNodeExists("/eleven/twelve", Arrays.asList("mix:shareable", "mix:referenceable"));
}
@Test
public void createPathWithJcrDefaultTypeAndMixins() throws Exception {
final String path = "/twelve/thirteen(mixin mix:lockable)/fourteen";
U.parseAndExecute("create path (nt:unstructured)" + path);
U.assertNodeExists("/twelve", "nt:unstructured", Collections.<String>emptyList());
U.assertNodeExists("/twelve/thirteen", "nt:unstructured", Collections.singletonList("mix:lockable"));
U.assertNodeExists("/twelve/thirteen/fourteen", "nt:unstructured", Collections.<String>emptyList());
}
@Test
public void createPathWithJcrTypeAndMixins() throws Exception {
final String path = "/thirteen(nt:unstructured)/fourteen(nt:unstructured mixin mix:lockable)/fifteen(mixin mix:lockable)";
U.parseAndExecute("create path " + path);
U.assertNodeExists("/thirteen", "nt:unstructured", Collections.<String>emptyList());
U.assertNodeExists("/thirteen/fourteen", "nt:unstructured", Collections.singletonList("mix:lockable"));
U.assertNodeExists("/thirteen/fourteen/fifteen", "nt:unstructured", Collections.singletonList("mix:lockable"));
}
@Test
public void createPathNoDefaultPrimaryType() throws Exception {
U.adminSession.getRootNode().addNode("folder", "nt:folder");
U.parseAndExecute("create path /folder/subfolder/subfolder2");
Node subFolder = U.adminSession.getNode("/folder/subfolder");
assertEquals("sling:Folder", subFolder.getPrimaryNodeType().getName());
Node subFolder2 = subFolder.getNode("subfolder2");
assertEquals("sling:Folder", subFolder2.getPrimaryNodeType().getName());
}
}