mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
117489 bhorje: CM-690 extensions git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.1.N/root@117573 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
109 lines
4.7 KiB
Java
109 lines
4.7 KiB
Java
/*
|
|
* Copyright (C) 2005-2015 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.virtual.template;
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
import java.util.List;
|
|
|
|
import org.alfresco.repo.content.MimetypeMap;
|
|
import org.alfresco.repo.virtual.VirtualizationIntegrationTest;
|
|
import org.alfresco.repo.virtual.ref.NewVirtualReferenceMethod;
|
|
import org.alfresco.repo.virtual.ref.Protocols;
|
|
import org.alfresco.repo.virtual.ref.Reference;
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
import org.junit.Test;
|
|
|
|
public class ApplyTemplateMethodTest extends VirtualizationIntegrationTest
|
|
{
|
|
|
|
@Test
|
|
public void testExecuteSysClasspath() throws Exception
|
|
{
|
|
ApplyTemplateMethod applyTemplateMethod = new ApplyTemplateMethod(environment);
|
|
|
|
NewVirtualReferenceMethod newVirtualReferenceMethod = new NewVirtualReferenceMethod(TEST_TEMPLATE_1_JS_SYS_PATH,
|
|
"/",
|
|
rootNodeRef,
|
|
null);
|
|
Reference ref = Protocols.VIRTUAL.protocol.dispatch(newVirtualReferenceMethod,
|
|
null);
|
|
VirtualFolderDefinition structure = ref.execute(applyTemplateMethod);
|
|
|
|
String templateName = structure.getName();
|
|
assertEquals("template1_name",
|
|
templateName);
|
|
|
|
List<VirtualFolderDefinition> children = structure.getChildren();
|
|
assertEquals(3,
|
|
children.size());
|
|
|
|
VirtualFolderDefinition child1 = structure.findChildByName("My Documents");
|
|
assertTrue(child1 != null);
|
|
|
|
VirtualFolderDefinition child2 = structure.findChildByName("Recent Documents");
|
|
assertTrue(child2 != null);
|
|
|
|
VirtualFolderDefinition child3 = structure.findChildByName("Other Documents");
|
|
assertTrue(child3 != null);
|
|
|
|
}
|
|
|
|
@Test
|
|
public void testExecuteRepositoryJSON() throws Exception
|
|
{
|
|
ChildAssociationRef templateAssoc = createContent(testRootFolder.getNodeRef(),
|
|
"template1.json",
|
|
ApplyTemplateMethodTest.class
|
|
.getResourceAsStream(TEST_TEMPLATE_1_JSON_NAME),
|
|
MimetypeMap.MIMETYPE_JSON,
|
|
StandardCharsets.UTF_8.name());
|
|
ApplyTemplateMethod applyTemplateMethod = new ApplyTemplateMethod(environment);
|
|
|
|
NewVirtualReferenceMethod newVirtualReferenceMethod = new NewVirtualReferenceMethod(templateAssoc.getChildRef(),
|
|
"/",
|
|
virtualFolder1NodeRef,
|
|
VANILLA_PROCESSOR_JS_CLASSPATH);
|
|
Reference ref = Protocols.VANILLA.protocol.dispatch(newVirtualReferenceMethod,
|
|
null);
|
|
VirtualFolderDefinition structure = ref.execute(applyTemplateMethod);
|
|
|
|
String templateName = structure.getName();
|
|
assertEquals("Test",
|
|
templateName);
|
|
|
|
List<VirtualFolderDefinition> children = structure.getChildren();
|
|
assertEquals(2,
|
|
children.size());
|
|
|
|
VirtualFolderDefinition child1 = structure.findChildByName("Node1");
|
|
assertTrue(child1 != null);
|
|
|
|
VirtualFolderDefinition child2 = structure.findChildByName("Node2");
|
|
assertTrue(child2 != null);
|
|
|
|
}
|
|
|
|
@Test
|
|
public void testExecuteRepositoryJS() throws Exception
|
|
{
|
|
// TODO:
|
|
}
|
|
}
|