1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/****************************************************************************
**
** 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$
**
****************************************************************************/
#include <QColor>
#include <QFile>
#include <QFileInfo>
#include <QVariant>
#include <QtDebug>
#include "XQTSTestCase.h"
using namespace QPatternistSDK;
using namespace QPatternist;
XQTSTestCase::XQTSTestCase(const Scenario scen,
TreeItem *p,
const QXmlQuery::QueryLanguage lang) : m_isXPath(false)
, m_scenario(scen)
, m_parent(p)
, m_lang(lang)
{
}
XQTSTestCase::~XQTSTestCase()
{
qDeleteAll(m_baseLines);
}
QVariant XQTSTestCase::data(const Qt::ItemDataRole role, int column) const
{
if(role == Qt::DisplayRole)
{
if(column == 0)
return title();
const TestResult *const tr = testResult();
if(!tr)
{
if(column == 1)
return TestResult::displayName(TestResult::NotTested);
else
return QString();
}
const TestResult::Status status = tr->status();
switch(column)
{
case 1:
return status == TestResult::Pass ? QString(QChar::fromLatin1('1'))
: QString(QChar::fromLatin1('0'));
case 2:
return status == TestResult::Fail ? QString(QChar::fromLatin1('1'))
: QString(QChar::fromLatin1('0'));
default:
return QString();
}
}
if(role != Qt::BackgroundRole)
return QVariant();
const TestResult *const tr = testResult();
if(!tr)
{
if(column == 0)
return QColor(Qt::yellow);
else
return QVariant();
}
const TestResult::Status status = tr->status();
if(status == TestResult::NotTested || status == TestResult::Unknown)
return QColor(Qt::yellow);
switch(column)
{
case 1:
return status == TestResult::Pass ? QColor(Qt::green) : QVariant();
case 2:
return status == TestResult::Fail ? QColor(Qt::red) : QVariant();
default:
return QVariant();
}
}
QString XQTSTestCase::sourceCode(bool &ok) const
{
QFile file(m_queryPath.toLocalFile());
QString err;
if(!file.exists())
err = QString::fromLatin1("Error: %1 does not exist.").arg(file.fileName());
else if(!QFileInfo(file.fileName()).isFile())
err = QString::fromLatin1("Error: %1 is not a file, cannot display it.").arg(file.fileName());
else if(!file.open(QIODevice::ReadOnly))
err = QString::fromLatin1("Error: Could not open %1. Likely a permission error.")
.arg(file.fileName());
if(err.isNull()) /* No errors. */
{
ok = true;
/* Scary, we assume the query is stored in UTF-8. */
return QString::fromUtf8(file.readAll());
}
else
{
ok = false;
return err;
}
}
int XQTSTestCase::columnCount() const
{
return 2;
}
void XQTSTestCase::addBaseLine(TestBaseLine *line)
{
m_baseLines.append(line);
}
QString XQTSTestCase::name() const
{
return m_name;
}
QString XQTSTestCase::creator() const
{
return m_creator;
}
QString XQTSTestCase::description() const
{
return m_description;
}
QDate XQTSTestCase::lastModified() const
{
return m_lastModified;
}
bool XQTSTestCase::isXPath() const
{
return m_isXPath;
}
TestCase::Scenario XQTSTestCase::scenario() const
{
return m_scenario;
}
void XQTSTestCase::setName(const QString &n)
{
m_name = n;
}
void XQTSTestCase::setCreator(const QString &ctor)
{
m_creator = ctor;
}
void XQTSTestCase::setDescription(const QString &descriptionP)
{
m_description = descriptionP;
}
void XQTSTestCase::setLastModified(const QDate &date)
{
m_lastModified = date;
}
void XQTSTestCase::setIsXPath(const bool isXPathP)
{
m_isXPath = isXPathP;
}
void XQTSTestCase::setQueryPath(const QUrl &uri)
{
m_queryPath = uri;
}
TreeItem *XQTSTestCase::parent() const
{
return m_parent;
}
QString XQTSTestCase::title() const
{
return m_name;
}
TestBaseLine::List XQTSTestCase::baseLines() const
{
Q_ASSERT_X(!m_baseLines.isEmpty(), Q_FUNC_INFO,
qPrintable(QString::fromLatin1("The test %1 has no base lines, it should have at least one.").arg(name())));
return m_baseLines;
}
QUrl XQTSTestCase::testCasePath() const
{
return m_queryPath;
}
void XQTSTestCase::setExternalVariableLoader(const QPatternist::ExternalVariableLoader::Ptr &loader)
{
m_externalVariableLoader = loader;
}
QPatternist::ExternalVariableLoader::Ptr XQTSTestCase::externalVariableLoader() const
{
return m_externalVariableLoader;
}
void XQTSTestCase::setContextItemSource(const QUrl &uri)
{
m_contextItemSource = uri;
}
QUrl XQTSTestCase::contextItemSource() const
{
return m_contextItemSource;
}
QXmlQuery::QueryLanguage XQTSTestCase::language() const
{
return m_lang;
}
void XQTSTestCase::setParent(TreeItem *const p)
{
m_parent = p;
}
void XQTSTestCase::setInitialTemplateName(const QXmlName &name)
{
m_initialTemplateName = name;
}
QXmlName XQTSTestCase::initialTemplateName() const
{
return m_initialTemplateName;
}
// vim: et:ts=4:sw=4:sts=4
|