blob: defe10705f2531ab22a1c66a7c36a1d45772b368 [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.security.user;
import java.util.ArrayList;
import java.util.List;
import javax.jcr.RepositoryException;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import org.apache.jackrabbit.JcrConstants;
import org.apache.jackrabbit.api.security.user.Group;
import org.apache.jackrabbit.oak.api.PropertyState;
import org.apache.jackrabbit.oak.api.Tree;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.spi.security.ConfigurationParameters;
import org.apache.jackrabbit.oak.spi.security.principal.EveryonePrincipal;
import org.junit.Test;
import static com.google.common.base.Preconditions.checkNotNull;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
public class UserImporterMembershipIgnoreTest extends UserImporterBaseTest {
Tree groupTree;
private Tree memberRefList;
UserProvider userProvider;
String knownMemberContentId;
String unknownContentId;
@Override
public void before() throws Exception {
super.before();
userProvider = new UserProvider(root, ConfigurationParameters.EMPTY);
knownMemberContentId = userProvider.getContentID(testUser.getID());
unknownContentId = userProvider.getContentID("member1");
init();
groupTree = createGroupTree();
groupTree.setProperty(REP_PRINCIPAL_NAME, "groupPrincipal");
memberRefList = groupTree.addChild(REP_MEMBERS_LIST);
memberRefList.setProperty(JcrConstants.JCR_PRIMARYTYPE, NT_REP_MEMBER_REFERENCES_LIST);
assertTrue(importer.start(memberRefList));
}
@Test(expected = IllegalArgumentException.class)
public void testInvalidMemberContentId() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, "memberId")));
importer.processReferences();
}
@Test
public void testUnknownMember() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, unknownContentId)));
importer.processReferences();
// default importbehavior == IGNORE
assertFalse(memberRefList.hasChild("memberRef"));
}
@Test
public void testKnownMemberThresholdNotReached() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, knownMemberContentId)));
importer.processReferences();
assertTrue(groupTree.hasProperty(REP_MEMBERS));
}
@Test
public void testKnownMemberThresholdReached() throws Exception {
List<String> memberIds = new ArrayList<>();
for (int i = 0; i <= MembershipWriter.DEFAULT_MEMBERSHIP_THRESHOLD; i++) {
memberIds.add(userProvider.getContentID("m"+i));
}
groupTree.setProperty(REP_MEMBERS, memberIds, Type.STRINGS);
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, knownMemberContentId)));
importer.processReferences();
assertEquals(1, memberRefList.getChildrenCount(100));
assertTrue(memberRefList.getChildren().iterator().next().hasProperty(REP_MEMBERS));
}
@Test
public void testMixedMembers() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, unknownContentId, knownMemberContentId)));
importer.processReferences();
assertFalse(memberRefList.hasChild("memberRef"));
}
@Test(expected = RepositoryException.class)
public void testGroupRemovedBeforeProcessing() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, knownMemberContentId)));
groupTree.remove();
importer.processReferences();
}
@Test(expected = RepositoryException.class)
public void testUserConvertedGroupBeforeProcessing() throws Exception {
importer.startChildInfo(createNodeInfo("memberRef", NT_REP_MEMBER_REFERENCES), ImmutableList.of(createPropInfo(REP_MEMBERS, knownMemberContentId)));
groupTree.setProperty(JcrConstants.JCR_PRIMARYTYPE, NT_REP_USER);
importer.processReferences();
}
@Test
public void testAddMemberToNonExistingMember() throws Exception {
groupTree.setProperty(REP_MEMBERS, ImmutableList.of(unknownContentId), Type.STRINGS);
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, knownMemberContentId), mockPropertyDefinition(NT_REP_GROUP, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableSet.of(unknownContentId, knownMemberContentId), ImmutableSet.copyOf(members.getValue(Type.STRINGS)));
}
@Test
public void testAddReplacesExistingMember() throws Exception {
Tree userTree = createUserTree();
String contentId = userProvider.getContentID(userTree);
assertTrue(importer.handlePropInfo(userTree, createPropInfo(REP_AUTHORIZABLE_ID, TEST_USER_ID), mockPropertyDefinition(NT_REP_AUTHORIZABLE, false)));
groupTree.setProperty(REP_MEMBERS, ImmutableList.of(knownMemberContentId), Type.STRINGS);
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_GROUP, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableSet.of(contentId), ImmutableSet.copyOf(members.getValue(Type.STRINGS)));
}
@Test
public void testNewMembers() throws Exception {
Tree userTree = createUserTree();
String contentId = userProvider.getContentID(userTree);
assertTrue(importer.handlePropInfo(userTree, createPropInfo(REP_AUTHORIZABLE_ID, TEST_USER_ID), mockPropertyDefinition(NT_REP_AUTHORIZABLE, false)));
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_MEMBER_REFERENCES, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableList.of(contentId), ImmutableList.copyOf(members.getValue(Type.STRINGS)));
}
@Test
public void testNewMembers2() throws Exception {
Tree userTree = createUserTree();
String contentId = userProvider.getContentID(userTree);
// NOTE: reversed over of import compared to 'testNewMembers'
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_MEMBER_REFERENCES, true)));
assertTrue(importer.handlePropInfo(userTree, createPropInfo(REP_AUTHORIZABLE_ID, TEST_USER_ID), mockPropertyDefinition(NT_REP_AUTHORIZABLE, false)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableList.of(contentId), ImmutableList.copyOf(members.getValue(Type.STRINGS)));
}
@Test
public void testAddSameAsMember() throws Exception {
String contentId = userProvider.getContentID(groupTree);
// NOTE: reversed over of import compared to 'testNewMembers'
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_MEMBER_REFERENCES, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNull(members);
}
@Test
public void testNewMembersToEveryone() throws Exception {
groupTree.setProperty(REP_MEMBERS, ImmutableList.of(knownMemberContentId), Type.STRINGS);
groupTree.setProperty(REP_PRINCIPAL_NAME, EveryonePrincipal.NAME);
Tree userTree = createUserTree();
String contentId = userProvider.getContentID(userTree);
assertTrue(importer.handlePropInfo(userTree, createPropInfo(REP_AUTHORIZABLE_ID, TEST_USER_ID), mockPropertyDefinition(NT_REP_AUTHORIZABLE, false)));
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_MEMBER_REFERENCES, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableList.of(knownMemberContentId), ImmutableList.copyOf(members.getValue(Type.STRINGS)));
}
@Test
public void testAddExistingMembers() throws Exception {
Tree userTree = createUserTree();
String contentId = userProvider.getContentID(userTree);
// member to be imported has already been added before
Group gr = (Group) ((UserManagerImpl) getUserManager(root)).getAuthorizable(groupTree);
checkNotNull(gr).addMembers(TEST_USER_ID);
assertTrue(importer.handlePropInfo(userTree, createPropInfo(REP_AUTHORIZABLE_ID, TEST_USER_ID), mockPropertyDefinition(NT_REP_AUTHORIZABLE, false)));
assertTrue(importer.handlePropInfo(groupTree, createPropInfo(REP_MEMBERS, contentId), mockPropertyDefinition(NT_REP_MEMBER_REFERENCES, true)));
importer.processReferences();
PropertyState members = groupTree.getProperty(REP_MEMBERS);
assertNotNull(members);
assertEquals(ImmutableList.of(contentId), ImmutableList.copyOf(members.getValue(Type.STRINGS)));
}
}