mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4868 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4869 . svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4904 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4938 . Module management support Modularization of Records Management git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4956 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
143 lines
4.7 KiB
Java
143 lines
4.7 KiB
Java
/*
|
|
* Copyright (C) 2007 Alfresco, Inc.
|
|
*
|
|
* Licensed under the Mozilla Public License version 1.1
|
|
* with a permitted attribution clause. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.alfresco.org/legal/license.txt
|
|
*
|
|
* 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.alfresco.repo.module;
|
|
|
|
import java.util.Collection;
|
|
|
|
import javax.transaction.UserTransaction;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.repo.security.authentication.AuthenticationComponent;
|
|
import org.alfresco.service.ServiceRegistry;
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
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.search.CategoryService;
|
|
import org.alfresco.service.transaction.TransactionService;
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
|
|
|
/**
|
|
* Tests various module components.
|
|
*
|
|
* @see org.alfresco.repo.module.ImporterModuleComponent
|
|
* @see org.alfresco.repo.module.ModuleComponent
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class ComponentsTest extends TestCase
|
|
{
|
|
private static ApplicationContext ctx = new ClassPathXmlApplicationContext("module/module-component-test-beans.xml");
|
|
|
|
private ServiceRegistry serviceRegistry;
|
|
private AuthenticationComponent authenticationComponent;
|
|
private TransactionService transactionService;
|
|
private NodeService nodeService;
|
|
private UserTransaction txn;
|
|
|
|
@Override
|
|
protected void setUp() throws Exception
|
|
{
|
|
serviceRegistry = (ServiceRegistry) ctx.getBean(ServiceRegistry.SERVICE_REGISTRY);
|
|
authenticationComponent = (AuthenticationComponent) ctx.getBean("AuthenticationComponent");
|
|
transactionService = serviceRegistry.getTransactionService();
|
|
nodeService = serviceRegistry.getNodeService();
|
|
|
|
// Run as system user
|
|
authenticationComponent.setSystemUserAsCurrentUser();
|
|
|
|
// Start a transaction
|
|
txn = transactionService.getUserTransaction();
|
|
}
|
|
|
|
@Override
|
|
protected void tearDown() throws Exception
|
|
{
|
|
// Clear authentication
|
|
try
|
|
{
|
|
authenticationComponent.clearCurrentSecurityContext();
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
// Rollback the transaction
|
|
try
|
|
{
|
|
// txn.rollback();
|
|
txn.commit();
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
// Ignore
|
|
}
|
|
}
|
|
|
|
/** Ensure that the test starts and stops properly */
|
|
public void testSetup() throws Exception
|
|
{
|
|
}
|
|
|
|
private NodeRef getLoadedCategoryRoot()
|
|
{
|
|
StoreRef storeRef = new StoreRef(StoreRef.PROTOCOL_WORKSPACE, "SpacesStore");
|
|
|
|
CategoryService categoryService = serviceRegistry.getCategoryService();
|
|
// Check if the categories exist
|
|
Collection<ChildAssociationRef> assocRefs = categoryService.getRootCategories(
|
|
storeRef,
|
|
ContentModel.ASPECT_GEN_CLASSIFIABLE);
|
|
// Find it
|
|
for (ChildAssociationRef assocRef : assocRefs)
|
|
{
|
|
NodeRef nodeRef = assocRef.getChildRef();
|
|
if (nodeRef.getId().equals("test:xyz-root"))
|
|
{
|
|
// Found it
|
|
return nodeRef;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void testImporterModuleComponent() throws Exception
|
|
{
|
|
// Delete any pre-existing data
|
|
NodeRef nodeRef = getLoadedCategoryRoot();
|
|
if (nodeRef != null)
|
|
{
|
|
CategoryService categoryService = serviceRegistry.getCategoryService();
|
|
categoryService.deleteCategory(nodeRef);
|
|
}
|
|
// Double check to make sure it is gone
|
|
nodeRef = getLoadedCategoryRoot();
|
|
assertNull("Category not deleted", nodeRef);
|
|
|
|
ImporterModuleComponent component = (ImporterModuleComponent) ctx.getBean("module.test.importerComponent");
|
|
// Execute it
|
|
component.execute();
|
|
|
|
// Now make sure the data exists
|
|
nodeRef = getLoadedCategoryRoot();
|
|
assertNotNull("Loaded category root not found", nodeRef);
|
|
}
|
|
}
|