ALF-19690 "CMIS TCK Test Failures": fixed up failing TCK tests for 1.0 and 1.1 endpoints, refactoring of tests to aid in this aim, other fixes for things I found whilst testing, hopefully have addressed CLOUD-2051 too, upgrade alfresco-opencmis-extension (with updated chemistry dependency) to fix transitive dependency issue in maven

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@55695 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Steven Glover
2013-09-19 16:35:41 +00:00
parent a9786e1c99
commit bdb6746670
24 changed files with 1410 additions and 1238 deletions

View File

@@ -11,7 +11,9 @@ public class TCKEnterpriseTestFixture extends EnterpriseTestFixture
"classpath:alfresco/web-scripts-application-context-test.xml",
"rest-api-test-context.xml"
};
public final static String[] CLASS_LOCATIONS = new String[] {"classpath*:/publicapi/solr"};
private static TCKEnterpriseTestFixture instance;
/*
@@ -35,7 +37,7 @@ public class TCKEnterpriseTestFixture extends EnterpriseTestFixture
@Override
protected JettyComponent makeJettyComponent()
{
JettyComponent jettyComponent = new CMISTCKJettyComponent(port, contextPath, servletName, configLocations, classLocations);
JettyComponent jettyComponent = new EnterpriseJettyComponent(port, contextPath, configLocations, classLocations);
return jettyComponent;
}