mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
MOB-412: Decouple thread local authentication methods from AuthenticationComponent into new AuthenticationContext super-interface. The AuthenticationContext is a delegate of AbstractAuthenticationComponent and can be accessed directly by low-level classes (e.g. schema bootstrap) before the authentication subsystem is available.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13721 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,199 +1,198 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2007 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.admin.patch;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
import org.alfresco.repo.domain.AppliedPatch;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationComponent;
|
||||
import org.alfresco.service.cmr.admin.PatchException;
|
||||
import org.alfresco.service.cmr.repository.NodeService;
|
||||
import org.alfresco.service.cmr.search.SearchService;
|
||||
import org.alfresco.service.cmr.security.AuthorityService;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.alfresco.util.ApplicationContextHelper;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
|
||||
/**
|
||||
* @see org.alfresco.repo.admin.patch.Patch
|
||||
* @see org.alfresco.repo.admin.patch.AbstractPatch
|
||||
* @see org.alfresco.repo.admin.patch.PatchService
|
||||
*
|
||||
* @author Derek Hulley
|
||||
*/
|
||||
public class PatchTest extends TestCase
|
||||
{
|
||||
private static final ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
|
||||
|
||||
private TransactionService transactionService;
|
||||
private NamespaceService namespaceService;
|
||||
private NodeService nodeService;
|
||||
private SearchService searchService;
|
||||
private AuthenticationComponent authenticationComponent;
|
||||
private PatchService patchService;
|
||||
private PatchDaoService patchDaoComponent;
|
||||
|
||||
public PatchTest(String name)
|
||||
{
|
||||
super(name);
|
||||
}
|
||||
|
||||
public void setUp() throws Exception
|
||||
{
|
||||
transactionService = (TransactionService) ctx.getBean("transactionComponent");
|
||||
namespaceService = (NamespaceService) ctx.getBean("namespaceService");
|
||||
nodeService = (NodeService) ctx.getBean("nodeService");
|
||||
searchService = (SearchService) ctx.getBean("searchService");
|
||||
authenticationComponent = (AuthenticationComponent) ctx.getBean("authenticationComponent");
|
||||
|
||||
patchService = (PatchService) ctx.getBean("PatchService");
|
||||
patchDaoComponent = (PatchDaoService) ctx.getBean("patchDaoComponent");
|
||||
|
||||
// get the patches to play with
|
||||
patchService.registerPatch((Patch)ctx.getBean("patch.sample.02"));
|
||||
patchService.registerPatch((Patch)ctx.getBean("patch.sample.01"));
|
||||
}
|
||||
|
||||
public void testSetup() throws Exception
|
||||
{
|
||||
assertNotNull(transactionService);
|
||||
assertNotNull(patchService);
|
||||
assertNotNull(patchDaoComponent);
|
||||
}
|
||||
|
||||
private SamplePatch constructSamplePatch(boolean mustFail)
|
||||
{
|
||||
SamplePatch patch = new SamplePatch(mustFail, transactionService);
|
||||
patch.setNamespaceService(namespaceService);
|
||||
patch.setNodeService(nodeService);
|
||||
patch.setSearchService(searchService);
|
||||
patch.setAuthenticationComponent(authenticationComponent);
|
||||
// done
|
||||
return patch;
|
||||
}
|
||||
|
||||
public void testSimplePatchSuccess() throws Exception
|
||||
{
|
||||
Patch patch = constructSamplePatch(false);
|
||||
String report = patch.apply();
|
||||
// check that the report was generated
|
||||
assertEquals("Patch report incorrect", SamplePatch.MSG_SUCCESS, report);
|
||||
}
|
||||
|
||||
public void testPatchReapplication()
|
||||
{
|
||||
// successfully apply a patch
|
||||
Patch patch = constructSamplePatch(false);
|
||||
patch.apply();
|
||||
// check that the patch cannot be reapplied
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("AbstractPatch failed to prevent reapplication");
|
||||
}
|
||||
catch (AlfrescoRuntimeException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
|
||||
// apply an unsuccessful patch
|
||||
patch = constructSamplePatch(true);
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("Failed patch didn't throw PatchException");
|
||||
}
|
||||
catch (PatchException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
// repeat
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("Reapplication of failed patch didn't throw PatchException");
|
||||
}
|
||||
catch (PatchException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
}
|
||||
|
||||
public void testApplyOutstandingPatches() throws Exception
|
||||
{
|
||||
// apply outstanding patches
|
||||
boolean success = patchService.applyOutstandingPatches();
|
||||
assertTrue(success);
|
||||
// get applied patches
|
||||
List<AppliedPatch> appliedPatches = patchDaoComponent.getAppliedPatches();
|
||||
// check that the patch application was recorded
|
||||
boolean found01 = false;
|
||||
boolean found02 = false;
|
||||
for (AppliedPatch appliedPatch : appliedPatches)
|
||||
{
|
||||
if (appliedPatch.getId().equals("Sample01"))
|
||||
{
|
||||
found01 = true;
|
||||
assertTrue("Patch info didn't indicate success: " + appliedPatch, appliedPatch.getSucceeded());
|
||||
}
|
||||
else if (appliedPatch.getId().equals("Sample02"))
|
||||
{
|
||||
found02 = true;
|
||||
assertTrue("Patch info didn't indicate success: " + appliedPatch, appliedPatch.getSucceeded());
|
||||
}
|
||||
}
|
||||
assertTrue("Sample 01 not in list of applied patches", found01);
|
||||
assertTrue("Sample 02 not in list of applied patches", found02);
|
||||
}
|
||||
|
||||
public void testGetPatchesByDate() throws Exception
|
||||
{
|
||||
// ensure that there are some applied patches
|
||||
testApplyOutstandingPatches();
|
||||
// get the number of applied patches
|
||||
List<AppliedPatch> appliedPatches = patchDaoComponent.getAppliedPatches();
|
||||
assertTrue("Expected at least 2 applied patches", appliedPatches.size() >= 2);
|
||||
|
||||
// now requery using null dates
|
||||
List<PatchInfo> appliedPatchesAllDates = patchService.getPatches(null, null);
|
||||
assertEquals("Applied patches by all dates doesn't match all applied patches",
|
||||
appliedPatches.size(), appliedPatchesAllDates.size());
|
||||
|
||||
// make sure that the objects are not connected to the persistence layer
|
||||
PatchInfo disconnectedObject = appliedPatchesAllDates.get(0);
|
||||
AppliedPatch persistedObject = patchDaoComponent.getAppliedPatch(disconnectedObject.getId());
|
||||
assertNotSame("Instances should not be shared between evicted and cached objects",
|
||||
disconnectedObject, persistedObject);
|
||||
|
||||
// perform another query with dates that should return no results
|
||||
List<PatchInfo> appliedPatchesFutureDates = patchService.getPatches(new Date(), new Date());
|
||||
assertEquals("Query returned results for dates when no patches should exist", 0, appliedPatchesFutureDates.size());
|
||||
}
|
||||
}
|
||||
/*
|
||||
* Copyright (C) 2005-2007 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.admin.patch;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
import org.alfresco.repo.domain.AppliedPatch;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationContext;
|
||||
import org.alfresco.service.cmr.admin.PatchException;
|
||||
import org.alfresco.service.cmr.repository.NodeService;
|
||||
import org.alfresco.service.cmr.search.SearchService;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.alfresco.util.ApplicationContextHelper;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
|
||||
/**
|
||||
* @see org.alfresco.repo.admin.patch.Patch
|
||||
* @see org.alfresco.repo.admin.patch.AbstractPatch
|
||||
* @see org.alfresco.repo.admin.patch.PatchService
|
||||
*
|
||||
* @author Derek Hulley
|
||||
*/
|
||||
public class PatchTest extends TestCase
|
||||
{
|
||||
private static final ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
|
||||
|
||||
private TransactionService transactionService;
|
||||
private NamespaceService namespaceService;
|
||||
private NodeService nodeService;
|
||||
private SearchService searchService;
|
||||
private AuthenticationContext authenticationContext;
|
||||
private PatchService patchService;
|
||||
private PatchDaoService patchDaoComponent;
|
||||
|
||||
public PatchTest(String name)
|
||||
{
|
||||
super(name);
|
||||
}
|
||||
|
||||
public void setUp() throws Exception
|
||||
{
|
||||
transactionService = (TransactionService) ctx.getBean("transactionComponent");
|
||||
namespaceService = (NamespaceService) ctx.getBean("namespaceService");
|
||||
nodeService = (NodeService) ctx.getBean("nodeService");
|
||||
searchService = (SearchService) ctx.getBean("searchService");
|
||||
authenticationContext = (AuthenticationContext) ctx.getBean("authenticationContext");
|
||||
|
||||
patchService = (PatchService) ctx.getBean("PatchService");
|
||||
patchDaoComponent = (PatchDaoService) ctx.getBean("patchDaoComponent");
|
||||
|
||||
// get the patches to play with
|
||||
patchService.registerPatch((Patch)ctx.getBean("patch.sample.02"));
|
||||
patchService.registerPatch((Patch)ctx.getBean("patch.sample.01"));
|
||||
}
|
||||
|
||||
public void testSetup() throws Exception
|
||||
{
|
||||
assertNotNull(transactionService);
|
||||
assertNotNull(patchService);
|
||||
assertNotNull(patchDaoComponent);
|
||||
}
|
||||
|
||||
private SamplePatch constructSamplePatch(boolean mustFail)
|
||||
{
|
||||
SamplePatch patch = new SamplePatch(mustFail, transactionService);
|
||||
patch.setNamespaceService(namespaceService);
|
||||
patch.setNodeService(nodeService);
|
||||
patch.setSearchService(searchService);
|
||||
patch.setAuthenticationContext(authenticationContext);
|
||||
// done
|
||||
return patch;
|
||||
}
|
||||
|
||||
public void testSimplePatchSuccess() throws Exception
|
||||
{
|
||||
Patch patch = constructSamplePatch(false);
|
||||
String report = patch.apply();
|
||||
// check that the report was generated
|
||||
assertEquals("Patch report incorrect", SamplePatch.MSG_SUCCESS, report);
|
||||
}
|
||||
|
||||
public void testPatchReapplication()
|
||||
{
|
||||
// successfully apply a patch
|
||||
Patch patch = constructSamplePatch(false);
|
||||
patch.apply();
|
||||
// check that the patch cannot be reapplied
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("AbstractPatch failed to prevent reapplication");
|
||||
}
|
||||
catch (AlfrescoRuntimeException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
|
||||
// apply an unsuccessful patch
|
||||
patch = constructSamplePatch(true);
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("Failed patch didn't throw PatchException");
|
||||
}
|
||||
catch (PatchException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
// repeat
|
||||
try
|
||||
{
|
||||
patch.apply();
|
||||
fail("Reapplication of failed patch didn't throw PatchException");
|
||||
}
|
||||
catch (PatchException e)
|
||||
{
|
||||
// expected
|
||||
}
|
||||
}
|
||||
|
||||
public void testApplyOutstandingPatches() throws Exception
|
||||
{
|
||||
// apply outstanding patches
|
||||
boolean success = patchService.applyOutstandingPatches();
|
||||
assertTrue(success);
|
||||
// get applied patches
|
||||
List<AppliedPatch> appliedPatches = patchDaoComponent.getAppliedPatches();
|
||||
// check that the patch application was recorded
|
||||
boolean found01 = false;
|
||||
boolean found02 = false;
|
||||
for (AppliedPatch appliedPatch : appliedPatches)
|
||||
{
|
||||
if (appliedPatch.getId().equals("Sample01"))
|
||||
{
|
||||
found01 = true;
|
||||
assertTrue("Patch info didn't indicate success: " + appliedPatch, appliedPatch.getSucceeded());
|
||||
}
|
||||
else if (appliedPatch.getId().equals("Sample02"))
|
||||
{
|
||||
found02 = true;
|
||||
assertTrue("Patch info didn't indicate success: " + appliedPatch, appliedPatch.getSucceeded());
|
||||
}
|
||||
}
|
||||
assertTrue("Sample 01 not in list of applied patches", found01);
|
||||
assertTrue("Sample 02 not in list of applied patches", found02);
|
||||
}
|
||||
|
||||
public void testGetPatchesByDate() throws Exception
|
||||
{
|
||||
// ensure that there are some applied patches
|
||||
testApplyOutstandingPatches();
|
||||
// get the number of applied patches
|
||||
List<AppliedPatch> appliedPatches = patchDaoComponent.getAppliedPatches();
|
||||
assertTrue("Expected at least 2 applied patches", appliedPatches.size() >= 2);
|
||||
|
||||
// now requery using null dates
|
||||
List<PatchInfo> appliedPatchesAllDates = patchService.getPatches(null, null);
|
||||
assertEquals("Applied patches by all dates doesn't match all applied patches",
|
||||
appliedPatches.size(), appliedPatchesAllDates.size());
|
||||
|
||||
// make sure that the objects are not connected to the persistence layer
|
||||
PatchInfo disconnectedObject = appliedPatchesAllDates.get(0);
|
||||
AppliedPatch persistedObject = patchDaoComponent.getAppliedPatch(disconnectedObject.getId());
|
||||
assertNotSame("Instances should not be shared between evicted and cached objects",
|
||||
disconnectedObject, persistedObject);
|
||||
|
||||
// perform another query with dates that should return no results
|
||||
List<PatchInfo> appliedPatchesFutureDates = patchService.getPatches(new Date(), new Date());
|
||||
assertEquals("Query returned results for dates when no patches should exist", 0, appliedPatchesFutureDates.size());
|
||||
}
|
||||
}
|
||||
|
@@ -181,7 +181,7 @@ public class EmailTemplatesContentPatch extends AbstractPatch
|
||||
return null;
|
||||
}
|
||||
};
|
||||
AuthenticationUtil.runAs(importRunAs, authenticationComponent.getSystemUserName());
|
||||
AuthenticationUtil.runAs(importRunAs, authenticationContext.getSystemUserName());
|
||||
|
||||
// output a message to describe the result
|
||||
return I18NUtil.getMessage(MSG_CREATED);
|
||||
|
@@ -232,7 +232,7 @@ public class ScriptsFolderPatch extends AbstractPatch
|
||||
return null;
|
||||
}
|
||||
};
|
||||
AuthenticationUtil.runAs(importRunAs, authenticationComponent.getSystemUserName());
|
||||
AuthenticationUtil.runAs(importRunAs, authenticationContext.getSystemUserName());
|
||||
|
||||
msg = I18NUtil.getMessage(MSG_CREATED, scriptsFolderNodeRef);
|
||||
}
|
||||
|
Reference in New Issue
Block a user