blob: 328d4ab07c622b9769b1250ca563d126f6a0cc88 [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.util.Random;
import javax.jcr.RepositoryException;
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;
/** Test the creation of groups */
public class CreateGroupsTest {
@Rule
public final SlingContext context = new SlingContext(ResourceResolverType.JCR_OAK);
private static final Random random = new Random(42);
private String namePrefix;
private TestUtil U;
@Before
public void setup() throws RepositoryException {
U = new TestUtil(context);
namePrefix = "group_" + random.nextInt();
}
@Test
public void createGroup() throws Exception {
final String groupId = namePrefix + "_cg";
U.parseAndExecute("create group " + groupId);
U.assertGroup("after creating group " + groupId, groupId, true);
}
@Test
public void createDeleteSingleTest() throws Exception {
final String groupId = namePrefix + "_cdst";
U.assertGroup("at start of test", groupId, false);
U.parseAndExecute("create group " + groupId);
U.assertGroup("after creating group", groupId, true);
U.parseAndExecute("delete group " + groupId);
U.assertGroup("after deleting group", groupId, false);
}
@Test
public void createGroupWithRelativePathTest() throws Exception {
final String groupId = namePrefix + "_cgwpt";
final String path = "testgroup/folder_for_" + groupId;
U.parseAndExecute("create group " + groupId + " with path " + path);
U.assertGroup("after creating group " + groupId, groupId, true, path);
}
@Test
public void createGroupWithAbsolutePathTest() throws Exception {
final String groupId = namePrefix + "_cgwpt";
final String path = "/rep:security/rep:authorizables/rep:groups/testgroup/folder_for_" + groupId;
U.parseAndExecute("create group " + groupId + " with path " + path);
U.assertGroup("after creating group " + groupId, groupId, true, path);
}
@Test
public void createGroupMultipleTimes() throws Exception {
final String groupname = namePrefix + "_cgm";
U.assertGroup("before test", groupname, false);
final String input = "create group " + groupname;
for (int i = 0; i < 50; i++) {
U.parseAndExecute(input);
}
U.assertGroup("after creating it multiple times", groupname, true);
}
}