Refactored AlfrescoFTSQParserPluginTest into a test suite which perfroms a dataload first before asserting tests

This commit is contained in:
Michael Suzuki
2016-06-17 17:04:41 +01:00
parent 7e9215a5cd
commit 50de680935
7 changed files with 2108 additions and 1384 deletions

View File

@@ -98,6 +98,7 @@ public abstract class AbstractAlfrescoSolrTests implements SolrTestFiles, Alfre
* </p>
*/
protected static TestHarness.LocalRequestFactory lrf;
protected static String testBaseFolderNodeRef;
protected AlfrescoSolrDataModel dataModel = AlfrescoSolrDataModel.getInstance();
public static void initAlfrescoCore(String config, String schema) throws Exception
@@ -576,11 +577,23 @@ public abstract class AbstractAlfrescoSolrTests implements SolrTestFiles, Alfre
/**
* Generates a SolrQueryRequest
*/
public static SolrQueryRequest req(SolrParams params, String... moreParams) {
ModifiableSolrParams mp = new ModifiableSolrParams(params);
for (int i=0; i<moreParams.length; i+=2) {
mp.add(moreParams[i], moreParams[i+1]);
}
return new LocalSolrQueryRequest(h.getCore(), mp);
public static SolrQueryRequest req(SolrParams params, String... moreParams)
{
ModifiableSolrParams mp = new ModifiableSolrParams(params);
for (int i=0; i<moreParams.length; i+=2)
{
mp.add(moreParams[i], moreParams[i+1]);
}
return new LocalSolrQueryRequest(h.getCore(), mp);
}
public static ModifiableSolrParams params(String... params)
{
ModifiableSolrParams msp = new ModifiableSolrParams();
for (int i=0; i<params.length; i+=2)
{
msp.add(params[i], params[i+1]);
}
return msp;
}
}

View File

@@ -42,6 +42,8 @@ import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_QNAME
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_READER;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_SOLR4_ID;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_TENANT;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_TXCOMMITTIME;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_TXID;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_TYPE;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_VERSION;
@@ -560,5 +562,42 @@ public class AlfrescoSolrUtils
aclCmd.solrDoc = aclSol;
core.getUpdateHandler().addDoc(aclCmd);
}
public static void addStoreRoot(SolrCore core,
AlfrescoSolrDataModel dataModel,
NodeRef rootNodeRef,
int txid,
int dbid,
int acltxid,
int aclid) throws IOException
{
SolrServletRequest solrQueryRequest = null;
try
{
solrQueryRequest = new SolrServletRequest(core, null);
AddUpdateCommand addDocCmd = new AddUpdateCommand(solrQueryRequest);
addDocCmd.overwrite = true;
addDocCmd.solrDoc = createDocument(dataModel, new Long(txid), new Long(dbid), rootNodeRef,
ContentModel.TYPE_STOREROOT, new QName[]{ContentModel.ASPECT_ROOT}, null, null, new Long(aclid),
new String[]{"/"}, "system", null, null);
core.getUpdateHandler().addDoc(addDocCmd);
addAcl(solrQueryRequest, core, dataModel, acltxid, aclid, 0, 0);
AddUpdateCommand txCmd = new AddUpdateCommand(solrQueryRequest);
txCmd.overwrite = true;
SolrInputDocument input = new SolrInputDocument();
String id = AlfrescoSolrDataModel.getTransactionDocumentId(new Long(txid));
input.addField(FIELD_SOLR4_ID, id);
input.addField(FIELD_VERSION, "0");
input.addField(FIELD_TXID, txid);
input.addField(FIELD_INTXID, txid);
input.addField(FIELD_TXCOMMITTIME, (new Date()).getTime());
input.addField(FIELD_DOC_TYPE, SolrInformationServer.DOC_TYPE_TX);
txCmd.solrDoc = input;
core.getUpdateHandler().addDoc(txCmd);
core.getUpdateHandler().commit(new CommitUpdateCommand(solrQueryRequest, false));
}
finally
{
solrQueryRequest.close();
}
}
}

View File

@@ -1,3 +1,21 @@
/*
* Copyright (C) 2005-2016 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.solr;
import static org.alfresco.repo.search.adaptor.lucene.QueryConstants.FIELD_DOC_TYPE;
@@ -38,7 +56,11 @@ import org.junit.BeforeClass;
import org.junit.Test;
import static org.alfresco.solr.AlfrescoSolrUtils.*;
/**
* Load test data as part of legacy test.
* @author Michael Suzuki
*
*/
public class LoadTestData extends AbstractAlfrescoSolrTests
{
private static int orderTextCount = 0;

View File

@@ -0,0 +1,52 @@
/*
* Copyright (C) 2005-2014 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.solr.query.cmis;
import org.alfresco.solr.AbstractAlfrescoSolrTests;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses({
LoadCMISData.class,
TestAlfrescoCMISQParserPlugin.class
})
/**
* Test CMIS query and parsing plugin.
* The suite works by loading all the test data using LoadCMISData.
* This step load the data directly into the harness.
* Once the data load completes the test executes the AlfrescoCMISQParserPluginTests
* which contains all the tests.
*
* @author Michael Suzuki
*
*/
public class CMISQParserPluginSuite extends AbstractAlfrescoSolrTests
{
@BeforeClass
public static void beforeClass() throws Exception
{
initAlfrescoCore("solrconfig-afts.xml", "schema-afts.xml");
Thread.sleep(30000);
}
}

View File

@@ -0,0 +1,627 @@
/*
* Copyright (C) 2005-2016 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.solr.query.cmis;
import java.io.IOException;
import java.util.Date;
import java.util.HashMap;
import java.util.Locale;
import org.alfresco.model.ContentModel;
import org.alfresco.service.cmr.repository.ChildAssociationRef;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.cmr.repository.datatype.DefaultTypeConverter;
import org.alfresco.service.namespace.NamespaceService;
import org.alfresco.service.namespace.QName;
import org.alfresco.solr.AbstractAlfrescoSolrTests;
import org.alfresco.solr.AlfrescoSolrDataModel;
import org.alfresco.solr.client.ContentPropertyValue;
import org.alfresco.solr.client.MLTextPropertyValue;
import org.alfresco.solr.client.PropertyValue;
import org.alfresco.solr.client.StringPropertyValue;
import org.apache.solr.core.SolrCore;
import org.junit.Test;
import static org.alfresco.solr.AlfrescoSolrUtils.*;
/**
* CMIS test data load, prepare test suite with data
* @author Michael Suzuki
*
*/
public class LoadCMISData extends AbstractAlfrescoSolrTests
{
@Test
public void loadCMISTestSet() throws IOException
{
SolrCore core = h.getCore();
AlfrescoSolrDataModel dataModel = AlfrescoSolrDataModel.getInstance();
dataModel.setCMDefaultUri();
NodeRef rootNodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
addStoreRoot(core, dataModel, rootNodeRef, 1, 1, 1, 1);
// Base
HashMap<QName, PropertyValue> baseFolderProperties = new HashMap<QName, PropertyValue>();
baseFolderProperties.put(ContentModel.PROP_NAME, new StringPropertyValue("Base Folder"));
// This variable is never used. What was it meant to be used for?
HashMap<QName, String> baseFolderContent = new HashMap<QName, String>();
NodeRef baseFolderNodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
testBaseFolderNodeRef = baseFolderNodeRef.toString();
QName baseFolderQName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "baseFolder");
ChildAssociationRef n01CAR = new ChildAssociationRef(ContentModel.ASSOC_CHILDREN, rootNodeRef,
baseFolderQName, baseFolderNodeRef, true, 0);
addNode(core, dataModel, 1, 2, 1, ContentModel.TYPE_FOLDER, null, baseFolderProperties, null, "andy",
new ChildAssociationRef[] { n01CAR }, new NodeRef[] { rootNodeRef }, new String[] { "/"
+ baseFolderQName.toString() }, baseFolderNodeRef, true);
// Folders
HashMap<QName, PropertyValue> folder00Properties = new HashMap<QName, PropertyValue>();
folder00Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 0"));
HashMap<QName, String> folder00Content = new HashMap<QName, String>();
NodeRef folder00NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder00QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 0");
ChildAssociationRef folder00CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, baseFolderNodeRef,
folder00QName, folder00NodeRef, true, 0);
addNode(core, dataModel, 1, 3, 1, ContentModel.TYPE_FOLDER, null, folder00Properties, null, "andy",
new ChildAssociationRef[] { folder00CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() },
folder00NodeRef, true);
HashMap<QName, PropertyValue> folder01Properties = new HashMap<QName, PropertyValue>();
folder01Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 1"));
HashMap<QName, String> folder01Content = new HashMap<QName, String>();
NodeRef folder01NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder01QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 1");
ChildAssociationRef folder01CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, baseFolderNodeRef,
folder01QName, folder01NodeRef, true, 0);
addNode(core, dataModel, 1, 4, 1, ContentModel.TYPE_FOLDER, null, folder01Properties, null, "bob",
new ChildAssociationRef[] { folder01CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder01QName.toString() },
folder01NodeRef, true);
HashMap<QName, PropertyValue> folder02Properties = new HashMap<QName, PropertyValue>();
folder02Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 2"));
HashMap<QName, String> folder02Content = new HashMap<QName, String>();
NodeRef folder02NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder02QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 2");
ChildAssociationRef folder02CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, baseFolderNodeRef,
folder02QName, folder02NodeRef, true, 0);
addNode(core, dataModel, 1, 5, 1, ContentModel.TYPE_FOLDER, null, folder02Properties, null, "cid",
new ChildAssociationRef[] { folder02CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder02QName.toString() },
folder02NodeRef, true);
HashMap<QName, PropertyValue> folder03Properties = new HashMap<QName, PropertyValue>();
folder03Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 3"));
HashMap<QName, String> folder03Content = new HashMap<QName, String>();
NodeRef folder03NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder03QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 3");
ChildAssociationRef folder03CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, baseFolderNodeRef,
folder03QName, folder03NodeRef, true, 0);
addNode(core, dataModel, 1, 6, 1, ContentModel.TYPE_FOLDER, null, folder03Properties, null, "dave",
new ChildAssociationRef[] { folder03CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder03QName.toString() },
folder03NodeRef, true);
HashMap<QName, PropertyValue> folder04Properties = new HashMap<QName, PropertyValue>();
folder04Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 4"));
HashMap<QName, String> folder04Content = new HashMap<QName, String>();
NodeRef folder04NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder04QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 4");
ChildAssociationRef folder04CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder00NodeRef,
folder04QName, folder04NodeRef, true, 0);
addNode(core, dataModel, 1, 7, 1, ContentModel.TYPE_FOLDER, null, folder04Properties, null, "eoin",
new ChildAssociationRef[] { folder04CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef,
folder00NodeRef }, new String[] { "/" + baseFolderQName.toString() + "/"
+ folder00QName.toString() + "/" + folder04QName.toString() }, folder04NodeRef,
true);
HashMap<QName, PropertyValue> folder05Properties = new HashMap<QName, PropertyValue>();
folder05Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 5"));
HashMap<QName, String> folder05Content = new HashMap<QName, String>();
NodeRef folder05NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder05QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 5");
ChildAssociationRef folder05CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder00NodeRef,
folder05QName, folder05NodeRef, true, 0);
addNode(core, dataModel, 1, 8, 1, ContentModel.TYPE_FOLDER, null, folder05Properties, null, "fred",
new ChildAssociationRef[] { folder05CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef,
folder00NodeRef }, new String[] { "/" + baseFolderQName.toString() + "/"
+ folder00QName.toString() + "/" + folder05QName.toString() }, folder05NodeRef,
true);
HashMap<QName, PropertyValue> folder06Properties = new HashMap<QName, PropertyValue>();
folder06Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 6"));
HashMap<QName, String> folder06Content = new HashMap<QName, String>();
NodeRef folder06NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder06QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 6");
ChildAssociationRef folder06CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder05NodeRef,
folder06QName, folder06NodeRef, true, 0);
addNode(core, dataModel, 1, 9, 1, ContentModel.TYPE_FOLDER, null, folder06Properties, null, "gail",
new ChildAssociationRef[] { folder06CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef,
folder00NodeRef, folder05NodeRef }, new String[] { "/" + baseFolderQName.toString()
+ "/" + folder00QName.toString() + "/" + folder05QName.toString() + "/"
+ folder06QName.toString() }, folder06NodeRef, true);
HashMap<QName, PropertyValue> folder07Properties = new HashMap<QName, PropertyValue>();
folder07Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 7"));
HashMap<QName, String> folder07Content = new HashMap<QName, String>();
NodeRef folder07NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder07QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 7");
ChildAssociationRef folder07CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder06NodeRef,
folder07QName, folder07NodeRef, true, 0);
addNode(core,
dataModel,
1,
10,
1,
ContentModel.TYPE_FOLDER,
null,
folder07Properties,
null,
"hal",
new ChildAssociationRef[] { folder07CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() }, folder07NodeRef, true);
HashMap<QName, PropertyValue> folder08Properties = new HashMap<QName, PropertyValue>();
folder08Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 8"));
HashMap<QName, String> folder08Content = new HashMap<QName, String>();
NodeRef folder08NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder08QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 8");
ChildAssociationRef folder08CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder07NodeRef,
folder08QName, folder08NodeRef, true, 0);
addNode(core,
dataModel,
1,
11,
1,
ContentModel.TYPE_FOLDER,
null,
folder08Properties,
null,
"ian",
new ChildAssociationRef[] { folder08CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + folder08QName.toString() }, folder08NodeRef,
true);
HashMap<QName, PropertyValue> folder09Properties = new HashMap<QName, PropertyValue>();
folder09Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Folder 9'"));
HashMap<QName, String> folder09Content = new HashMap<QName, String>();
NodeRef folder09NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName folder09QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Folder 9'");
ChildAssociationRef folder09CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder08NodeRef,
folder09QName, folder09NodeRef, true, 0);
addNode(core,
dataModel,
1,
12,
1,
ContentModel.TYPE_FOLDER,
null,
folder09Properties,
null,
"jake",
new ChildAssociationRef[] { folder09CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef, folder08NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + folder08QName.toString() + "/"
+ folder09QName.toString() }, folder09NodeRef, true);
// content
HashMap<QName, PropertyValue> content00Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc00 = new MLTextPropertyValue();
desc00.addValue(Locale.ENGLISH, "Alfresco tutorial");
desc00.addValue(Locale.US, "Alfresco tutorial");
content00Properties.put(ContentModel.PROP_DESCRIPTION, desc00);
content00Properties.put(ContentModel.PROP_TITLE, desc00);
content00Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content00Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("Alfresco Tutorial"));
content00Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content00Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
content00Properties.put(ContentModel.PROP_VERSION_LABEL, new StringPropertyValue("1.0"));
content00Properties.put(ContentModel.PROP_OWNER, new StringPropertyValue("andy"));
Date date00 = new Date();
content00Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date00)));
content00Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date00)));
HashMap<QName, String> content00Content = new HashMap<QName, String>();
content00Content
.put(ContentModel.PROP_CONTENT,
"The quick brown fox jumped over the lazy dog and ate the Alfresco Tutorial, in pdf format, along with the following stop words; a an and are"
+ " as at be but by for if in into is it no not of on or such that the their then there these they this to was will with: "
+ " and random charcters \u00E0\u00EA\u00EE\u00F0\u00F1\u00F6\u00FB\u00FF score");
NodeRef content00NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content00QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "Alfresco Tutorial");
ChildAssociationRef content00CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder00NodeRef,
content00QName, content00NodeRef, true, 0);
addNode(core, dataModel, 1, 13, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_OWNABLE,
ContentModel.ASPECT_TITLED }, content00Properties, content00Content, "andy",
new ChildAssociationRef[] { content00CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef,
folder00NodeRef }, new String[] { "/" + baseFolderQName.toString() + "/"
+ folder00QName.toString() + "/" + content00QName.toString() }, content00NodeRef,
true);
HashMap<QName, PropertyValue> content01Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc01 = new MLTextPropertyValue();
desc01.addValue(Locale.ENGLISH, "One");
desc01.addValue(Locale.US, "One");
content01Properties.put(ContentModel.PROP_DESCRIPTION, desc01);
content01Properties.put(ContentModel.PROP_TITLE, desc01);
content01Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content01Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("AA%"));
content01Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content01Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date01 = new Date(date00.getTime() + 1000);
content01Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date01)));
content01Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date01)));
HashMap<QName, String> content01Content = new HashMap<QName, String>();
content01Content.put(ContentModel.PROP_CONTENT, "One Zebra Apple score score score score score score score score score score score");
NodeRef content01NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content01QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "AA%");
ChildAssociationRef content01CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder01NodeRef,
content01QName, content01NodeRef, true, 0);
addNode(core, dataModel, 1, 14, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_TITLED },
content01Properties, content01Content, "cmis", new ChildAssociationRef[] { content01CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder01NodeRef }, new String[] { "/"
+ baseFolderQName.toString() + "/" + folder01QName.toString() + "/"
+ content01QName.toString() }, content01NodeRef, true);
HashMap<QName, PropertyValue> content02Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc02 = new MLTextPropertyValue();
desc02.addValue(Locale.ENGLISH, "Two");
desc02.addValue(Locale.US, "Two");
content02Properties.put(ContentModel.PROP_DESCRIPTION, desc02);
content02Properties.put(ContentModel.PROP_TITLE, desc02);
content02Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content02Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("BB_"));
content02Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content02Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date02 = new Date(date01.getTime() + 1000);
content02Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date02)));
content02Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date02)));
HashMap<QName, String> content02Content = new HashMap<QName, String>();
content02Content.put(ContentModel.PROP_CONTENT, "Two Zebra Banana score score score score score score score score score score pad");
NodeRef content02NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content02QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "BB_");
ChildAssociationRef content02CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder02NodeRef,
content02QName, content02NodeRef, true, 0);
addNode(core, dataModel, 1, 15, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_TITLED },
content02Properties, content02Content, "cmis", new ChildAssociationRef[] { content02CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder02NodeRef }, new String[] { "/"
+ baseFolderQName.toString() + "/" + folder02QName.toString() + "/"
+ content02QName.toString() }, content02NodeRef, true);
HashMap<QName, PropertyValue> content03Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc03 = new MLTextPropertyValue();
desc03.addValue(Locale.ENGLISH, "Three");
desc03.addValue(Locale.US, "Three");
content03Properties.put(ContentModel.PROP_DESCRIPTION, desc03);
content03Properties.put(ContentModel.PROP_TITLE, desc03);
content03Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content03Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("CC\\"));
content03Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content03Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date03 = new Date(date02.getTime() + 1000);
content03Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date03)));
content03Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date03)));
HashMap<QName, String> content03Content = new HashMap<QName, String>();
content03Content.put(ContentModel.PROP_CONTENT, "Three Zebra Clementine score score score score score score score score score pad pad");
NodeRef content03NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content03QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "CC\\");
ChildAssociationRef content03CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder03NodeRef,
content03QName, content03NodeRef, true, 0);
addNode(core, dataModel, 1, 16, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_TITLED },
content03Properties, content03Content, "cmis", new ChildAssociationRef[] { content03CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder03NodeRef }, new String[] { "/"
+ baseFolderQName.toString() + "/" + folder03QName.toString() + "/"
+ content03QName.toString() }, content03NodeRef, true);
HashMap<QName, PropertyValue> content04Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc04 = new MLTextPropertyValue();
desc04.addValue(Locale.ENGLISH, "Four");
desc04.addValue(Locale.US, "Four");
content04Properties.put(ContentModel.PROP_DESCRIPTION, desc04);
content04Properties.put(ContentModel.PROP_TITLE, desc04);
content04Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content04Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("DD\'"));
content04Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content04Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date04 = new Date(date03.getTime() + 1000);
content04Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date04)));
content04Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date04)));
HashMap<QName, String> content04Content = new HashMap<QName, String>();
content04Content.put(ContentModel.PROP_CONTENT, "Four zebra durian score score score score score score score score pad pad pad");
NodeRef content04NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content04QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "DD\'");
ChildAssociationRef content04CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder04NodeRef,
content04QName, content04NodeRef, true, 0);
addNode(core, dataModel, 1, 17, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_TITLED },
content04Properties, content04Content, null, new ChildAssociationRef[] { content04CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder04NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder04QName.toString() + "/" + content04QName.toString() }, content04NodeRef,
true);
HashMap<QName, PropertyValue> content05Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc05 = new MLTextPropertyValue();
desc05.addValue(Locale.ENGLISH, "Five");
desc05.addValue(Locale.US, "Five");
content05Properties.put(ContentModel.PROP_DESCRIPTION, desc05);
content05Properties.put(ContentModel.PROP_TITLE, desc05);
content05Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content05Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("EE.aa"));
content05Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content05Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date05 = new Date(date04.getTime() + 1000);
content05Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date05)));
content05Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date05)));
content05Properties.put(
ContentModel.PROP_EXPIRY_DATE,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class,
DefaultTypeConverter.INSTANCE.convert(Date.class, "2012-12-12T12:12:12.012Z"))));
content05Properties.put(ContentModel.PROP_LOCK_OWNER, new StringPropertyValue("andy"));
content05Properties.put(ContentModel.PROP_LOCK_TYPE, new StringPropertyValue("WRITE_LOCK"));
HashMap<QName, String> content05Content = new HashMap<QName, String>();
content05Content.put(ContentModel.PROP_CONTENT, "Five zebra Ebury score score score score score score score pad pad pad pad");
NodeRef content05NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content05QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "EE.aa");
ChildAssociationRef content05CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder05NodeRef,
content05QName, content05NodeRef, true, 0);
addNode(core, dataModel, 1, 18, 1, ContentModel.TYPE_CONTENT, new QName[] { ContentModel.ASPECT_TITLED,
ContentModel.ASPECT_LOCKABLE }, content05Properties, content05Content, null,
new ChildAssociationRef[] { content05CAR }, new NodeRef[] { baseFolderNodeRef, rootNodeRef,
folder00NodeRef, folder05NodeRef }, new String[] { "/" + baseFolderQName.toString()
+ "/" + folder00QName.toString() + "/" + content05QName.toString() },
content05NodeRef, true);
HashMap<QName, PropertyValue> content06Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc06 = new MLTextPropertyValue();
desc06.addValue(Locale.ENGLISH, "Six");
desc06.addValue(Locale.US, "Six");
content06Properties.put(ContentModel.PROP_DESCRIPTION, desc06);
content06Properties.put(ContentModel.PROP_TITLE, desc06);
content06Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content06Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("FF.EE"));
content06Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content06Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date06 = new Date(date05.getTime() + 1000);
content06Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date06)));
content06Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date06)));
HashMap<QName, String> content06Content = new HashMap<QName, String>();
content06Content.put(ContentModel.PROP_CONTENT, "Six zebra fig score score score score score score pad pad pad pad pad");
NodeRef content06NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content06QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "FF.EE");
ChildAssociationRef content06CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder06NodeRef,
content06QName, content06NodeRef, true, 0);
addNode(core,
dataModel,
1,
19,
1,
ContentModel.TYPE_CONTENT,
new QName[] { ContentModel.ASPECT_TITLED },
content06Properties,
content06Content,
null,
new ChildAssociationRef[] { content06CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ content06QName.toString() }, content06NodeRef, true);
HashMap<QName, PropertyValue> content07Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc07 = new MLTextPropertyValue();
desc07.addValue(Locale.ENGLISH, "Seven");
desc07.addValue(Locale.US, "Seven");
content07Properties.put(ContentModel.PROP_DESCRIPTION, desc07);
content07Properties.put(ContentModel.PROP_TITLE, desc07);
content07Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content07Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("GG*GG"));
content07Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content07Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date07 = new Date(date06.getTime() + 1000);
content07Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date07)));
content07Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date07)));
HashMap<QName, String> content07Content = new HashMap<QName, String>();
content07Content.put(ContentModel.PROP_CONTENT, "Seven zebra grapefruit score score score score score pad pad pad pad pad pad");
NodeRef content07NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content07QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "GG*GG");
ChildAssociationRef content07CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder07NodeRef,
content07QName, content07NodeRef, true, 0);
addNode(core,
dataModel,
1,
20,
1,
ContentModel.TYPE_CONTENT,
new QName[] { ContentModel.ASPECT_TITLED },
content07Properties,
content07Content,
null,
new ChildAssociationRef[] { content07CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + content07QName.toString() }, content07NodeRef,
true);
HashMap<QName, PropertyValue> content08Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc08 = new MLTextPropertyValue();
desc08.addValue(Locale.ENGLISH, "Eight");
desc08.addValue(Locale.US, "Eight");
content08Properties.put(ContentModel.PROP_DESCRIPTION, desc08);
content08Properties.put(ContentModel.PROP_TITLE, desc08);
content08Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-8",
"text/plain", null));
content08Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("HH?HH"));
content08Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content08Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date08 = new Date(date07.getTime() + 1000);
content08Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date08)));
content08Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date08)));
HashMap<QName, String> content08Content = new HashMap<QName, String>();
content08Content.put(ContentModel.PROP_CONTENT, "Eight zebra jackfruit score score score score pad pad pad pad pad pad pad");
NodeRef content08NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content08QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "HH?HH");
ChildAssociationRef content08CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder08NodeRef,
content08QName, content08NodeRef, true, 0);
addNode(core,
dataModel,
1,
21,
1,
ContentModel.TYPE_CONTENT,
new QName[] { ContentModel.ASPECT_TITLED },
content08Properties,
content08Content,
null,
new ChildAssociationRef[] { content08CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef, folder08NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + folder08QName.toString() + "/"
+ content08QName.toString() }, content08NodeRef, true);
HashMap<QName, PropertyValue> content09Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc09 = new MLTextPropertyValue();
desc09.addValue(Locale.ENGLISH, "Nine");
desc09.addValue(Locale.US, "Nine");
content09Properties.put(ContentModel.PROP_DESCRIPTION, desc09);
content09Properties.put(ContentModel.PROP_TITLE, desc09);
content09Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-9",
"text/plain", null));
content09Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("aa"));
content09Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content09Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date09 = new Date(date08.getTime() + 1000);
content09Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date09)));
content09Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date09)));
content09Properties.put(ContentModel.PROP_VERSION_LABEL, new StringPropertyValue("label"));
HashMap<QName, String> content09Content = new HashMap<QName, String>();
content09Content.put(ContentModel.PROP_CONTENT, "Nine zebra kiwi score score score pad pad pad pad pad pad pad pad");
NodeRef content09NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content09QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "aa");
ChildAssociationRef content09CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder09NodeRef,
content09QName, content09NodeRef, true, 0);
addNode(core,
dataModel,
1,
22,
1,
ContentModel.TYPE_CONTENT,
new QName[] { ContentModel.ASPECT_TITLED },
content09Properties,
content09Content,
null,
new ChildAssociationRef[] { content09CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef, folder08NodeRef, folder09NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + folder08QName.toString() + "/"
+ folder09QName.toString() + "/" + content09QName.toString() }, content09NodeRef,
true);
HashMap<QName, PropertyValue> content10Properties = new HashMap<QName, PropertyValue>();
MLTextPropertyValue desc10 = new MLTextPropertyValue();
desc10.addValue(Locale.ENGLISH, "Ten");
desc10.addValue(Locale.US, "Ten");
content10Properties.put(ContentModel.PROP_DESCRIPTION, desc10);
content10Properties.put(ContentModel.PROP_TITLE, desc10);
content10Properties.put(ContentModel.PROP_CONTENT, new ContentPropertyValue(Locale.UK, 0l, "UTF-9",
"text/plain", null));
content10Properties.put(ContentModel.PROP_NAME, new StringPropertyValue("aa-thumb"));
content10Properties.put(ContentModel.PROP_CREATOR, new StringPropertyValue("System"));
content10Properties.put(ContentModel.PROP_MODIFIER, new StringPropertyValue("System"));
Date date10 = new Date(date09.getTime() + 1000);
content10Properties.put(ContentModel.PROP_CREATED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date10)));
content10Properties.put(ContentModel.PROP_MODIFIED,
new StringPropertyValue(DefaultTypeConverter.INSTANCE.convert(String.class, date10)));
content10Properties.put(ContentModel.PROP_VERSION_LABEL, new StringPropertyValue("label"));
HashMap<QName, String> content10Content = new HashMap<QName, String>();
content10Content.put(ContentModel.PROP_CONTENT, "Ten zebra kiwi thumb score pad pad pad pad pad pad pad pad pad");
NodeRef content10NodeRef = new NodeRef(new StoreRef("workspace", "SpacesStore"), createGUID());
QName content10QName = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "aa-thumb");
ChildAssociationRef content10CAR = new ChildAssociationRef(ContentModel.ASSOC_CONTAINS, folder09NodeRef,
content10QName, content10NodeRef, true, 0);
addNode(core,
dataModel,
1,
23,
1,
ContentModel.TYPE_DICTIONARY_MODEL,
new QName[] { ContentModel.ASPECT_TITLED },
content10Properties,
content10Content,
null,
new ChildAssociationRef[] { content10CAR },
new NodeRef[] { baseFolderNodeRef, rootNodeRef, folder00NodeRef, folder05NodeRef,
folder06NodeRef, folder07NodeRef, folder08NodeRef, folder09NodeRef },
new String[] { "/" + baseFolderQName.toString() + "/" + folder00QName.toString() + "/"
+ folder05QName.toString() + "/" + folder06QName.toString() + "/"
+ folder07QName.toString() + "/" + folder08QName.toString() + "/"
+ folder09QName.toString() + "/" + content10QName.toString() }, content10NodeRef,
true);
}
}

View File

@@ -17,48 +17,19 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.solr.query;
package org.alfresco.solr.query.cmis;
import org.alfresco.model.ContentModel;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.namespace.QName;
import org.alfresco.solr.AlfrescoSolrDataModel;
import org.alfresco.solr.AlfrescoSolrTestCaseJ4;
import org.alfresco.solr.SolrInformationServer;
import org.alfresco.util.SearchLanguageConversion;
import org.apache.lucene.util.LuceneTestCase;
import org.alfresco.repo.search.adaptor.lucene.QueryConstants;
import org.alfresco.solr.AbstractAlfrescoSolrTests;
import org.apache.lucene.util.LuceneTestCase;
import org.apache.solr.SolrTestCaseJ4;
import org.apache.solr.common.params.ModifiableSolrParams;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.Locale;
@LuceneTestCase.SuppressCodecs({"Appending","Lucene3x","Lucene40","Lucene41","Lucene42","Lucene43", "Lucene44", "Lucene45","Lucene46","Lucene47","Lucene48","Lucene49"})
@SolrTestCaseJ4.SuppressSSL
public class AlfrescoCMISQParserPluginTest extends AlfrescoSolrTestCaseJ4 implements QueryConstants {
@BeforeClass
public static void beforeClass() throws Exception {
initAlfrescoCore("solrconfig-afts.xml", "schema-afts.xml");
Thread.sleep(30000);
loadCMISTestSet();
}
@Override
@Before
public void setUp() throws Exception {
// if you override setUp or tearDown, you better callf
// the super classes version
super.setUp();
//clearIndex();
//assertU(commit());
}
public class TestAlfrescoCMISQParserPlugin extends AbstractAlfrescoSolrTests implements QueryConstants
{
@Test
public void dataChecks() throws Exception {