|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** All rights reserved. |
|
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 ** |
|
7 ** This file is part of the test suite of the Qt Toolkit. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
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 |