final String testFilePath = xpath.evaluate("./@FilePath", testCase);
final String queryFileName = xpath.evaluate("./*[local-name()='query']/@name", testCase);
File queryFile = new File(xqtsQueryPath, testFilePath + queryFileName + ".xq");
final URI baseUri = new File(xqtsQueryPath, testFilePath).toURI();
XQueryModule xqmod = new XQueryModule();
{// ((//*:test-group)//*:test-case)/*:module
NodeList moduleNodes = (NodeList) xpath.evaluate("./*[local-name()='module']", testCase, XPathConstants.NODESET);
final int modcount = moduleNodes.getLength();
if(modcount > 0) {
ModuleManager moduleManager = statEnv.getModuleManager();
SimpleModuleResolver modResolver = new SimpleModuleResolver();
moduleManager.setModuleResolver(modResolver);
for(int j = 0; j < modcount; j++) {
Node moduleNode = moduleNodes.item(j);
String moduleId = moduleNode.getTextContent();
String moduleFileStr = xpath.evaluate("/*[local-name()='test-suite']/*[local-name()='sources']/*[local-name()='module']/@FileName[../@ID='"
+ moduleId + "']", catalog);
File moduleFile = new File(xqtsDir, moduleFileStr + ".xq");
String physical = moduleFile.toURI().toString();
String logical = xpath.evaluate("./@namespace", moduleNode);
modResolver.addMappingRule(logical, physical);
}
}
}
{// ((//*:test-group)//*:test-case)/*:input-file
NodeList vars1 = (NodeList) xpath.evaluate("./*[local-name()='input-file']/@variable", testCase, XPathConstants.NODESET);
loadVariables(vars1, testCase, xqmod, statEnv, xpath, catalog, false);
}
{ // ((//*:test-group)//*:test-case)/*:input-URI
NodeList vars2 = (NodeList) xpath.evaluate("./*[local-name()='input-URI']/@variable", testCase, XPathConstants.NODESET);
loadVariables(vars2, testCase, xqmod, statEnv, xpath, catalog, true);
}
{// ((//*:test-group)//*:test-case)/*:defaultCollection
String colId = xpath.evaluate("./*[local-name()='defaultCollection']/text()", testCase);
if(colId != null) {
NodeList list = (NodeList) xpath.evaluate("/*[local-name()='test-suite']/*[local-name()='sources']/*[local-name()='collection'][@ID='"
+ colId + "']/*[local-name()='input-document']/text()", catalog, XPathConstants.NODESET);
final int listlen = list.getLength();
if(listlen > 0) {
final Map<String, DTMDocument> defaultCollectionMap = new HashMap<String, DTMDocument>(listlen);
for(int j = 0; j < listlen; j++) {
String name = list.item(j).getTextContent();
String docName = name + ".xml";
DTMDocument testDataDoc = _docCache.get(name);
if(testDataDoc == null) {
File testDataFile = new File(xqtsDir, docName);
DocumentTableModel dtm = new DocumentTableModel(false);
dtm.loadDocument(new FileInputStream(testDataFile));
testDataDoc = dtm.documentNode();
_docCache.put(name, testDataDoc);
}
defaultCollectionMap.put(docName, testDataDoc);
// import namespace decl
Map<String, String> nsmap = testDataDoc.documentTable().getDeclaredNamespaces();
NamespaceBinder nsResolver = statEnv.getStaticalyKnownNamespaces();
nsResolver.declarePrefixs(nsmap);
}
statEnv.setDefaultCollection(defaultCollectionMap);
}
}
}
Sequence<? extends Item> contextItem = null;
{// ((//*:test-group)//*:test-case)/*:contextItem
String contextItemRef = xpath.evaluate("./*[local-name()='contextItem']/text()", testCase);
if(contextItemRef != null && contextItemRef.length() > 0) {
String contextItemFileRef = xpath.evaluate("/*[local-name()='test-suite']/*[local-name()='sources']/*[local-name()='source']/@FileName[../@ID='"
+ contextItemRef + "']", catalog);
DTMDocument contextItemDoc = _docCache.get(contextItemRef);
if(contextItemDoc == null) {
File contextItemFile = new File(xqtsDir, contextItemFileRef);
DocumentTableModel dtm = new DocumentTableModel(false);
dtm.loadDocument(new FileInputStream(contextItemFile));
contextItemDoc = dtm.documentNode();
_docCache.put(contextItemRef, contextItemDoc);
}
contextItem = contextItemDoc;
}
}
{// ((//*:test-group)//*:test-case)/*:input-query
String inputVarName = xpath.evaluate("./*[local-name()='input-query']/@variable", testCase);
if(inputVarName != null && inputVarName.length() > 0) {
String dateData = xpath.evaluate("./*[local-name()='input-query']/@date", testCase);
assert (dateData != null) : dateData;
QualifiedName varName = QNameTable.instantiate(XMLConstants.DEFAULT_NS_PREFIX, inputVarName);
Variable var = new Variable.GlobalVariable(varName, null);
var.setResult(new DateTimeValue(dateData, DateType.DATE));
xqmod.putVariable(varName, var);
}
}
// -----------------------------------------------------------
// #1 execute
final String resString;
{
final String query = IOUtils.toString(new FileInputStream(queryFile), "UTF-8");
if(doPrint) {
println("Query: ");
println(query);
}
final NodeList expectedErrors = (NodeList) xpath.evaluate("./*[local-name()='expected-error']", testCase, XPathConstants.NODESET);
{
XQueryProcessor proc = new XQueryProcessor(xqmod);
proc.setStaticContext(statEnv);
if(contextItem != null) {
proc.setContextItem(contextItem);
}
final StringWriter res_sw = new StringWriter();
try {
XQueryModule mod = proc.parse(query, baseUri);
Sequence result = proc.execute(mod);
SAXWriter saxwriter = new SAXWriter(res_sw, SAXWriter.DEFAULT_ENCODING);
saxwriter.setXMLDeclaration(false);
Serializer ser = new SAXSerializer(saxwriter, res_sw);
ser.emit(result);