Files
alfresco-community-repo/source/test-java/org/alfresco/repo/jscript/PeopleTest.java
Alan Davis 1eda74e709 Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)
107010: Merged 5.0.N (5.0.3) to HEAD-BUG-FIX (5.1/Cloud)
      106860: MNT-14113: User admin console: sorting users causes some to disappear
      The behavior of indexed people search has been modified to return the same results as a CQ search. The test for this behavior has been added to 'PeolpleTest'. This test is valid for SOLR1/SOLR4 and "buildonly" (Lucene)


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@107049 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2015-06-25 08:28:15 +00:00

261 lines
11 KiB
Java

/*
* Copyright (C) 2005-2015 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.repo.jscript;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.transaction.UserTransaction;
import junit.framework.TestCase;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.security.authentication.AuthenticationUtil;
import org.alfresco.service.ServiceRegistry;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.security.PersonService;
import org.alfresco.service.cmr.security.PersonService.PersonInfo;
import org.alfresco.service.transaction.TransactionService;
import org.alfresco.test_category.OwnJVMTestsCategory;
import org.alfresco.util.ApplicationContextHelper;
import org.alfresco.util.PropertyMap;
import org.alfresco.util.ScriptPagingDetails;
import org.junit.experimental.categories.Category;
import org.springframework.context.ApplicationContext;
/**
* Unit tests for {@link org.alfresco.repo.jscript.People}
* <p>
* Note that this class currently works with Lucene only. In other words, it
* won't work with Solr.
*
* @author Jamal Kaabi-Mofrad
* @since 4.2
*/
@Category(OwnJVMTestsCategory.class)
public class PeopleTest extends TestCase
{
private static final String SIMPLE_FILTER = "a";
private static final String CQ_SIMPLE_FILTER = SIMPLE_FILTER + " [hint:useCQ]";
private static final String DEFAULT_SORT_BY_FIELD = "username";
private static final UserInfo USER_1 = new UserInfo("user1", "john junior", "lewis second");
private static final UserInfo USER_2 = new UserInfo("user2", "john senior", "lewis second");
private static final UserInfo USER_3 = new UserInfo("user3", "john junior", "lewis third");
private static final UserInfo USER_4 = new UserInfo("user4", "john", "lewis third");
private static final UserInfo USER_5 = new UserInfo("user5", "mike", "doe first");
private static final UserInfo USER_6 = new UserInfo("user6", "sam", "doe first");
private static final UserInfo USER_7 = new UserInfo("user7", "sara jones", "doe");
private static final UserInfo USER_8 = new UserInfo("user8", "sara", "doe");
private static final ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
private TransactionService transactionService;
private UserTransaction txn;
private ServiceRegistry serviceRegistry;
private People people;
private PersonService personService;
/*
* @see junit.framework.TestCase#setUp()
*/
protected void setUp() throws Exception
{
people = (People) ctx.getBean("peopleScript");
serviceRegistry = (ServiceRegistry) ctx.getBean("ServiceRegistry");
transactionService = serviceRegistry.getTransactionService();
personService = serviceRegistry.getPersonService();
AuthenticationUtil.setAdminUserAsFullyAuthenticatedUser();
// Start a transaction
txn = transactionService.getUserTransaction();
txn.begin();
// Create users
createUser(USER_1, USER_2, USER_3, USER_4, USER_5, USER_6, USER_7, USER_8);
}
@Override
protected void tearDown() throws Exception
{
try
{
txn.rollback();
}
catch (Throwable e)
{
e.printStackTrace();
}
AuthenticationUtil.clearCurrentSecurityContext();
}
public void testGetPeople()
{
ScriptPagingDetails paging = new ScriptPagingDetails(0, 0);
// Get people with multi-part firstNames
// USER_1 and USER_3 both have 'john junior' as their firstName
// The query shouldn't select USER_4
List<PersonInfo> persons = people.getPeopleImpl("john junior", paging, null, null);
assertEquals("There are two users who have \"john junior\" as their first name.", 2,
persons.size());
assertEquals(USER_1.getFirstName(), persons.get(0).getFirstName());
assertEquals(USER_3.getFirstName(), persons.get(1).getFirstName());
// Get user with multi-part firstNames and lastNames
persons = people.getPeopleImpl("john junior lewis sec*", paging, null, null);
assertEquals("There is one user with the name: \"john junior lewis second\".", 1,
persons.size());
assertEquals(USER_1.getFirstName(), persons.get(0).getFirstName());
assertEquals(USER_1.getLastName(), persons.get(0).getLastName());
// Only USER_2's first name is "john senior"
persons = people.getPeopleImpl("john senior", paging, null, null);
assertEquals("There is one user who has \"john senior\" as his first name.", 1,
persons.size());
assertEquals(USER_2.getFirstName(), persons.get(0).getFirstName());
assertEquals(USER_2.getLastName(), persons.get(0).getLastName());
persons = people.getPeopleImpl("john*", paging, null, null);
assertEquals("There are four users with \"john\" as their first name.", 4, persons.size());
// Get people with multi-part lastNames
// USER_3 and USER_4 both have 'lewis third' as their lastName
persons = people.getPeopleImpl("lewis third", paging, null, null);
assertEquals("There are two users who have \"lewis third\" as their last name.", 2,
persons.size());
assertEquals(USER_3.getLastName(), persons.get(0).getLastName());
assertEquals(USER_4.getLastName(), persons.get(1).getLastName());
// Only USER_5 and USER_6 have last name "doe first"
// The query shouldn't select USER_7
persons = people.getPeopleImpl("doe fi*", paging, null, null);
assertEquals("There are two users who have \"doe first\" as their last name.", 2,
persons.size());
assertEquals(USER_5.getLastName(), persons.get(0).getLastName());
assertEquals(USER_6.getLastName(), persons.get(1).getLastName());
persons = people.getPeopleImpl("lewi*", paging, null, null);
assertEquals("There are four users with \"lewis\" as their last name.", 4, persons.size());
persons = people.getPeopleImpl("thir*", paging, null, null);
assertEquals("There are two users with \"lewis third\" as their last name.", 2, persons.size());
// Get people with single firstName and multi-part lastNames
persons = people.getPeopleImpl("sam doe first", paging, null, null);
assertEquals("There is one user with the name: \"sam doe first\".", 1, persons.size());
assertEquals(USER_6.getFirstName(), persons.get(0).getFirstName());
assertEquals(USER_6.getLastName(), persons.get(0).getLastName());
// Get people with multi-part firstNames and single lastName
persons = people.getPeopleImpl("sara jones doe", paging, null, null);
assertEquals("There is one user with the name: \"sara jones doe\".", 1, persons.size());
assertEquals(USER_7.getFirstName(), persons.get(0).getFirstName());
assertEquals(USER_7.getLastName(), persons.get(0).getLastName());
// Get people with single firstName and single lastName
persons = people.getPeopleImpl("sara doe", paging, null, null);
assertEquals("There are two users with the name: \"sara doe\".", 2, persons.size());
assertEquals(USER_7.getLastName(), persons.get(0).getLastName());
assertEquals(USER_8.getLastName(), persons.get(0).getLastName());
}
/**
* Test for <a href="https://issues.alfresco.com/jira/browse/MNT-14113">MNT-14113</a>. <br />
* <br />
* This test is also valid for SOLR1 and SOLR4!
*/
public void testGetPeopleByPatternIndexedAndCQ() throws Exception
{
ScriptPagingDetails paging = new ScriptPagingDetails(0, 0);
List<PersonInfo> unsortedPeople = people.getPeopleImpl(CQ_SIMPLE_FILTER, paging, null, null);
assertNotNull("No one person is found!", unsortedPeople);
Set<NodeRef> expectedUsers = new HashSet<NodeRef>();
for (PersonInfo person : unsortedPeople)
{
expectedUsers.add(person.getNodeRef());
}
List<PersonInfo> sortedPeople = people.getPeopleImpl(SIMPLE_FILTER, paging, DEFAULT_SORT_BY_FIELD, null);
assertNotNull("No one person is found and sorted!", sortedPeople);
assertEquals(expectedUsers.size(), sortedPeople.size());
for (PersonInfo person : sortedPeople)
{
assertTrue(("Unexpected person: '" + person.getUserName() + "[" + person.getNodeRef() + "]'"), expectedUsers.contains(person.getNodeRef()));
}
}
private void createUser(UserInfo... userInfo)
{
for (UserInfo user : userInfo)
{
PropertyMap testUser = new PropertyMap();
testUser.put(ContentModel.PROP_USERNAME, user.getUserName());
testUser.put(ContentModel.PROP_FIRSTNAME, user.getFirstName());
testUser.put(ContentModel.PROP_LASTNAME, user.getLastName());
testUser.put(ContentModel.PROP_EMAIL, user.getUserName() + "@acme.test");
testUser.put(ContentModel.PROP_PASSWORD, "password");
personService.createPerson(testUser);
}
}
static class UserInfo
{
private final String userName;
private final String firstName;
private final String lastName;
public UserInfo(String userName, String firstName, String lastName)
{
this.userName = userName;
this.firstName = firstName;
this.lastName = lastName;
}
public String getUserName()
{
return this.userName;
}
public String getFirstName()
{
return this.firstName;
}
public String getLastName()
{
return this.lastName;
}
@Override
public String toString()
{
return "UserInfo [userName=" + this.userName + ", firstName=" + this.firstName
+ ", lastName=" + this.lastName + "]";
}
}
}