Update obsolete contact address.
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternsview / view / UserTestCase.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <QCoreApplication>
43 #include <QDate>
44 #include <QUrl>
45 #include <QVariant>
46 #include <QtDebug>
47
48 #include "TestResult.h"
49
50 #include "UserTestCase.h"
51
52 using namespace QPatternistSDK;
53
54 UserTestCase::UserTestCase() : m_lang(QXmlQuery::XQuery10)
55 {
56 }
57
58 QVariant UserTestCase::data(const Qt::ItemDataRole role, int /*column*/) const
59 {
60     if(role != Qt::DisplayRole)
61         return QVariant();
62
63     return title();
64 }
65
66 QString UserTestCase::creator() const
67 {
68     return QString(QLatin1String("The user of %1."))
69                    .arg(QCoreApplication::instance()->applicationName());
70 }
71
72 QString UserTestCase::name() const
73 {
74     return QString(QLatin1String("X-KDE-%1-UserCreated"))
75                    .arg(QCoreApplication::instance()->applicationName());
76 }
77
78 QString UserTestCase::description() const
79 {
80     return QLatin1String("No description available; the test case is not part of "
81                          "a test suite, but entered manually in the source code window.");
82 }
83
84 QString UserTestCase::title() const
85 {
86     return QLatin1String("User Specified Test");
87 }
88
89 TestCase::Scenario UserTestCase::scenario() const
90 {
91     return Standard;
92 }
93
94 TestBaseLine::List UserTestCase::baseLines() const
95 {
96     TestBaseLine::List retval;
97
98     TestBaseLine *const bl = new TestBaseLine(TestBaseLine::Ignore);
99     retval.append(bl);
100
101     return retval;
102 }
103
104 void UserTestCase::setSourceCode(const QString &code)
105 {
106     m_sourceCode = code;
107 }
108
109 QString UserTestCase::sourceCode(bool &ok) const
110 {
111     ok = true;
112     return m_sourceCode;
113 }
114
115 QDate UserTestCase::lastModified() const
116 {
117     return QDate();
118 }
119
120 bool UserTestCase::isXPath() const
121 {
122     return true;
123 }
124
125 TreeItem *UserTestCase::parent() const
126 {
127     return 0;
128 }
129
130 int UserTestCase::columnCount() const
131 {
132     return 1;
133 }
134
135 QUrl UserTestCase::testCasePath() const
136 {
137     return QUrl::fromLocalFile(QCoreApplication::applicationDirPath());
138 }
139
140 QPatternist::ExternalVariableLoader::Ptr UserTestCase::externalVariableLoader() const
141 {
142     /* We don't have any bindings for the query that the user writes. */
143     return QPatternist::ExternalVariableLoader::Ptr();
144 }
145
146 QUrl UserTestCase::contextItemSource() const
147 {
148     return m_contextSource;
149 }
150
151 void UserTestCase::focusDocumentChanged(const QString &code)
152 {
153     const QUrl focusDoc(code);
154     if(focusDoc.isValid())
155         m_contextSource = focusDoc;
156 }
157
158 // vim: et:ts=4:sw=4:sts=4
159