mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
12943: Port of support for ADB-47 from V2.1-A to 3.1 12948: Port of tests from CHK-2235 for ADB-20 from V2.1-A to 3.1 12965: Activated index tracker Quartz job by default 12974: Port for lazy creation of home folders with configuration from V2.1-A to V3.1: original CHK-2619, CHK-2716 12976: Merged V2.1A to V3.1 8562: (record-only) Fix to lazily create home folders - DO NOT MERGE 8694: (record-only) Added configuration for lazy or eager creation of home folders 12978: Merged V3.0 to V3.1 12920: Merged V2.2 to V3.0 12456: Wire up AVM locking service by interface to allow for potential over-ride 12457: Make AVM ChildKey case insensitive 12470: Merged V2.2.1-NBC-FIXES to V2.2 12156: Optimizations to WCMWorkflowEvaluator and WCMWorkflowDeletedEvaluator 12605: Hide annoying "Virtualisation Server not started" warnings (by making them debug) 12707: AVM console - "snap" also allows tag and description to be specified 12979: Build/test fix ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/DEV/V2.2.1-NBC-FIXES:r12156 Merged /alfresco/BRANCHES/V2.1-A:r8562,8694 Merged /alfresco/BRANCHES/V3.0:r12920 Merged /alfresco/BRANCHES/V2.2:r12456-12457,12470,12605,12707 Merged /alfresco/BRANCHES/V3.1:r12943,12948,12965,12974,12976,12978-12979 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13544 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
392 lines
14 KiB
Java
392 lines
14 KiB
Java
/*
|
|
* Copyright (C) 2005-2008 Alfresco Software Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
|
|
package org.alfresco.repo.usage;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import javax.transaction.UserTransaction;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.repo.content.MimetypeMap;
|
|
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
import org.alfresco.service.cmr.repository.ContentService;
|
|
import org.alfresco.service.cmr.repository.ContentWriter;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.NodeService;
|
|
import org.alfresco.service.cmr.repository.StoreRef;
|
|
import org.alfresco.service.cmr.security.AuthenticationService;
|
|
import org.alfresco.service.cmr.security.PersonService;
|
|
import org.alfresco.service.cmr.usage.ContentUsageService;
|
|
import org.alfresco.service.namespace.NamespaceService;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.service.transaction.TransactionService;
|
|
import org.alfresco.util.ApplicationContextHelper;
|
|
import org.springframework.context.ApplicationContext;
|
|
|
|
/**
|
|
* Test enabling (recalculating) and disabling (clearing) and user usages, and also collapsing user usage deltas.
|
|
*/
|
|
public class UserUsageTrackingComponentTest extends TestCase
|
|
{
|
|
private static ApplicationContext applicationContext = ApplicationContextHelper.getApplicationContext();
|
|
|
|
private boolean clean = true;
|
|
|
|
private AuthenticationService authenticationService;
|
|
private ContentService contentService;
|
|
private TransactionService transactionService;
|
|
private PersonService personService;
|
|
private NodeService nodeService;
|
|
private UserUsageTrackingComponent userUsageTrackingComponent;
|
|
private ContentUsageService contentUsageService;
|
|
|
|
private UserTransaction testTX;
|
|
|
|
public static StoreRef SPACES_STORE = new StoreRef(StoreRef.PROTOCOL_WORKSPACE, "SpacesStore");
|
|
|
|
private static final String TEST_USER_PREFIX = "user-";
|
|
|
|
private static final int MAX_USERS = 100;
|
|
private static final int BATCH_SIZE = 5;
|
|
private static final int PROGRESS_SIZE = 100;
|
|
|
|
protected void setUp() throws Exception
|
|
{
|
|
nodeService = (NodeService)applicationContext.getBean("NodeService");
|
|
authenticationService = (AuthenticationService)applicationContext.getBean("authenticationService");
|
|
transactionService = (TransactionService)applicationContext.getBean("transactionComponent");
|
|
personService = (PersonService)applicationContext.getBean("PersonService");
|
|
contentService = (ContentService)applicationContext.getBean("ContentService");
|
|
contentUsageService = (ContentUsageService)applicationContext.getBean("ContentUsageService");
|
|
|
|
userUsageTrackingComponent = (UserUsageTrackingComponent)applicationContext.getBean("userUsageTrackingComponent");
|
|
|
|
AuthenticationUtil.setRunAsUserSystem();
|
|
|
|
createUsersAndContent();
|
|
}
|
|
|
|
protected void tearDown() throws Exception
|
|
{
|
|
if (clean)
|
|
{
|
|
deleteUsersAndContent();
|
|
}
|
|
|
|
super.tearDown();
|
|
}
|
|
|
|
private void createUsersAndContent()
|
|
{
|
|
long start = System.currentTimeMillis();
|
|
long progressStart = System.currentTimeMillis();
|
|
|
|
try
|
|
{
|
|
int count = 0;
|
|
int batch = 0;
|
|
//long batchStart = 0;
|
|
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
if (count == 0)
|
|
{
|
|
batch++;
|
|
|
|
testTX = transactionService.getUserTransaction();
|
|
testTX.begin();
|
|
|
|
//batchStart = System.currentTimeMillis();
|
|
}
|
|
|
|
count++;
|
|
String userName = TEST_USER_PREFIX+i;
|
|
|
|
if (! authenticationService.authenticationExists(userName))
|
|
{
|
|
// Note: this will auto-create the user home
|
|
HashMap<QName, Serializable> props = new HashMap<QName, Serializable>();
|
|
props.put(ContentModel.PROP_USERNAME, userName);
|
|
personService.createPerson(props);
|
|
|
|
authenticationService.createAuthentication(userName, userName.toCharArray());
|
|
|
|
NodeRef homeFolder = getHomeSpaceFolderNode(userName);
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
for (int j = 1; j <= i; j++)
|
|
{
|
|
int k = j % 10;
|
|
sb.append(k);
|
|
}
|
|
|
|
AuthenticationUtil.setFullyAuthenticatedUser(userName);
|
|
|
|
addTextContent(homeFolder, "a-"+userName+".txt", sb.toString());
|
|
addTextContent(homeFolder, "b-"+userName+".txt", sb.toString());
|
|
}
|
|
|
|
AuthenticationUtil.setRunAsUserSystem();
|
|
|
|
if ((count == BATCH_SIZE) || (i == MAX_USERS))
|
|
{
|
|
testTX.commit();
|
|
count = 0;
|
|
|
|
//System.out.println("Batch "+batch+" took "+((System.currentTimeMillis()-batchStart)/1000)+" secs");
|
|
}
|
|
|
|
if (((i % PROGRESS_SIZE) == 0) && (i != MAX_USERS))
|
|
{
|
|
System.out.println("Progress: "+PROGRESS_SIZE+" users created in "+((System.currentTimeMillis()-progressStart)/1000)+" secs");
|
|
progressStart = System.currentTimeMillis();
|
|
}
|
|
}
|
|
|
|
System.out.println("Total: "+MAX_USERS+" users created in "+((System.currentTimeMillis()-start)/1000)+" secs");
|
|
}
|
|
catch (Throwable t)
|
|
{
|
|
t.printStackTrace();
|
|
|
|
try { testTX.rollback(); } catch (Exception e) { e.printStackTrace(); }
|
|
}
|
|
}
|
|
|
|
public void testEnableDisableCollapse()
|
|
{
|
|
userUsageTrackingComponent.setEnabled(false);
|
|
userUsageTrackingComponent.bootstrapInternal(); // false => clear
|
|
|
|
System.out.println("Cleared usages");
|
|
|
|
checkCleared();
|
|
|
|
userUsageTrackingComponent.setEnabled(true);
|
|
userUsageTrackingComponent.bootstrapInternal(); // true => recalculate
|
|
|
|
System.out.println("Recalculated usages");
|
|
|
|
checkCalculated(2L);
|
|
|
|
checkUsage(2L);
|
|
|
|
// add content
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
String userName = TEST_USER_PREFIX+i;
|
|
|
|
NodeRef homeFolder = getHomeSpaceFolderNode(userName);
|
|
|
|
AuthenticationUtil.setFullyAuthenticatedUser(userName);
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
for (int j = 1; j <= i; j++)
|
|
{
|
|
int k = j % 10;
|
|
sb.append(k);
|
|
}
|
|
|
|
addTextContent(homeFolder, "c-"+userName+".txt", sb.toString());
|
|
addTextContent(homeFolder, "d-"+userName+".txt", sb.toString());
|
|
|
|
AuthenticationUtil.setRunAsUserSystem();
|
|
}
|
|
|
|
System.out.println("Added content");
|
|
|
|
checkUsage(4L);
|
|
|
|
userUsageTrackingComponent.execute(); // collapse usages
|
|
|
|
System.out.println("Collapsed usages");
|
|
|
|
checkUsage(4L);
|
|
|
|
// delete content
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
String userName = TEST_USER_PREFIX+i;
|
|
|
|
NodeRef homeFolder = getHomeSpaceFolderNode(userName);
|
|
|
|
AuthenticationUtil.setFullyAuthenticatedUser(userName);
|
|
|
|
NodeRef childNodeRef = nodeService.getChildByName(homeFolder, ContentModel.ASSOC_CONTAINS, "a-"+userName+".txt");
|
|
nodeService.deleteNode(childNodeRef);
|
|
|
|
childNodeRef = nodeService.getChildByName(homeFolder, ContentModel.ASSOC_CONTAINS, "b-"+userName+".txt");
|
|
nodeService.deleteNode(childNodeRef);
|
|
|
|
AuthenticationUtil.setRunAsUserSystem();
|
|
}
|
|
|
|
System.out.println("Deleted content");
|
|
|
|
checkUsage(2L);
|
|
|
|
userUsageTrackingComponent.execute(); // collapse usages
|
|
|
|
System.out.println("Collapsed usages");
|
|
|
|
checkUsage(2L);
|
|
|
|
userUsageTrackingComponent.setEnabled(false);
|
|
userUsageTrackingComponent.bootstrapInternal(); // false => clear
|
|
|
|
System.out.println("Cleared usages");
|
|
checkCleared();
|
|
}
|
|
|
|
private void checkCalculated(long factor)
|
|
{
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
String userName = TEST_USER_PREFIX+i;
|
|
NodeRef personNodeRef = personService.getPerson(userName);
|
|
|
|
// get user stored usage (not including deltas, if any)
|
|
assertEquals(userName, i*factor, ((Long)nodeService.getProperty(personNodeRef, ContentModel.PROP_SIZE_CURRENT)).longValue());
|
|
}
|
|
}
|
|
|
|
private void checkUsage(long factor)
|
|
{
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
String userName = TEST_USER_PREFIX+i;
|
|
|
|
// get user usage (including deltas, if any)
|
|
assertEquals(userName, i*factor, contentUsageService.getUserUsage(userName));
|
|
}
|
|
}
|
|
|
|
private void checkCleared()
|
|
{
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
String userName = TEST_USER_PREFIX+i;
|
|
NodeRef personNodeRef = personService.getPerson(userName);
|
|
|
|
assertNull(nodeService.getProperty(personNodeRef, ContentModel.PROP_SIZE_CURRENT));
|
|
}
|
|
}
|
|
|
|
private void deleteUsersAndContent()
|
|
{
|
|
long start = System.currentTimeMillis();
|
|
|
|
try
|
|
{
|
|
int count = 0;
|
|
int batch = 0;
|
|
//long batchStart = 0;
|
|
|
|
int deleteCount = 0;
|
|
|
|
for (int i = 1; i <= MAX_USERS; i++)
|
|
{
|
|
if (count == 0)
|
|
{
|
|
batch++;
|
|
|
|
testTX = transactionService.getUserTransaction();
|
|
testTX.begin();
|
|
//batchStart = System.currentTimeMillis();
|
|
}
|
|
|
|
count++;
|
|
String userName = TEST_USER_PREFIX+i;
|
|
|
|
|
|
if (authenticationService.authenticationExists(userName))
|
|
{
|
|
NodeRef homeFolder = getHomeSpaceFolderNode(userName);
|
|
nodeService.deleteNode(homeFolder);
|
|
|
|
authenticationService.deleteAuthentication(userName);
|
|
personService.deletePerson(userName);
|
|
deleteCount++;
|
|
}
|
|
|
|
if ((count == BATCH_SIZE) || (i == MAX_USERS))
|
|
{
|
|
testTX.commit();
|
|
count = 0;
|
|
|
|
//System.out.println("Batch "+batch+" took "+((System.currentTimeMillis()-batchStart)/1000)+" secs");
|
|
}
|
|
}
|
|
|
|
System.out.println("Total: "+deleteCount+" users deleted in "+((System.currentTimeMillis()-start)/1000)+" secs");
|
|
}
|
|
catch (Throwable t)
|
|
{
|
|
t.printStackTrace();
|
|
|
|
try { testTX.rollback(); } catch (Exception e) { e.printStackTrace(); }
|
|
}
|
|
}
|
|
|
|
private NodeRef getHomeSpaceFolderNode(String userName)
|
|
{
|
|
return (NodeRef)this.nodeService.getProperty(personService.getPerson(userName), ContentModel.PROP_HOMEFOLDER);
|
|
}
|
|
|
|
private NodeRef addTextContent(NodeRef spaceRef, String fileName, String textData)
|
|
{
|
|
Map<QName, Serializable> contentProps = new HashMap<QName, Serializable>();
|
|
contentProps.put(ContentModel.PROP_NAME, fileName);
|
|
|
|
ChildAssociationRef association = nodeService.createNode(spaceRef,
|
|
ContentModel.ASSOC_CONTAINS,
|
|
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, fileName),
|
|
ContentModel.TYPE_CONTENT,
|
|
contentProps);
|
|
|
|
NodeRef content = association.getChildRef();
|
|
|
|
// add titled aspect (for Web Client display)
|
|
Map<QName, Serializable> titledProps = new HashMap<QName, Serializable>();
|
|
titledProps.put(ContentModel.PROP_TITLE, fileName);
|
|
titledProps.put(ContentModel.PROP_DESCRIPTION, fileName);
|
|
this.nodeService.addAspect(content, ContentModel.ASPECT_TITLED, titledProps);
|
|
|
|
ContentWriter writer = contentService.getWriter(content, ContentModel.PROP_CONTENT, true);
|
|
|
|
writer.setMimetype(MimetypeMap.MIMETYPE_TEXT_PLAIN);
|
|
writer.setEncoding("UTF-8");
|
|
|
|
writer.putContent(textData);
|
|
|
|
return content;
|
|
}
|
|
}
|