mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
28029: Added more tests for PublishingEventHelper and PublishingQueueImpl. Also added WebPublishingTestSuite. 28034: Support for ALF-8792: RSOLR 036: SOLR APIs to support index integrity checking - ACL and ACLTX support 28036: WCM QS ML UI tweaks for marking something as the initial translation 28038: ALF-8548: WPUB: F165: Foundation API: Cancel a scheduled publishing event - Code and initial test cases 28051: Fix for ALF-8836: No permission checks for SolrJSONResultSet 28057: WCM QS ML support for claiming intermediate non-translated folders when translating documents, with tests 28058: ML-WQS: Slight refactoring to remove RootNavInterceptor. This functionality has been brought into the ApplicationDataInterceptor. The effective root section is now made available to templates and components in the model. 28059: ALF-8499. SVC 10: Action Forms. This checkin adds an ActionFormProcessor which supports the generation and persistence of Forms based on Alfresco spring-injected action beans. The form processor produces a form field for each defined action parameter as well as the ubiquitous executeAsynchronously boolean for action execution. There is no styling of configuration of these forms and therefore NodeRef parameters will allow selection of any cm:cmobject nodes and action constraints like ac-aspects will return every aspect defined in the system. To expose these forms in the product, we would need to add form configuration for the built-in actions in order to manage and control such data. 28064: Fix for ALF-8857: Fix SOLR query caching to respect locale for ordering 28067: ALF-8846 : Intermittent: DMDeploymentTargetTest added more debug logging and throw an explicit exception on trying to create a duplicate directory. 28068: Publishing: Tidy-up (javadoc and removal of a few unnecessary operations) prior to sprint 1 demo. 28069: Implemented EnvironmentImpl.checkStatus() method. Also created an AbstractWebPublishingIntegrationTest and extended many of the web publishing tests from htis class. 28076: Publishing: More javadoc 28078: RINF 11: Canned queries - minor: rename CannedQuery "query" to "queryAndFilter" and update/fix related JavaDoc (ALF-8827) - update PagingRequest - precursor to merge with (Script) PagingDetails (ALF-8855) 28079: RINF 40: Lucene Removal: PersonService API (ALF-8805) - W.I.P. - add GetChildren CQ support for (initially string) property filtering, including unit tests - update GetChildren CQ to allow up to three filter and/or sort props - add GetChildren CQ unit test for existing DB-based filtering of child types - fix GetChildren CQ sorting, for spoofed referenceable props (including missing name) 28083: Fix for ALF-8858: Fix cache bugs (TX and ACLTX docs not tracked) 28097: Fix hard-coded checks for aspect counts following sys:localized changes 28126: Build/test fix (GetChildrenCannedQueryTest.testPropertyStringFiltering) 28147: RINF 40: Lucene Removal: PersonService API - initial impl w/ unit tests - note: separate task required to update JavaScript API (People.getPeople) 28157: RINF 40: Lucene Removal: PersonService API (ALF-8805) - fix People.getPeople - put back FTS option (pending ALF-8924) 28162: Added PublishWebContentJbpmTest to test the Jbpm publish web content process definiion. 28178: Build fix. Removing a trailing comma that my ant build objects to. 28180: Preventing a NPE within TikaCharsetFinder. Was observed as part of tests for ALF-3757. 28182: RSOLR 037: Integrate CMIS Dictionary into SOLR engine 28183: ALF-8846 - fix DMDeploymentTarget(Test) - make system auth explicit - minor: fixup debug logging 28187: Fix for ALF-7308. The imgpreview thumbnail ... scale up small images... I've exposed an ImageMagick configuration option ('>') as a new ImageRenderingEngine parameter, "allowEnlargement". It's not mandatory, defaults to true, and is set to false for doclib and imgpreview thumbnails. The net result is that doclib and imgpreview thumbnails of small graphics files (e.g. icons) will never have sizes exceeding their original size. 28191: RINF 09: Update FileFolderService (ALF-7168) - minor: clean-up debug/trace logging 28192: Fix MT for GetChildren CQ - FileFolderService -> list (ALF-7168) - PersonService -> getPeople (ALF-8805) 28194: RINF 09: CMIS getChildren sorting fixes (part of ALF-7168) - fix sorting by cmis:contentStreamMimeType and/or cmis:contentStreamLength - add warning + debug (if some orderBy sort props need to be ignored - eg. too many or unknown) - reviewed w/ Florian 28195: ALF-8910: RSOLR 037: Integrate CMIS Query Parser into SOLR engine 28211: Changes for ALF-8646: "RINF 38: Text data encryption" 28227: Changes for ALF-8646: "RINF 38: Text data encryption" o fix build issue relating to missing property definition 28232: ALF-8928 - Performance degradation when loading documents from RepoStore 28233: Attempt to resolve OOM hangs in SWIFT builds - Set mem.size.max=2048m 28234: Implementation of ALF-8986. Add support for transformation of Apple iWorks files. A new transformer transforms (pages, numbers, keynote) iWorks 09 files to image or SWF for doclib & webpreview thumbnailing. This transformer extracts an embedded JPEG or PDF file from a well-known location within the iWorks zip structure & uses that to create Alfresco thumbnails. If these zip entries are not present for whatever reason, then the transformation fails in the usual way. All of our iWorks 09 test files have an embedded JPEG and more than half have embedded PDFs. 28243: Init/refresh repo webscripts in single txn - found whilst investigating ALF-8928 28268: Started implementing PublishEventAction. Also updated mapping of nodes from source to live environment to use associations. 28308: PublishEventAction now supports updating of nodes that have already been published. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28321 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
531 lines
26 KiB
Java
531 lines
26 KiB
Java
/*
|
|
* 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.dictionary;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.InputStream;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import junit.framework.TestCase;
|
|
import net.sf.ehcache.Cache;
|
|
import net.sf.ehcache.CacheManager;
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.repo.cache.EhCacheAdapter;
|
|
import org.alfresco.repo.dictionary.DictionaryDAOImpl.DictionaryRegistry;
|
|
import org.alfresco.repo.dictionary.NamespaceDAOImpl.NamespaceRegistry;
|
|
import org.alfresco.repo.dictionary.constraint.AbstractConstraint;
|
|
import org.alfresco.repo.dictionary.constraint.ConstraintRegistry;
|
|
import org.alfresco.repo.dictionary.constraint.RegexConstraint;
|
|
import org.alfresco.repo.dictionary.constraint.RegisteredConstraint;
|
|
import org.alfresco.repo.dictionary.constraint.StringLengthConstraint;
|
|
import org.alfresco.repo.dictionary.constraint.UserNameConstraint;
|
|
import org.alfresco.repo.tenant.SingleTServiceImpl;
|
|
import org.alfresco.repo.tenant.TenantService;
|
|
import org.alfresco.service.cmr.dictionary.AssociationDefinition;
|
|
import org.alfresco.service.cmr.dictionary.ChildAssociationDefinition;
|
|
import org.alfresco.service.cmr.dictionary.ClassDefinition;
|
|
import org.alfresco.service.cmr.dictionary.Constraint;
|
|
import org.alfresco.service.cmr.dictionary.ConstraintDefinition;
|
|
import org.alfresco.service.cmr.dictionary.DataTypeDefinition;
|
|
import org.alfresco.service.cmr.dictionary.DictionaryException;
|
|
import org.alfresco.service.cmr.dictionary.DictionaryService;
|
|
import org.alfresco.service.cmr.dictionary.ModelDefinition;
|
|
import org.alfresco.service.cmr.dictionary.PropertyDefinition;
|
|
import org.alfresco.service.cmr.dictionary.TypeDefinition;
|
|
import org.alfresco.service.namespace.NamespaceService;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.springframework.extensions.surf.util.I18NUtil;
|
|
|
|
|
|
public class RepoDictionaryDAOTest extends TestCase
|
|
{
|
|
public static final String TEST_RESOURCE_MESSAGES = "alfresco/messages/dictionary-messages";
|
|
|
|
private static final String TEST_URL = "http://www.alfresco.org/test/dictionarydaotest/1.0";
|
|
private static final String TEST_MODEL = "org/alfresco/repo/dictionary/dictionarydaotest_model.xml";
|
|
private static final String TEST_BUNDLE = "org/alfresco/repo/dictionary/dictionarydaotest_model";
|
|
private DictionaryService service;
|
|
|
|
|
|
@Override
|
|
public void setUp()
|
|
{
|
|
// Registered the required constraints
|
|
ConstraintRegistry constraintRegistry = ConstraintRegistry.getInstance();
|
|
AbstractConstraint constraintReg1 = new UserNameConstraint();
|
|
constraintReg1.setShortName("cm:reg1");
|
|
constraintReg1.setRegistry(constraintRegistry);
|
|
constraintReg1.initialize();
|
|
AbstractConstraint constraintReg2 = new UserNameConstraint();
|
|
constraintReg2.setShortName("cm:reg2");
|
|
constraintReg2.setRegistry(constraintRegistry);
|
|
constraintReg2.initialize();
|
|
|
|
// register resource bundles for messages
|
|
I18NUtil.registerResourceBundle(TEST_RESOURCE_MESSAGES);
|
|
|
|
// Instantiate Dictionary Service
|
|
TenantService tenantService = new SingleTServiceImpl();
|
|
NamespaceDAOImpl namespaceDAO = new NamespaceDAOImpl();
|
|
namespaceDAO.setTenantService(tenantService);
|
|
initNamespaceCaches(namespaceDAO);
|
|
|
|
DictionaryDAOImpl dictionaryDAO = new DictionaryDAOImpl(namespaceDAO);
|
|
dictionaryDAO.setTenantService(tenantService);
|
|
initDictionaryCaches(dictionaryDAO);
|
|
|
|
// Populate with appropriate models
|
|
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();
|
|
|
|
DictionaryComponent component = new DictionaryComponent();
|
|
component.setDictionaryDAO(dictionaryDAO);
|
|
service = component;
|
|
}
|
|
|
|
private void initDictionaryCaches(DictionaryDAOImpl dictionaryDAO)
|
|
{
|
|
CacheManager cacheManager = new CacheManager();
|
|
|
|
Cache dictionaryEhCache = new Cache("dictionaryCache", 50, false, true, 0L, 0L);
|
|
cacheManager.addCache(dictionaryEhCache);
|
|
EhCacheAdapter<String, DictionaryRegistry> dictionaryCache = new EhCacheAdapter<String, DictionaryRegistry>();
|
|
dictionaryCache.setCache(dictionaryEhCache);
|
|
|
|
dictionaryDAO.setDictionaryRegistryCache(dictionaryCache);
|
|
}
|
|
|
|
private void initNamespaceCaches(NamespaceDAOImpl namespaceDAO)
|
|
{
|
|
CacheManager cacheManager = new CacheManager();
|
|
|
|
Cache namespaceEhCache = new Cache("namespaceCache", 50, false, true, 0L, 0L);
|
|
cacheManager.addCache(namespaceEhCache);
|
|
EhCacheAdapter<String, NamespaceRegistry> namespaceCache = new EhCacheAdapter<String, NamespaceRegistry>();
|
|
namespaceCache.setCache(namespaceEhCache);
|
|
|
|
namespaceDAO.setNamespaceRegistryCache(namespaceCache);
|
|
}
|
|
|
|
|
|
public void testBootstrap()
|
|
{
|
|
TenantService tenantService = new SingleTServiceImpl();
|
|
NamespaceDAOImpl namespaceDAO = new NamespaceDAOImpl();
|
|
namespaceDAO.setTenantService(tenantService);
|
|
initNamespaceCaches(namespaceDAO);
|
|
|
|
DictionaryDAOImpl dictionaryDAO = new DictionaryDAOImpl(namespaceDAO);
|
|
dictionaryDAO.setTenantService(tenantService);
|
|
initDictionaryCaches(dictionaryDAO);
|
|
|
|
DictionaryBootstrap bootstrap = new DictionaryBootstrap();
|
|
List<String> bootstrapModels = new ArrayList<String>();
|
|
|
|
bootstrapModels.add("alfresco/model/dictionaryModel.xml");
|
|
bootstrapModels.add("alfresco/model/systemModel.xml");
|
|
bootstrapModels.add("alfresco/model/contentModel.xml");
|
|
bootstrapModels.add("alfresco/model/wcmModel.xml");
|
|
bootstrapModels.add("alfresco/model/applicationModel.xml");
|
|
|
|
bootstrapModels.add("org/alfresco/repo/security/authentication/userModel.xml");
|
|
bootstrapModels.add("org/alfresco/repo/action/actionModel.xml");
|
|
bootstrapModels.add("org/alfresco/repo/rule/ruleModel.xml");
|
|
bootstrapModels.add("org/alfresco/repo/version/version_model.xml");
|
|
|
|
bootstrap.setModels(bootstrapModels);
|
|
bootstrap.setDictionaryDAO(dictionaryDAO);
|
|
bootstrap.setTenantService(tenantService);
|
|
bootstrap.bootstrap();
|
|
}
|
|
|
|
|
|
public void testLabels()
|
|
{
|
|
QName model = QName.createQName(TEST_URL, "dictionarydaotest");
|
|
ModelDefinition modelDef = service.getModel(model);
|
|
assertEquals("Model Description", modelDef.getDescription());
|
|
QName type = QName.createQName(TEST_URL, "base");
|
|
TypeDefinition typeDef = service.getType(type);
|
|
assertEquals("Base Title", typeDef.getTitle());
|
|
assertEquals("Base Description", typeDef.getDescription());
|
|
QName prop = QName.createQName(TEST_URL, "prop1");
|
|
PropertyDefinition propDef = service.getProperty(prop);
|
|
assertEquals("Prop1 Title", propDef.getTitle());
|
|
assertEquals("Prop1 Description", propDef.getDescription());
|
|
QName assoc = QName.createQName(TEST_URL, "assoc1");
|
|
AssociationDefinition assocDef = service.getAssociation(assoc);
|
|
assertEquals("Assoc1 Title", assocDef.getTitle());
|
|
assertEquals("Assoc1 Description", assocDef.getDescription());
|
|
QName datatype = QName.createQName(TEST_URL, "datatype");
|
|
DataTypeDefinition datatypeDef = service.getDataType(datatype);
|
|
assertEquals("Datatype Analyser", datatypeDef.getAnalyserClassName());
|
|
}
|
|
|
|
public void testConstraints()
|
|
{
|
|
// Check that the registered constraints are correct
|
|
assertNotNull("Constraint reg1 not registered", ConstraintRegistry.getInstance().getConstraint("cm:reg1"));
|
|
assertNotNull("Constraint reg2 not registered", ConstraintRegistry.getInstance().getConstraint("cm:reg2"));
|
|
|
|
QName model = QName.createQName(TEST_URL, "dictionarydaotest");
|
|
Collection<ConstraintDefinition> modelConstraints = service.getConstraints(model);
|
|
assertEquals(21, modelConstraints.size()); // 10 + 11
|
|
|
|
QName conRegExp1QName = QName.createQName(TEST_URL, "regex1");
|
|
boolean found1 = false;
|
|
|
|
QName conStrLen1QName = QName.createQName(TEST_URL, "stringLength1");
|
|
boolean found2 = false;
|
|
|
|
for (ConstraintDefinition constraintDef : modelConstraints)
|
|
{
|
|
if (constraintDef.getName().equals(conRegExp1QName))
|
|
{
|
|
assertEquals("Regex1 title", constraintDef.getTitle());
|
|
assertEquals("Regex1 description", constraintDef.getDescription());
|
|
found1 = true;
|
|
}
|
|
|
|
if (constraintDef.getName().equals(conStrLen1QName))
|
|
{
|
|
assertNull(constraintDef.getTitle());
|
|
assertNull(constraintDef.getDescription());
|
|
found2 = true;
|
|
}
|
|
}
|
|
assertTrue(found1);
|
|
assertTrue(found2);
|
|
|
|
// get the constraints for a property without constraints
|
|
QName propNoConstraintsQName = QName.createQName(TEST_URL, "fileprop");
|
|
PropertyDefinition propNoConstraintsDef = service.getProperty(propNoConstraintsQName);
|
|
assertNotNull("Property without constraints returned null list", propNoConstraintsDef.getConstraints());
|
|
|
|
// get the constraints defined for the property
|
|
QName prop1QName = QName.createQName(TEST_URL, "prop1");
|
|
PropertyDefinition propDef = service.getProperty(prop1QName);
|
|
List<ConstraintDefinition> constraints = propDef.getConstraints();
|
|
assertNotNull("Null constraints list", constraints);
|
|
assertEquals("Incorrect number of constraints", 3, constraints.size());
|
|
assertTrue("Constraint instance incorrect", constraints.get(0).getConstraint() instanceof RegexConstraint);
|
|
assertTrue("Constraint instance incorrect", constraints.get(1).getConstraint() instanceof StringLengthConstraint);
|
|
assertTrue("Constraint instance incorrect", constraints.get(2).getConstraint() instanceof RegisteredConstraint);
|
|
|
|
// check the individual constraints
|
|
ConstraintDefinition constraintDef = constraints.get(0);
|
|
assertTrue("Constraint anonymous name incorrect", constraintDef.getName().getLocalName().startsWith("prop1_anon"));
|
|
|
|
// inherit title / description for reference constraint
|
|
assertTrue("Constraint title incorrect", constraintDef.getTitle().equals("Regex1 title"));
|
|
assertTrue("Constraint description incorrect", constraintDef.getDescription().equals("Regex1 description"));
|
|
|
|
constraintDef = constraints.get(1);
|
|
assertTrue("Constraint anonymous name incorrect", constraintDef.getName().getLocalName().startsWith("prop1_anon"));
|
|
|
|
assertTrue("Constraint title incorrect", constraintDef.getTitle().equals("Prop1 Strlen1 title"));
|
|
assertTrue("Constraint description incorrect", constraintDef.getDescription().equals("Prop1 Strlen1 description"));
|
|
|
|
// check that the constraint implementation is valid (it used a reference)
|
|
Constraint constraint = constraintDef.getConstraint();
|
|
assertNotNull("Reference constraint has no implementation", constraint);
|
|
}
|
|
|
|
public void testConstraintsOverrideInheritance()
|
|
{
|
|
QName baseQName = QName.createQName(TEST_URL, "base");
|
|
QName fileQName = QName.createQName(TEST_URL, "file");
|
|
QName folderQName = QName.createQName(TEST_URL, "folder");
|
|
QName prop1QName = QName.createQName(TEST_URL, "prop1");
|
|
|
|
// get the base property
|
|
PropertyDefinition prop1Def = service.getProperty(baseQName, prop1QName);
|
|
assertNotNull(prop1Def);
|
|
List<ConstraintDefinition> prop1Constraints = prop1Def.getConstraints();
|
|
assertEquals("Incorrect number of constraints", 3, prop1Constraints.size());
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(0).getConstraint() instanceof RegexConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(1).getConstraint() instanceof StringLengthConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(2).getConstraint() instanceof RegisteredConstraint);
|
|
|
|
// check the inherited property on folder (must be same as above)
|
|
prop1Def = service.getProperty(folderQName, prop1QName);
|
|
assertNotNull(prop1Def);
|
|
prop1Constraints = prop1Def.getConstraints();
|
|
assertEquals("Incorrect number of constraints", 3, prop1Constraints.size());
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(0).getConstraint() instanceof RegexConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(1).getConstraint() instanceof StringLengthConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(2).getConstraint() instanceof RegisteredConstraint);
|
|
|
|
// check the overridden property on file (must be reverse of above)
|
|
prop1Def = service.getProperty(fileQName, prop1QName);
|
|
assertNotNull(prop1Def);
|
|
prop1Constraints = prop1Def.getConstraints();
|
|
assertEquals("Incorrect number of constraints", 3, prop1Constraints.size());
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(0).getConstraint() instanceof StringLengthConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(1).getConstraint() instanceof RegexConstraint);
|
|
assertTrue("Constraint instance incorrect", prop1Constraints.get(2).getConstraint() instanceof RegisteredConstraint);
|
|
}
|
|
|
|
public void testArchive()
|
|
{
|
|
QName testFileQName = QName.createQName(TEST_URL, "file");
|
|
ClassDefinition fileClassDef = service.getClass(testFileQName);
|
|
assertTrue("File type should have the archive flag", fileClassDef.getArchive());
|
|
|
|
QName testFileDerivedQName = QName.createQName(TEST_URL, "file-derived");
|
|
ClassDefinition fileDerivedClassDef = service.getClass(testFileDerivedQName);
|
|
assertTrue("Direct derived File type should have the archive flag", fileDerivedClassDef.getArchive());
|
|
|
|
QName testFileDerivedNoArchiveQName = QName.createQName(TEST_URL, "file-derived-no-archive");
|
|
ClassDefinition fileDerivedNoArchiveClassDef = service.getClass(testFileDerivedNoArchiveQName);
|
|
assertFalse("Derived File with archive override type should NOT have the archive flag",
|
|
fileDerivedNoArchiveClassDef.getArchive());
|
|
|
|
QName testFolderQName = QName.createQName(TEST_URL, "folder");
|
|
ClassDefinition folderClassDef = service.getClass(testFolderQName);
|
|
assertNull("Folder type should not have the archive flag", folderClassDef.getArchive());
|
|
}
|
|
|
|
public void testMandatoryEnforced()
|
|
{
|
|
// get the properties for the test type
|
|
QName testEnforcedQName = QName.createQName(TEST_URL, "enforced");
|
|
ClassDefinition testEnforcedClassDef = service.getClass(testEnforcedQName);
|
|
Map<QName, PropertyDefinition> testEnforcedPropertyDefs = testEnforcedClassDef.getProperties();
|
|
|
|
PropertyDefinition propertyDef = null;
|
|
|
|
QName testMandatoryEnforcedQName = QName.createQName(TEST_URL, "mandatory-enforced");
|
|
propertyDef = testEnforcedPropertyDefs.get(testMandatoryEnforcedQName);
|
|
assertNotNull("Property not found: " + testMandatoryEnforcedQName,
|
|
propertyDef);
|
|
assertTrue("Expected property to be mandatory: " + testMandatoryEnforcedQName,
|
|
propertyDef.isMandatory());
|
|
assertTrue("Expected property to be mandatory-enforced: " + testMandatoryEnforcedQName,
|
|
propertyDef.isMandatoryEnforced());
|
|
|
|
QName testMandatoryNotEnforcedQName = QName.createQName(TEST_URL, "mandatory-not-enforced");
|
|
propertyDef = testEnforcedPropertyDefs.get(testMandatoryNotEnforcedQName);
|
|
assertNotNull("Property not found: " + testMandatoryNotEnforcedQName,
|
|
propertyDef);
|
|
assertTrue("Expected property to be mandatory: " + testMandatoryNotEnforcedQName,
|
|
propertyDef.isMandatory());
|
|
assertFalse("Expected property to be mandatory-not-enforced: " + testMandatoryNotEnforcedQName,
|
|
propertyDef.isMandatoryEnforced());
|
|
|
|
QName testMandatoryDefaultEnforcedQName = QName.createQName(TEST_URL, "mandatory-default-enforced");
|
|
propertyDef = testEnforcedPropertyDefs.get(testMandatoryDefaultEnforcedQName);
|
|
assertNotNull("Property not found: " + testMandatoryDefaultEnforcedQName,
|
|
propertyDef);
|
|
assertTrue("Expected property to be mandatory: " + testMandatoryDefaultEnforcedQName,
|
|
propertyDef.isMandatory());
|
|
assertFalse("Expected property to be mandatory-not-enforced: " + testMandatoryDefaultEnforcedQName,
|
|
propertyDef.isMandatoryEnforced());
|
|
}
|
|
|
|
public void testEncrypted()
|
|
{
|
|
// get the properties for the test type
|
|
QName testEncryptedQName = QName.createQName(TEST_URL, "encrypted");
|
|
ClassDefinition testEncryptedClassDef = service.getClass(testEncryptedQName);
|
|
Map<QName, PropertyDefinition> testEncryptedPropertyDefs = testEncryptedClassDef.getProperties();
|
|
|
|
PropertyDefinition propertyDef = null;
|
|
|
|
QName testTextEncryptedQName = QName.createQName(TEST_URL, "text_encrypted");
|
|
propertyDef = testEncryptedPropertyDefs.get(testTextEncryptedQName);
|
|
assertNotNull("Property not found: " + testTextEncryptedQName,
|
|
propertyDef);
|
|
assertTrue("Expected property to be encrypted: " + testTextEncryptedQName,
|
|
propertyDef.isEncrypted());
|
|
|
|
QName testMLTextEncryptedQName = QName.createQName(TEST_URL, "mltext_encrypted");
|
|
propertyDef = testEncryptedPropertyDefs.get(testMLTextEncryptedQName);
|
|
assertNotNull("Property not found: " + testMLTextEncryptedQName,
|
|
propertyDef);
|
|
assertTrue("Expected property to be encrypted: " + testMLTextEncryptedQName,
|
|
propertyDef.isEncrypted());
|
|
// TODO test for encrypted == false?
|
|
}
|
|
|
|
public void testSubClassOf()
|
|
{
|
|
QName invalid = QName.createQName(TEST_URL, "invalid");
|
|
QName base = QName.createQName(TEST_URL, "base");
|
|
QName file = QName.createQName(TEST_URL, "file");
|
|
QName folder = QName.createQName(TEST_URL, "folder");
|
|
QName referenceable = QName.createQName(TEST_URL, "referenceable");
|
|
|
|
// Test invalid args
|
|
boolean testI1 = service.isSubClass(invalid, referenceable);
|
|
|
|
assertFalse(testI1);
|
|
|
|
boolean testI2 = service.isSubClass(referenceable, invalid);
|
|
assertFalse(testI2);
|
|
|
|
boolean testI3 = service.isSubClass(invalid, invalid);
|
|
assertFalse(testI3);
|
|
|
|
// Test various flavours of subclassof
|
|
boolean test1 = service.isSubClass(file, referenceable); // type vs aspect
|
|
assertFalse(test1);
|
|
boolean test2 = service.isSubClass(file, folder); // seperate hierarchies
|
|
assertFalse(test2);
|
|
boolean test3 = service.isSubClass(file, file); // self
|
|
assertTrue(test3);
|
|
boolean test4 = service.isSubClass(folder, base); // subclass
|
|
assertTrue(test4);
|
|
boolean test5 = service.isSubClass(base, folder); // reversed test
|
|
assertFalse(test5);
|
|
}
|
|
|
|
|
|
public void testPropertyOverride()
|
|
{
|
|
TypeDefinition type1 = service.getType(QName.createQName(TEST_URL, "overridetype1"));
|
|
Map<QName, PropertyDefinition> props1 = type1.getProperties();
|
|
PropertyDefinition prop1 = props1.get(QName.createQName(TEST_URL, "propoverride"));
|
|
String def1 = prop1.getDefaultValue();
|
|
assertEquals("one", def1);
|
|
|
|
TypeDefinition type2 = service.getType(QName.createQName(TEST_URL, "overridetype2"));
|
|
Map<QName, PropertyDefinition> props2 = type2.getProperties();
|
|
PropertyDefinition prop2 = props2.get(QName.createQName(TEST_URL, "propoverride"));
|
|
String def2 = prop2.getDefaultValue();
|
|
assertEquals("two", def2);
|
|
|
|
TypeDefinition type3 = service.getType(QName.createQName(TEST_URL, "overridetype3"));
|
|
Map<QName, PropertyDefinition> props3 = type3.getProperties();
|
|
PropertyDefinition prop3 = props3.get(QName.createQName(TEST_URL, "propoverride"));
|
|
String def3 = prop3.getDefaultValue();
|
|
assertEquals("three", def3);
|
|
}
|
|
|
|
public void testChildAssocPropagate()
|
|
{
|
|
// Check the default value
|
|
AssociationDefinition assocDef = service.getAssociation(QName.createQName(TEST_URL, "childassoc1"));
|
|
assertNotNull("No such child association found", assocDef);
|
|
assertTrue("Expected a child association", assocDef instanceof ChildAssociationDefinition);
|
|
ChildAssociationDefinition childAssocDef = (ChildAssociationDefinition) assocDef;
|
|
assertFalse("Expected 'false' for default timestamp propagation", childAssocDef.getPropagateTimestamps());
|
|
|
|
// Check the explicit value
|
|
assocDef = service.getAssociation(QName.createQName(TEST_URL, "childassocPropagate"));
|
|
assertNotNull("No such child association found", assocDef);
|
|
assertTrue("Expected a child association", assocDef instanceof ChildAssociationDefinition);
|
|
childAssocDef = (ChildAssociationDefinition) assocDef;
|
|
assertTrue("Expected 'true' for timestamp propagation", childAssocDef.getPropagateTimestamps());
|
|
}
|
|
|
|
public void testADB159() throws UnsupportedEncodingException
|
|
{
|
|
// source dictionary
|
|
TenantService tenantService = new SingleTServiceImpl();
|
|
NamespaceDAOImpl namespaceDAO = new NamespaceDAOImpl();
|
|
namespaceDAO.setTenantService(tenantService);
|
|
initNamespaceCaches(namespaceDAO);
|
|
DictionaryDAOImpl dictionaryDAO = new DictionaryDAOImpl(namespaceDAO);
|
|
dictionaryDAO.setTenantService(tenantService);
|
|
initDictionaryCaches(dictionaryDAO);
|
|
|
|
// destination dictionary
|
|
NamespaceDAOImpl namespaceDAO2 = new NamespaceDAOImpl();
|
|
namespaceDAO2.setTenantService(tenantService);
|
|
initNamespaceCaches(namespaceDAO2);
|
|
DictionaryDAOImpl dictionaryDAO2 = new DictionaryDAOImpl(namespaceDAO2);
|
|
dictionaryDAO2.setTenantService(tenantService);
|
|
initDictionaryCaches(dictionaryDAO2);
|
|
|
|
List<String> models = new ArrayList<String>();
|
|
models.add("alfresco/model/dictionaryModel.xml");
|
|
models.add("alfresco/model/systemModel.xml");
|
|
models.add("alfresco/model/contentModel.xml");
|
|
models.add("alfresco/model/wcmModel.xml");
|
|
models.add("alfresco/model/applicationModel.xml");
|
|
models.add("org/alfresco/repo/security/authentication/userModel.xml");
|
|
models.add("org/alfresco/repo/action/actionModel.xml");
|
|
models.add("org/alfresco/repo/rule/ruleModel.xml");
|
|
models.add("org/alfresco/repo/version/version_model.xml");
|
|
|
|
// round-trip default models
|
|
for (String bootstrapModel : models)
|
|
{
|
|
InputStream modelStream = getClass().getClassLoader().getResourceAsStream(bootstrapModel);
|
|
if (modelStream == null)
|
|
{
|
|
throw new DictionaryException("Could not find bootstrap model " + bootstrapModel);
|
|
}
|
|
try
|
|
{
|
|
// parse model from xml
|
|
M2Model model = M2Model.createModel(modelStream);
|
|
dictionaryDAO.putModel(model);
|
|
|
|
// regenerate xml from model
|
|
ByteArrayOutputStream xml1 = new ByteArrayOutputStream();
|
|
model.toXML(xml1);
|
|
|
|
// register regenerated xml with other dictionary
|
|
M2Model model2 = M2Model.createModel(new ByteArrayInputStream(xml1.toByteArray()));
|
|
dictionaryDAO2.putModel(model2);
|
|
}
|
|
catch(DictionaryException e)
|
|
{
|
|
throw new DictionaryException("Could not import bootstrap model " + bootstrapModel, e);
|
|
}
|
|
}
|
|
|
|
// specific test case
|
|
M2Model model = M2Model.createModel("test:adb25");
|
|
model.createNamespace(TEST_URL, "test");
|
|
model.createImport(NamespaceService.DICTIONARY_MODEL_1_0_URI, NamespaceService.DICTIONARY_MODEL_PREFIX);
|
|
model.createImport(NamespaceService.SYSTEM_MODEL_1_0_URI, NamespaceService.SYSTEM_MODEL_PREFIX);
|
|
model.createImport(NamespaceService.CONTENT_MODEL_1_0_URI, NamespaceService.CONTENT_MODEL_PREFIX);
|
|
|
|
M2Type testType = model.createType("test:adb25" );
|
|
testType.setParentName("cm:" + ContentModel.TYPE_CONTENT.getLocalName());
|
|
|
|
M2Property prop1 = testType.createProperty("test:prop1");
|
|
prop1.setMandatory(false);
|
|
prop1.setType("d:" + DataTypeDefinition.TEXT.getLocalName());
|
|
prop1.setMultiValued(false);
|
|
|
|
ByteArrayOutputStream xml1 = new ByteArrayOutputStream();
|
|
model.toXML(xml1);
|
|
}
|
|
|
|
}
|