2020-02-17 21:05:20 +00:00
|
|
|
/*
|
2020-02-17 21:13:50 +00:00
|
|
|
* Copyright (c) 2001-2008
|
2020-02-17 21:05:20 +00:00
|
|
|
* DecisionSoft Limited. All rights reserved.
|
2020-02-17 21:13:50 +00:00
|
|
|
* Copyright (c) 2004-2008
|
2020-02-17 21:05:20 +00:00
|
|
|
* Oracle. All rights reserved.
|
|
|
|
*
|
2020-02-17 21:12:51 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2020-02-17 21:05:20 +00:00
|
|
|
*
|
2020-02-17 21:12:51 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
2020-02-17 21:17:06 +00:00
|
|
|
* $Id: TestSuiteParser.hpp 599 2008-08-15 01:04:35Z jpcs $
|
2020-02-17 21:05:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TESTSUITEPARSERHANDLER_HPP
|
|
|
|
#define _TESTSUITEPARSERHANDLER_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2020-02-17 21:12:51 +00:00
|
|
|
#include <set>
|
2020-02-17 21:05:20 +00:00
|
|
|
|
|
|
|
#include <xercesc/sax2/DefaultHandler.hpp>
|
|
|
|
#include <xercesc/util/XMLURL.hpp>
|
|
|
|
|
|
|
|
#include <xqilla/framework/XQillaExport.hpp>
|
|
|
|
|
|
|
|
class TestSuiteRunner;
|
|
|
|
|
|
|
|
class XQILLA_API TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string name;
|
2020-02-17 21:17:06 +00:00
|
|
|
std::string description;
|
2020-02-17 21:11:31 +00:00
|
|
|
bool updateTest;
|
2020-02-17 21:17:06 +00:00
|
|
|
bool xsltTest;
|
2020-02-17 21:11:31 +00:00
|
|
|
int stateTime;
|
2020-02-17 21:05:20 +00:00
|
|
|
std::string queryURL;
|
|
|
|
std::string query;
|
|
|
|
std::string contextItem;
|
|
|
|
std::string defaultCollection;
|
2020-02-17 21:17:06 +00:00
|
|
|
std::string templateName;
|
2020-02-17 21:05:20 +00:00
|
|
|
std::map<std::string, std::string> inputURIVars;
|
|
|
|
std::map<std::string, std::string> inputVars;
|
|
|
|
std::map<std::string, std::string> extraVars;
|
2020-02-17 21:17:06 +00:00
|
|
|
std::map<std::string, std::string> inputParams;
|
2020-02-17 21:05:20 +00:00
|
|
|
std::map<std::string, std::string> outputFiles;
|
|
|
|
std::list<std::pair<std::string, std::string> > moduleFiles;
|
|
|
|
std::list<std::string> expectedErrors;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XQILLA_API TestSuiteParser : private XERCES_CPP_NAMESPACE_QUALIFIER DefaultHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestSuiteParser(const std::string &pathToTestSuite, TestSuiteRunner *runner);
|
|
|
|
|
|
|
|
void run();
|
|
|
|
|
2020-02-17 21:12:51 +00:00
|
|
|
void handleUnknownElement(const std::string &elementName);
|
|
|
|
|
2020-02-17 21:05:20 +00:00
|
|
|
private:
|
2020-02-17 21:12:51 +00:00
|
|
|
virtual void startElement(const XMLCh* const uri, const XMLCh* const localname, const XMLCh* const qname,
|
|
|
|
const XERCES_CPP_NAMESPACE_QUALIFIER Attributes& attributes);
|
|
|
|
virtual void endElement(const XMLCh* const uri, const XMLCh* const localname, const XMLCh* const qname);
|
|
|
|
virtual void characters(const XMLCh* const chars, const unsigned int length);
|
2020-02-17 21:05:20 +00:00
|
|
|
|
|
|
|
virtual void error(const XERCES_CPP_NAMESPACE_QUALIFIER SAXParseException& exc);
|
|
|
|
virtual void fatalError(const XERCES_CPP_NAMESPACE_QUALIFIER SAXParseException& exc);
|
|
|
|
|
|
|
|
private:
|
2020-02-17 21:12:51 +00:00
|
|
|
TestSuiteRunner *runner_;
|
2020-02-17 21:17:06 +00:00
|
|
|
bool xslt_;
|
|
|
|
std::string xsltGroupName_;
|
2020-02-17 21:12:51 +00:00
|
|
|
|
|
|
|
XERCES_CPP_NAMESPACE_QUALIFIER XMLURL urlXQTSCatalog_, urlXQTSQueriesDirectory_, urlXQTSResultsDirectory_,
|
|
|
|
urlBasePath_, urlBasePathReferenceFiles_, urlQuery_;
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:12:51 +00:00
|
|
|
std::set<std::string> unknownElements_;
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:12:51 +00:00
|
|
|
bool readingChars_;
|
|
|
|
std::string chars_;
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:12:51 +00:00
|
|
|
std::string variableBoundToInput_, compareMethod_, namespace_, collectionID_;
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:12:51 +00:00
|
|
|
TestCase testCase_;
|
2020-02-17 21:05:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|