blob: 492dbc5651e5859a66b20be3a70d968b8c1a9ea6 [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 and delete of users */
public class CreateUsersTest {
@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 = "user_" + random.nextInt();
}
@Test
public void createDeleteSingleTest() throws Exception {
final String userId = namePrefix + "_cdst";
U.assertUser("at start of test", userId, false);
U.parseAndExecute("create user " + userId);
U.assertUser("after creating user", userId, true);
U.parseAndExecute("delete user " + userId);
U.assertUser("after deleting user", userId, false);
}
@Test
public void createDeleteSingleWithPasswordTest() throws Exception {
final String userId = namePrefix + "_cdstpw";
U.assertUser("at start of test", userId, false);
U.parseAndExecute("create user " + userId + " with password mypw");
U.assertUser("after creating user", userId, true);
U.parseAndExecute("delete user " + userId);
U.assertUser("after deleting user", userId, false);
}
@Test
public void createUserWithRelativePathTest() throws Exception {
final String userId = namePrefix + "_cuwpt";
final String path = "testusers/folder_for_" + userId;
U.parseAndExecute("create user " + userId + " with path " + path);
U.assertUser("after creating user " + userId, userId, true, path);
}
@Test
public void createUserWithAbsolutePathTest() throws Exception {
final String userId = namePrefix + "_cuwpt";
final String path = "/rep:security/rep:authorizables/rep:users/testusers/folder_for_" + userId;
U.parseAndExecute("create user " + userId + " with path " + path);
U.assertUser("after creating user " + userId, userId, true, path);
}
@Test
public void createUserWithPathAndPasswordTest() throws Exception {
final String userId = namePrefix + "_cuwpt";
final String path = "testuserwithpassword/folder_for_" + userId;
U.parseAndExecute("create user " + userId + " with path " + path + " with password asdf");
U.assertUser("after creating user " + userId, userId, true, path);
}
private String user(int index) {
return namePrefix + "_" + index;
}
@Test
public void createUserMultipleTimes() throws Exception {
final String username = namePrefix + "_multiple";
U.assertUser("before test", username, false);
final String input = "create user " + username;
for(int i=0; i < 50; i++) {
U.parseAndExecute(input);
}
U.assertUser("after creating it multiple times", username, true);
}
@Test
public void createDeleteMultipleTest() throws Exception {
final int n = 50;
{
final StringBuilder input = new StringBuilder();
for(int i=0; i < n; i++) {
U.assertUser("at start of test", user(i), false);
input.append("create user ").append(user(i)).append("\n");
}
U.parseAndExecute(input.toString());
}
{
final StringBuilder input = new StringBuilder();
for(int i=0; i < n; i++) {
U.assertUser("before deleting user", user(i), true);
input.append("delete user ").append(user(i)).append("\n");
}
U.parseAndExecute(input.toString());
}
for(int i=0; i < n; i++) {
U.assertUser("after deleting users", user(i), false);
}
}
}