Change copyrights from Nokia to Digia
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternsview / view / UserTestCase.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
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