/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef PatternistSDK_XQTSTestCase_H #define PatternistSDK_XQTSTestCase_H #include #include #include #include #include "TestBaseLine.h" #include "TestCase.h" QT_BEGIN_NAMESPACE namespace QPatternistSDK { /** * @short Represents a test case in a test suite in the XML Query Test Suite. * * TestCase is a memory representation of a test case, and maps * to the @c test-case element in the XQuery Test Suite test * case catalog. * * @ingroup PatternistSDK * @author Frans Englich */ class XQTSTestCase : public TestCase { public: XQTSTestCase(const Scenario scen, TreeItem *parent, const QXmlQuery::QueryLanguage lang = QXmlQuery::XQuery10); virtual ~XQTSTestCase(); /** * The identifier, the name of the test. For example, "Literals034". * The name of a test case must be unique. */ virtual QString name() const; virtual QString creator() const; virtual QString description() const; /** * @returns the query inside the file, specified by testCasePath(). Loading * of the file is not cached in order to avoid complications. * @param ok is set to @c false if loading the query file fails */ virtual QString sourceCode(bool &ok) const; virtual QUrl testCasePath() const; virtual QDate lastModified() const; bool isXPath() const; /** * What kind of test case this is, what kind of scenario it takes part * of. For example, whether the test case should evaluate normally or fail. */ Scenario scenario() const; void setCreator(const QString &creator); void setLastModified(const QDate &date); void setDescription(const QString &description); void setIsXPath(const bool isXPath); void setName(const QString &name); void setQueryPath(const QUrl &uri); void setContextItemSource(const QUrl &uri); void addBaseLine(TestBaseLine *lines); void setInitialTemplateName(const QXmlName &name); virtual TreeItem *parent() const; virtual QVariant data(const Qt::ItemDataRole role, int column) const; virtual QString title() const; virtual TestBaseLine::List baseLines() const; virtual int columnCount() const; void setExternalVariableLoader(const QPatternist::ExternalVariableLoader::Ptr &loader); virtual QPatternist::ExternalVariableLoader::Ptr externalVariableLoader() const; virtual QUrl contextItemSource() const; virtual QXmlQuery::QueryLanguage language() const; void setParent(TreeItem *const parent); virtual QXmlName initialTemplateName() const; private: QString m_name; QString m_creator; QString m_description; QUrl m_queryPath; bool m_isXPath; QDate m_lastModified; const Scenario m_scenario; TreeItem * m_parent; TestBaseLine::List m_baseLines; QPatternist::ExternalVariableLoader::Ptr m_externalVariableLoader; QUrl m_contextItemSource; QXmlQuery::QueryLanguage m_lang; QXmlName m_initialTemplateName; }; } QT_END_NAMESPACE #endif // vim: et:ts=4:sw=4:sts=4