mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			227 lines
		
	
	
		
			9.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			9.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * #%L
 | |
|  * Alfresco Repository
 | |
|  * %%
 | |
|  * Copyright (C) 2005 - 2016 Alfresco Software Limited
 | |
|  * %%
 | |
|  * This file is part of the Alfresco software. 
 | |
|  * If the software was purchased under a paid Alfresco license, the terms of 
 | |
|  * the paid license agreement will prevail.  Otherwise, the software is 
 | |
|  * provided under the following open source license terms:
 | |
|  * 
 | |
|  * 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/>.
 | |
|  * #L%
 | |
|  */
 | |
| package org.alfresco.repo.node;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| import java.util.ArrayList;
 | |
| import java.util.Collections;
 | |
| import java.util.List;
 | |
| import java.util.Map;
 | |
| 
 | |
| import junit.framework.TestCase;
 | |
| 
 | |
| import org.alfresco.model.ContentModel;
 | |
| import org.alfresco.repo.dictionary.DictionaryBootstrap;
 | |
| import org.alfresco.repo.dictionary.DictionaryDAO;
 | |
| import org.alfresco.repo.node.encryption.MetadataEncryptor;
 | |
| import org.alfresco.repo.node.integrity.IntegrityException;
 | |
| import org.alfresco.repo.security.authentication.AuthenticationUtil;
 | |
| import org.alfresco.repo.tenant.TenantService;
 | |
| import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
 | |
| import org.alfresco.service.ServiceRegistry;
 | |
| 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.namespace.NamespaceService;
 | |
| import org.alfresco.service.namespace.QName;
 | |
| import org.alfresco.service.transaction.TransactionService;
 | |
| import org.alfresco.util.ApplicationContextHelper;
 | |
| import org.alfresco.util.PropertyMap;
 | |
| import org.apache.commons.logging.Log;
 | |
| import org.apache.commons.logging.LogFactory;
 | |
| import org.springframework.context.ConfigurableApplicationContext;
 | |
| import org.springframework.extensions.surf.util.I18NUtil;
 | |
| 
 | |
| public class MetadataEncryptorTests extends TestCase
 | |
| {
 | |
|     private static final String TEST_MODEL = "org/alfresco/repo/node/encrypted_prop_model.xml";
 | |
|     private static QName ENCRYPTED_TYPE_QNAME = QName.createQName("http://www.alfresco.org/test/encryptedPropModel/1.0", "encrypted");
 | |
|     private static QName ENCRYPTED_PROP_QNAME = QName.createQName("http://www.alfresco.org/test/encryptedPropModel/1.0", "prop1");
 | |
| 
 | |
|     private static final Log logger = LogFactory.getLog(MetadataEncryptorTests.class);
 | |
|     
 | |
|     private ConfigurableApplicationContext ctx = (ConfigurableApplicationContext) ApplicationContextHelper.getApplicationContext();
 | |
| 
 | |
|     private TransactionService transactionService;
 | |
|     private NodeService nodeService;
 | |
|     private TenantService tenantService;
 | |
|     private DictionaryDAO dictionaryDAO;
 | |
|     private MetadataEncryptor metadataEncryptor;
 | |
|     
 | |
|     private StoreRef storeRef;
 | |
|     private NodeRef rootNodeRef;
 | |
|     
 | |
|     @Override
 | |
|     public void setUp() throws Exception
 | |
|     {
 | |
|         ServiceRegistry serviceRegistry = (ServiceRegistry) ctx.getBean(ServiceRegistry.SERVICE_REGISTRY);
 | |
|         transactionService = serviceRegistry.getTransactionService();
 | |
| //        txnHelper = transactionService.getRetryingTransactionHelper();
 | |
|         metadataEncryptor = (MetadataEncryptor)ctx.getBean("metadataEncryptor");
 | |
|         nodeService = serviceRegistry.getNodeService();
 | |
|         tenantService = (TenantService)ctx.getBean("tenantService");
 | |
|         dictionaryDAO = (DictionaryDAO)ctx.getBean("dictionaryDAO");
 | |
| 
 | |
|         AuthenticationUtil.setRunAsUserSystem();
 | |
|         
 | |
|         DictionaryBootstrap bootstrap = new DictionaryBootstrap();
 | |
|         List<String> bootstrapModels = new ArrayList<String>();
 | |
|         bootstrapModels.add("alfresco/model/dictionaryModel.xml");
 | |
|         bootstrapModels.add(TEST_MODEL);
 | |
| //        List<String> labels = new ArrayList<String>();
 | |
| //        labels.add(TEST_BUNDLE);
 | |
|         bootstrap.setModels(bootstrapModels);
 | |
| //        bootstrap.setLabels(labels);
 | |
|         bootstrap.setDictionaryDAO(dictionaryDAO);
 | |
|         bootstrap.setTenantService(tenantService);
 | |
|         bootstrap.bootstrap();
 | |
|         
 | |
|         // create a first store directly
 | |
|         RetryingTransactionCallback<NodeRef> createStoreWork = new RetryingTransactionCallback<NodeRef>()
 | |
|         {
 | |
|             public NodeRef execute()
 | |
|             {
 | |
|                 StoreRef storeRef = nodeService.createStore(
 | |
|                         StoreRef.PROTOCOL_WORKSPACE,
 | |
|                         "Test_" + System.nanoTime());
 | |
|                 return nodeService.getRootNode(storeRef);
 | |
|             }
 | |
|         };
 | |
|         rootNodeRef = transactionService.getRetryingTransactionHelper().doInTransaction(createStoreWork);
 | |
|     }
 | |
|     
 | |
|     /**
 | |
|      * Loads the test model required for building the node graphs
 | |
|      */
 | |
| //    public static DictionaryService loadModel(ApplicationContext applicationContext)
 | |
| //    {
 | |
| //        DictionaryDAO dictionaryDao = (DictionaryDAO) applicationContext.getBean("dictionaryDAO");
 | |
| //        // load the system model
 | |
| //        ClassLoader cl = BaseNodeServiceTest.class.getClassLoader();
 | |
| //        InputStream modelStream = cl.getResourceAsStream("alfresco/model/contentModel.xml");
 | |
| //        assertNotNull(modelStream);
 | |
| //        M2Model model = M2Model.createModel(modelStream);
 | |
| //        dictionaryDao.putModel(model);
 | |
| //        // load the test model
 | |
| //        modelStream = cl.getResourceAsStream("org/alfresco/repo/node/BaseNodeServiceTest_model.xml");
 | |
| //        assertNotNull(modelStream);
 | |
| //        model = M2Model.createModel(modelStream);
 | |
| //        dictionaryDao.putModel(model);
 | |
| //        
 | |
| //        DictionaryComponent dictionary = new DictionaryComponent();
 | |
| //        dictionary.setDictionaryDAO(dictionaryDao);
 | |
| //        // done
 | |
| //        return dictionary;
 | |
| //    }
 | |
|     
 | |
|     public void testWithoutEncryption()
 | |
|     {
 | |
|         RetryingTransactionCallback<Void> encryptionWork = new RetryingTransactionCallback<Void>()
 | |
|         {
 | |
|             public Void execute()
 | |
|             {
 | |
|                 NodeRef nodeRef1 = nodeService.createNode(
 | |
|                         rootNodeRef,
 | |
|                         ContentModel.ASSOC_CHILDREN,
 | |
|                         QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, getName()),
 | |
|                         ContentModel.TYPE_FOLDER, null).getChildRef();
 | |
| 
 | |
|                 try
 | |
|                 {
 | |
| 	                // Create a node using the thread's locale
 | |
| 	                NodeRef nodeRef2 = nodeService.createNode(
 | |
| 	                		nodeRef1,
 | |
| 	                        ContentModel.ASSOC_CONTAINS,
 | |
| 	                        QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, getName()),
 | |
| 	                        ENCRYPTED_TYPE_QNAME,
 | |
| 	                        Collections.singletonMap(ENCRYPTED_PROP_QNAME, (Serializable)"hello world")).getChildRef();
 | |
| 	                fail("Should have generated an IllegalArgumentException");
 | |
|                 }
 | |
|                 //catch(IntegrityException e)
 | |
|                 catch(IllegalArgumentException e)
 | |
|                 {
 | |
|                 	// expected
 | |
|                 }
 | |
|                 
 | |
|                 return null;
 | |
|             }
 | |
|         };
 | |
|         transactionService.getRetryingTransactionHelper().doInTransaction(encryptionWork);
 | |
| 
 | |
|     }
 | |
| 
 | |
|     public void testWithEncryption()
 | |
|     {
 | |
|         RetryingTransactionCallback<Void> encryptionWork = new RetryingTransactionCallback<Void>()
 | |
|         {
 | |
|             public Void execute()
 | |
|             {
 | |
|                 NodeRef nodeRef1 = nodeService.createNode(
 | |
|                         rootNodeRef,
 | |
|                         ContentModel.ASSOC_CHILDREN,
 | |
|                         QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, getName()),
 | |
|                         ContentModel.TYPE_FOLDER, null).getChildRef();
 | |
| 
 | |
|                 Map<QName, Serializable> allProperties = new PropertyMap();
 | |
|                 allProperties.put(ENCRYPTED_PROP_QNAME, "ABC");
 | |
|                 allProperties = metadataEncryptor.encrypt(allProperties);
 | |
|                 
 | |
|                 try
 | |
|                 {
 | |
| 	                NodeRef nodeRef2 = nodeService.createNode(
 | |
| 	                		nodeRef1,
 | |
| 	                        ContentModel.ASSOC_CONTAINS,
 | |
| 	                        QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, getName()),
 | |
| 	                        ENCRYPTED_TYPE_QNAME, allProperties).getChildRef();
 | |
| 	                assertNotNull(nodeRef2);
 | |
| 
 | |
| 	                Serializable encryptedPropertyValue = nodeService.getProperty(nodeRef2, ENCRYPTED_PROP_QNAME);
 | |
| 	                Serializable decryptedPropertyValue = metadataEncryptor.decrypt(ENCRYPTED_PROP_QNAME, encryptedPropertyValue);
 | |
| 	                assertEquals("ABC", decryptedPropertyValue);
 | |
|                 }
 | |
|                 //catch(IntegrityException e)
 | |
|                 catch(Throwable e)
 | |
|                 {
 | |
|                 	fail();
 | |
|                 }
 | |
| 
 | |
|                 return null;
 | |
|             }
 | |
|         };
 | |
|         transactionService.getRetryingTransactionHelper().doInTransaction(encryptionWork);
 | |
|     }
 | |
|     
 | |
|     /**
 | |
|      * Clean up the test thread
 | |
|      */
 | |
|     @Override
 | |
|     protected void tearDown()
 | |
|     {
 | |
|         AuthenticationUtil.clearCurrentSecurityContext();
 | |
|         I18NUtil.setLocale(null);
 | |
|     }
 | |
| }
 |