mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged 5.2.N (5.2.1) to HEAD (5.2)
125783 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1) 125605 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125498 slanglois: MNT-16155 Update source headers - remove svn:eol-style property on Java and JSP source files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127809 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,194 +1,194 @@
|
||||
package org.alfresco.rest.api.tests;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.opencmis.OpenCMISClientContext;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryForObjectCustom;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryInFolderTestCustom;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryLikeTestCustom;
|
||||
import org.alfresco.repo.dictionary.DictionaryDAO;
|
||||
import org.alfresco.repo.dictionary.M2Aspect;
|
||||
import org.alfresco.repo.dictionary.M2Model;
|
||||
import org.alfresco.repo.dictionary.M2Property;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
||||
import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
|
||||
import org.alfresco.repo.web.util.JettyComponent;
|
||||
import org.alfresco.service.cmr.model.FileFolderService;
|
||||
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.SearchService;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.apache.chemistry.opencmis.commons.enums.BindingType;
|
||||
import org.apache.chemistry.opencmis.tck.impl.AbstractSessionTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.impl.JUnitHelper;
|
||||
import org.apache.chemistry.opencmis.tck.impl.TestParameters;
|
||||
import org.apache.chemistry.opencmis.tck.tests.basics.BasicsTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.control.ControlTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.crud.CRUDTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.filing.FilingTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.query.ContentChangesSmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.query.QuerySmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.types.TypesTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.CheckedOutTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersionDeleteTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersioningSmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersioningStateCreateTest;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* OpenCMIS TCK unit tests.
|
||||
*
|
||||
* @author steveglover
|
||||
*
|
||||
*/
|
||||
public class TestEnterpriseAtomPubTCK extends AbstractEnterpriseOpenCMIS10TCKTest
|
||||
{
|
||||
private static final String CMIS_URL = "http://{0}:{1}/{2}/cmisatom";
|
||||
protected static final Log logger = LogFactory.getLog(TestEnterpriseAtomPubTCK.class);
|
||||
|
||||
private static NodeRef getCompanyHome(NodeService nodeService, SearchService searchService, NamespaceService namespaceService)
|
||||
{
|
||||
NodeRef storeRootNodeRef = nodeService.getRootNode(StoreRef.STORE_REF_WORKSPACE_SPACESSTORE);
|
||||
List<NodeRef> results = searchService.selectNodes(
|
||||
storeRootNodeRef,
|
||||
"/app:company_home",
|
||||
null,
|
||||
namespaceService,
|
||||
false,
|
||||
SearchService.LANGUAGE_XPATH);
|
||||
if (results.size() == 0)
|
||||
{
|
||||
throw new AlfrescoRuntimeException("Didn't find Company Home");
|
||||
}
|
||||
NodeRef companyHomeNodeRef = results.get(0);
|
||||
return companyHomeNodeRef;
|
||||
}
|
||||
|
||||
@Before
|
||||
public void setup() throws Exception
|
||||
{
|
||||
JettyComponent jetty = getTestFixture().getJettyComponent();
|
||||
|
||||
final SearchService searchService = (SearchService)jetty.getApplicationContext().getBean("searchService");;
|
||||
final NodeService nodeService = (NodeService)jetty.getApplicationContext().getBean("nodeService");
|
||||
final FileFolderService fileFolderService = (FileFolderService)jetty.getApplicationContext().getBean("fileFolderService");
|
||||
final NamespaceService namespaceService = (NamespaceService)jetty.getApplicationContext().getBean("namespaceService");
|
||||
final TransactionService transactionService = (TransactionService)jetty.getApplicationContext().getBean("transactionService");
|
||||
final String name = "abc" + System.currentTimeMillis();
|
||||
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void execute() throws Throwable
|
||||
{
|
||||
AuthenticationUtil.setFullyAuthenticatedUser(AuthenticationUtil.getAdminUserName());
|
||||
|
||||
NodeRef companyHome = getCompanyHome(nodeService, searchService, namespaceService);
|
||||
fileFolderService.create(companyHome, name, ContentModel.TYPE_FOLDER).getNodeRef();
|
||||
|
||||
return null;
|
||||
}
|
||||
}, false, true);
|
||||
|
||||
int port = jetty.getPort();
|
||||
Map<String, String> cmisParameters = new HashMap<String, String>();
|
||||
cmisParameters.put(TestParameters.DEFAULT_RELATIONSHIP_TYPE, "R:cm:replaces");
|
||||
cmisParameters.put(TestParameters.DEFAULT_TEST_FOLDER_PARENT, "/" + name);
|
||||
clientContext = new OpenCMISClientContext(BindingType.ATOMPUB,
|
||||
MessageFormat.format(CMIS_URL, "localhost", String.valueOf(port), "alfresco"), "admin", "admin", cmisParameters, jetty.getApplicationContext());
|
||||
|
||||
overrideVersionableAspectProperties(jetty.getApplicationContext());
|
||||
}
|
||||
|
||||
// Commented out: See https://issues.alfresco.com/jira/browse/MNT-11123?focusedCommentId=339130&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-339130
|
||||
// @Test
|
||||
// public void testCMISTCKBasics() throws Exception
|
||||
// {
|
||||
// BasicsTestGroup basicsTestGroup = new BasicsTestGroup();
|
||||
// JUnitHelper.run(basicsTestGroup);
|
||||
// }
|
||||
|
||||
@Test
|
||||
public void testCMISTCKCRUD() throws Exception
|
||||
{
|
||||
CRUDTestGroup crudTestGroup = new CRUDTestGroup();
|
||||
JUnitHelper.run(crudTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKVersioning() throws Exception
|
||||
{
|
||||
OverrideVersioningTestGroup versioningTestGroup = new OverrideVersioningTestGroup();
|
||||
JUnitHelper.run(versioningTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKFiling() throws Exception
|
||||
{
|
||||
FilingTestGroup filingTestGroup = new FilingTestGroup();
|
||||
JUnitHelper.run(filingTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKControl() throws Exception
|
||||
{
|
||||
ControlTestGroup controlTestGroup = new ControlTestGroup();
|
||||
JUnitHelper.run(controlTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKQuery() throws Exception
|
||||
{
|
||||
OverrideQueryTestGroup queryTestGroup = new OverrideQueryTestGroup();
|
||||
JUnitHelper.run(queryTestGroup);
|
||||
}
|
||||
|
||||
private class OverrideVersioningTestGroup extends AbstractSessionTestGroup
|
||||
{
|
||||
@Override
|
||||
public void init(Map<String, String> parameters) throws Exception
|
||||
{
|
||||
super.init(parameters);
|
||||
|
||||
setName("Versioning Test Group");
|
||||
setDescription("Versioning tests.");
|
||||
|
||||
addTest(new VersioningSmokeTest());
|
||||
addTest(new VersionDeleteTest());
|
||||
addTest(new VersioningStateCreateTest());
|
||||
// relies on Solr being available
|
||||
addTest(new CheckedOutTest());
|
||||
}
|
||||
}
|
||||
|
||||
private class OverrideQueryTestGroup extends AbstractSessionTestGroup
|
||||
{
|
||||
@Override
|
||||
public void init(Map<String, String> parameters) throws Exception
|
||||
{
|
||||
super.init(parameters);
|
||||
|
||||
setName("Query Test Group");
|
||||
setDescription("Query and content changes tests.");
|
||||
|
||||
addTest(new QuerySmokeTest());
|
||||
// The test fails on Lucene see MNT-11223
|
||||
// addTest(new QueryRootFolderTest());
|
||||
addTest(new QueryForObjectCustom());
|
||||
addTest(new QueryLikeTestCustom());
|
||||
addTest(new QueryInFolderTestCustom());
|
||||
addTest(new ContentChangesSmokeTest());
|
||||
}
|
||||
}
|
||||
}
|
||||
package org.alfresco.rest.api.tests;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.opencmis.OpenCMISClientContext;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryForObjectCustom;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryInFolderTestCustom;
|
||||
import org.alfresco.opencmis.tck.tests.query.QueryLikeTestCustom;
|
||||
import org.alfresco.repo.dictionary.DictionaryDAO;
|
||||
import org.alfresco.repo.dictionary.M2Aspect;
|
||||
import org.alfresco.repo.dictionary.M2Model;
|
||||
import org.alfresco.repo.dictionary.M2Property;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
||||
import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
|
||||
import org.alfresco.repo.web.util.JettyComponent;
|
||||
import org.alfresco.service.cmr.model.FileFolderService;
|
||||
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.SearchService;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.apache.chemistry.opencmis.commons.enums.BindingType;
|
||||
import org.apache.chemistry.opencmis.tck.impl.AbstractSessionTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.impl.JUnitHelper;
|
||||
import org.apache.chemistry.opencmis.tck.impl.TestParameters;
|
||||
import org.apache.chemistry.opencmis.tck.tests.basics.BasicsTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.control.ControlTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.crud.CRUDTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.filing.FilingTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.query.ContentChangesSmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.query.QuerySmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.types.TypesTestGroup;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.CheckedOutTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersionDeleteTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersioningSmokeTest;
|
||||
import org.apache.chemistry.opencmis.tck.tests.versioning.VersioningStateCreateTest;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* OpenCMIS TCK unit tests.
|
||||
*
|
||||
* @author steveglover
|
||||
*
|
||||
*/
|
||||
public class TestEnterpriseAtomPubTCK extends AbstractEnterpriseOpenCMIS10TCKTest
|
||||
{
|
||||
private static final String CMIS_URL = "http://{0}:{1}/{2}/cmisatom";
|
||||
protected static final Log logger = LogFactory.getLog(TestEnterpriseAtomPubTCK.class);
|
||||
|
||||
private static NodeRef getCompanyHome(NodeService nodeService, SearchService searchService, NamespaceService namespaceService)
|
||||
{
|
||||
NodeRef storeRootNodeRef = nodeService.getRootNode(StoreRef.STORE_REF_WORKSPACE_SPACESSTORE);
|
||||
List<NodeRef> results = searchService.selectNodes(
|
||||
storeRootNodeRef,
|
||||
"/app:company_home",
|
||||
null,
|
||||
namespaceService,
|
||||
false,
|
||||
SearchService.LANGUAGE_XPATH);
|
||||
if (results.size() == 0)
|
||||
{
|
||||
throw new AlfrescoRuntimeException("Didn't find Company Home");
|
||||
}
|
||||
NodeRef companyHomeNodeRef = results.get(0);
|
||||
return companyHomeNodeRef;
|
||||
}
|
||||
|
||||
@Before
|
||||
public void setup() throws Exception
|
||||
{
|
||||
JettyComponent jetty = getTestFixture().getJettyComponent();
|
||||
|
||||
final SearchService searchService = (SearchService)jetty.getApplicationContext().getBean("searchService");;
|
||||
final NodeService nodeService = (NodeService)jetty.getApplicationContext().getBean("nodeService");
|
||||
final FileFolderService fileFolderService = (FileFolderService)jetty.getApplicationContext().getBean("fileFolderService");
|
||||
final NamespaceService namespaceService = (NamespaceService)jetty.getApplicationContext().getBean("namespaceService");
|
||||
final TransactionService transactionService = (TransactionService)jetty.getApplicationContext().getBean("transactionService");
|
||||
final String name = "abc" + System.currentTimeMillis();
|
||||
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void execute() throws Throwable
|
||||
{
|
||||
AuthenticationUtil.setFullyAuthenticatedUser(AuthenticationUtil.getAdminUserName());
|
||||
|
||||
NodeRef companyHome = getCompanyHome(nodeService, searchService, namespaceService);
|
||||
fileFolderService.create(companyHome, name, ContentModel.TYPE_FOLDER).getNodeRef();
|
||||
|
||||
return null;
|
||||
}
|
||||
}, false, true);
|
||||
|
||||
int port = jetty.getPort();
|
||||
Map<String, String> cmisParameters = new HashMap<String, String>();
|
||||
cmisParameters.put(TestParameters.DEFAULT_RELATIONSHIP_TYPE, "R:cm:replaces");
|
||||
cmisParameters.put(TestParameters.DEFAULT_TEST_FOLDER_PARENT, "/" + name);
|
||||
clientContext = new OpenCMISClientContext(BindingType.ATOMPUB,
|
||||
MessageFormat.format(CMIS_URL, "localhost", String.valueOf(port), "alfresco"), "admin", "admin", cmisParameters, jetty.getApplicationContext());
|
||||
|
||||
overrideVersionableAspectProperties(jetty.getApplicationContext());
|
||||
}
|
||||
|
||||
// Commented out: See https://issues.alfresco.com/jira/browse/MNT-11123?focusedCommentId=339130&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-339130
|
||||
// @Test
|
||||
// public void testCMISTCKBasics() throws Exception
|
||||
// {
|
||||
// BasicsTestGroup basicsTestGroup = new BasicsTestGroup();
|
||||
// JUnitHelper.run(basicsTestGroup);
|
||||
// }
|
||||
|
||||
@Test
|
||||
public void testCMISTCKCRUD() throws Exception
|
||||
{
|
||||
CRUDTestGroup crudTestGroup = new CRUDTestGroup();
|
||||
JUnitHelper.run(crudTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKVersioning() throws Exception
|
||||
{
|
||||
OverrideVersioningTestGroup versioningTestGroup = new OverrideVersioningTestGroup();
|
||||
JUnitHelper.run(versioningTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKFiling() throws Exception
|
||||
{
|
||||
FilingTestGroup filingTestGroup = new FilingTestGroup();
|
||||
JUnitHelper.run(filingTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKControl() throws Exception
|
||||
{
|
||||
ControlTestGroup controlTestGroup = new ControlTestGroup();
|
||||
JUnitHelper.run(controlTestGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCMISTCKQuery() throws Exception
|
||||
{
|
||||
OverrideQueryTestGroup queryTestGroup = new OverrideQueryTestGroup();
|
||||
JUnitHelper.run(queryTestGroup);
|
||||
}
|
||||
|
||||
private class OverrideVersioningTestGroup extends AbstractSessionTestGroup
|
||||
{
|
||||
@Override
|
||||
public void init(Map<String, String> parameters) throws Exception
|
||||
{
|
||||
super.init(parameters);
|
||||
|
||||
setName("Versioning Test Group");
|
||||
setDescription("Versioning tests.");
|
||||
|
||||
addTest(new VersioningSmokeTest());
|
||||
addTest(new VersionDeleteTest());
|
||||
addTest(new VersioningStateCreateTest());
|
||||
// relies on Solr being available
|
||||
addTest(new CheckedOutTest());
|
||||
}
|
||||
}
|
||||
|
||||
private class OverrideQueryTestGroup extends AbstractSessionTestGroup
|
||||
{
|
||||
@Override
|
||||
public void init(Map<String, String> parameters) throws Exception
|
||||
{
|
||||
super.init(parameters);
|
||||
|
||||
setName("Query Test Group");
|
||||
setDescription("Query and content changes tests.");
|
||||
|
||||
addTest(new QuerySmokeTest());
|
||||
// The test fails on Lucene see MNT-11223
|
||||
// addTest(new QueryRootFolderTest());
|
||||
addTest(new QueryForObjectCustom());
|
||||
addTest(new QueryLikeTestCustom());
|
||||
addTest(new QueryInFolderTestCustom());
|
||||
addTest(new ContentChangesSmokeTest());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user