Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

77136: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      73565: ACE-1685: SolrInformationServer.indexAcls(List<AclReaders>, boolean) now indexes denied authorities.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@77991 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-07-23 15:47:54 +00:00
parent 110047aa9b
commit 4433cb3850
2 changed files with 85 additions and 21 deletions

View File

@@ -0,0 +1,78 @@
/*
* Copyright (C) 2005-2014 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.solr.client;
import static java.util.Arrays.asList;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Some simple sanity tests for the {@link AclReaders} class.
*
* @author Matt Ward
*/
public class AclReadersTest
{
@Test
public void testHashCode()
{
// We only care about ID for equals() and hashCode()
// The same ID
assertEquals(new AclReaders(123, null, null, 0, null).hashCode(),
new AclReaders(123, null, null, 0, null).hashCode());
// Different ID
assertNotEquals(new AclReaders(123, null, null, 0, null).hashCode(),
new AclReaders(124, null, null, 0, null).hashCode());
}
@Test
public void testEqualsObject()
{
// The very same
final AclReaders aclReaders = new AclReaders(0, null, null, 0, null);
assertTrue(aclReaders.equals(aclReaders));
// The same ID
assertEquals(new AclReaders(123, null, null, 0, null),
new AclReaders(123, null, null, 0, null));
// Different ID
assertNotEquals(new AclReaders(123, null, null, 0, null),
new AclReaders(124, null, null, 0, null));
}
@Test
public void testGetReaders()
{
AclReaders aclReaders = new AclReaders(0, null, asList("d1", "d2"), 0, null);
assertEquals(asList("d1", "d2"), aclReaders.getDenied());
}
@Test
public void testGetDenied()
{
AclReaders aclReaders = new AclReaders(0, asList("r1", "r2", "r3"), null, 0, null);
assertEquals(asList("r1", "r2", "r3"), aclReaders.getReaders());
}
}