mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-QA to HEAD (4.2) (including moving test classes into separate folders)
51903 to 54309 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@54310 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,178 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2010 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.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.repo.node.NodeServicePolicies;
|
||||
import org.alfresco.repo.policy.PolicyComponent;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationComponent;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
||||
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.ScriptLocation;
|
||||
import org.alfresco.service.cmr.repository.StoreRef;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.alfresco.util.BaseSpringTest;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author Roy Wetherall
|
||||
*/
|
||||
public class ScriptBehaviourTest extends BaseSpringTest
|
||||
{
|
||||
private ServiceRegistry serviceRegistry;
|
||||
private NodeService nodeService;
|
||||
private PolicyComponent policyComponent;
|
||||
|
||||
private StoreRef storeRef;
|
||||
private NodeRef folderNodeRef;
|
||||
|
||||
protected String[] getConfigLocations()
|
||||
{
|
||||
return new String[] { "classpath:org/alfresco/repo/jscript/test-context.xml" };
|
||||
}
|
||||
|
||||
/**
|
||||
* On setup in transaction implementation
|
||||
*/
|
||||
@Override
|
||||
protected void onSetUpInTransaction()
|
||||
throws Exception
|
||||
{
|
||||
// Get the required services
|
||||
this.nodeService = (NodeService)this.applicationContext.getBean("nodeService");
|
||||
this.policyComponent = (PolicyComponent)this.applicationContext.getBean("policyComponent");
|
||||
this.serviceRegistry = (ServiceRegistry)this.applicationContext.getBean("ServiceRegistry");
|
||||
|
||||
AuthenticationComponent authenticationComponent = (AuthenticationComponent)this.applicationContext.getBean("authenticationComponent");
|
||||
authenticationComponent.setCurrentUser(AuthenticationUtil.getAdminUserName());
|
||||
|
||||
// Create the store and get the root node reference
|
||||
this.storeRef = this.nodeService.createStore(StoreRef.PROTOCOL_WORKSPACE, "Test_" + System.currentTimeMillis());
|
||||
NodeRef rootNodeRef = this.nodeService.getRootNode(storeRef);
|
||||
|
||||
// Create folder node
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(1);
|
||||
props.put(ContentModel.PROP_NAME, "TestFolder");
|
||||
ChildAssociationRef childAssocRef = this.nodeService.createNode(
|
||||
rootNodeRef,
|
||||
ContentModel.ASSOC_CHILDREN,
|
||||
QName.createQName("{test}TestFolder"),
|
||||
ContentModel.TYPE_FOLDER,
|
||||
props);
|
||||
this.folderNodeRef = childAssocRef.getChildRef();
|
||||
}
|
||||
|
||||
public void test1EnableDisableBehaviour()
|
||||
{
|
||||
// Register the onCreateNode behaviour script
|
||||
ScriptLocation location = new ClasspathScriptLocation("org/alfresco/repo/jscript/test_onCreateNode_cmContent.js");
|
||||
ScriptBehaviour behaviour = new ScriptBehaviour(this.serviceRegistry, location);
|
||||
|
||||
this.policyComponent.bindClassBehaviour(
|
||||
QName.createQName(NodeServicePolicies.OnCreateNodePolicy.NAMESPACE, "onCreateNode"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
behaviour);
|
||||
|
||||
behaviour.disable();
|
||||
|
||||
// Create a content node
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(1);
|
||||
props.put(ContentModel.PROP_NAME, "myDoc.txt");
|
||||
ChildAssociationRef childAssoc = this.nodeService.createNode(
|
||||
this.folderNodeRef,
|
||||
ContentModel.ASSOC_CONTAINS,
|
||||
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "myDoc.txt"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
props);
|
||||
assertFalse(this.nodeService.hasAspect(childAssoc.getChildRef(), ContentModel.ASPECT_TITLED));
|
||||
|
||||
behaviour.enable();
|
||||
|
||||
Map<QName, Serializable> props2 = new HashMap<QName, Serializable>(1);
|
||||
props2.put(ContentModel.PROP_NAME, "myDoc1.txt");
|
||||
ChildAssociationRef childAssoc2 = this.nodeService.createNode(
|
||||
this.folderNodeRef,
|
||||
ContentModel.ASSOC_CONTAINS,
|
||||
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "myDoc1.txt"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
props2);
|
||||
assertTrue(this.nodeService.hasAspect(childAssoc2.getChildRef(), ContentModel.ASPECT_TITLED));
|
||||
}
|
||||
|
||||
public void test2ClasspathLocationBehaviour()
|
||||
{
|
||||
// Register the onCreateNode behaviour script
|
||||
ScriptLocation location = new ClasspathScriptLocation("org/alfresco/repo/jscript/test_onCreateNode_cmContent.js");
|
||||
ScriptBehaviour behaviour = new ScriptBehaviour(this.serviceRegistry, location);
|
||||
|
||||
this.policyComponent.bindClassBehaviour(
|
||||
QName.createQName(NodeServicePolicies.OnCreateNodePolicy.NAMESPACE, "onCreateNode"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
behaviour);
|
||||
|
||||
// Create a content node
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(1);
|
||||
props.put(ContentModel.PROP_NAME, "myDoc.txt");
|
||||
ChildAssociationRef childAssoc = this.nodeService.createNode(
|
||||
this.folderNodeRef,
|
||||
ContentModel.ASSOC_CONTAINS,
|
||||
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "myDoc.txt"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
props);
|
||||
|
||||
// Since the behavoiour will have been run check that the titled aspect has been applied
|
||||
assertTrue(this.nodeService.hasAspect(childAssoc.getChildRef(), ContentModel.ASPECT_TITLED));
|
||||
}
|
||||
|
||||
public void test3SpringConfiguredBehaviour()
|
||||
{
|
||||
this.nodeService.addAspect(this.folderNodeRef, ContentModel.ASPECT_COUNTABLE, null);
|
||||
assertTrue(this.nodeService.hasAspect(this.folderNodeRef, ContentModel.ASPECT_TITLED));
|
||||
|
||||
// Create a couple of nodes
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(1);
|
||||
props.put(ContentModel.PROP_NAME, "myDoc.txt");
|
||||
ChildAssociationRef childAssoc = this.nodeService.createNode(
|
||||
this.folderNodeRef,
|
||||
ContentModel.ASSOC_CONTAINS,
|
||||
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "myDoc.txt"),
|
||||
ContentModel.TYPE_CONTENT,
|
||||
props);
|
||||
Map<QName, Serializable> props2 = new HashMap<QName, Serializable>(1);
|
||||
props2.put(ContentModel.PROP_NAME, "folder2");
|
||||
ChildAssociationRef childAssoc2 = this.nodeService.createNode(
|
||||
this.folderNodeRef,
|
||||
ContentModel.ASSOC_CONTAINS,
|
||||
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "folder2"),
|
||||
ContentModel.TYPE_FOLDER,
|
||||
props2);
|
||||
|
||||
this.nodeService.addChild(childAssoc2.getChildRef(), childAssoc.getChildRef(), ContentModel.ASSOC_CONTAINS, QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "linked"));
|
||||
assertTrue(this.nodeService.hasAspect(childAssoc.getChildRef(), ContentModel.ASPECT_VERSIONABLE));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user