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
|
/*
* Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef DumpRenderTreeQt_h
#define DumpRenderTreeQt_h
#include <QList>
#include <QNetworkAccessManager>
#include <QObject>
#include <QTextStream>
#include <QSocketNotifier>
#ifndef QT_NO_OPENSSL
#include <QSslError>
#endif
#include "DumpRenderTreeSupportQt.h"
#include "TestRunner.h"
#include <qgraphicsview.h>
#include <qgraphicswebview.h>
#include <qwebframe.h>
#include <qwebinspector.h>
#include <qwebpage.h>
#include <qwebview.h>
#include <wtf/RefPtr.h>
QT_BEGIN_NAMESPACE
class QUrl;
class QFile;
QT_END_NAMESPACE
class QWebFrameAdapter;
class QWebPageAdapter;
class TestRunnerQt;
class DumpRenderTreeSupportQt;
class EventSender;
class TextInputController;
class GCController;
class WebPage;
class NetworkAccessManager;
class DumpRenderTree final : public QObject {
Q_OBJECT
public:
DumpRenderTree();
virtual ~DumpRenderTree();
static DumpRenderTree* instance();
// Initialize in single-file mode.
void open(const QUrl& url);
void setTextOutputEnabled(bool enable) { m_enableTextOutput = enable; }
bool isTextOutputEnabled() { return m_enableTextOutput; }
void setGraphicsBased(bool flag) { m_graphicsBased = flag; }
bool isGraphicsBased() { return m_graphicsBased; }
void closeRemainingWindows();
void resetToConsistentStateBeforeTesting(const QUrl&);
TestRunnerQt *testRunner() const { return m_controller; }
TestRunner *jscTestRunner() const { return m_jscController.get(); }
EventSender *eventSender() const { return m_eventSender; }
TextInputController *textInputController() const { return m_textInputController; }
QString persistentStoragePath() const { return m_persistentStoragePath; }
NetworkAccessManager *networkAccessManager() const { return m_networkAccessManager; }
QWebPage *createWindow();
int windowCount() const;
void switchFocus(bool focused);
WebPage *webPage() const { return m_page; }
QWebPageAdapter *pageAdapter() const;
QWebFrameAdapter *mainFrameAdapter() const;
QList<WebPage*> getAllPages() const;
void processArgsLine(const QStringList&);
void setRedirectOutputFileName(const QString& fileName) { m_redirectOutputFileName = fileName; }
void setRedirectErrorFileName(const QString& fileName) { m_redirectErrorFileName = fileName; }
void setTimeout(int);
void setShouldTimeout(bool flag);
void setShouldDumpPixelsForAllTests() { m_dumpPixelsForAllTests = true; }
public Q_SLOTS:
void initJSObjects();
void readLine();
void processLine(const QString&);
void dump();
void titleChanged(const QString &s);
void connectFrame(QWebFrame *frame);
void dumpDatabaseQuota(QWebFrame* frame, const QString& dbName);
void dumpApplicationCacheQuota(QWebSecurityOrigin* origin, quint64 defaultOriginQuota, quint64 totalSpaceNeeded);
void statusBarMessage(const QString& message);
void windowCloseRequested();
Q_SIGNALS:
void quit();
void ready();
private Q_SLOTS:
void showPage();
void hidePage();
void dryRunPrint(QWebFrame*);
void loadNextTestInStandAloneMode();
void geolocationPermissionSet();
private:
void setStandAloneMode(bool flag) { m_standAloneMode = flag; }
bool isStandAloneMode() { return m_standAloneMode; }
QString dumpFramesAsText(QWebFrame* frame);
QString dumpBackForwardList(QWebPage* page);
QString dumpFrameScrollPosition(QWebFrame* frame);
TestRunnerQt *m_controller;
RefPtr<TestRunner> m_jscController;
bool m_dumpPixelsForCurrentTest;
bool m_dumpPixelsForAllTests;
QString m_expectedHash;
QStringList m_standAloneModeTestList;
WebPage *m_page;
QWidget* m_mainView;
EventSender *m_eventSender;
TextInputController *m_textInputController;
QScopedPointer<GCController> m_gcController;
NetworkAccessManager* m_networkAccessManager;
QFile *m_stdin;
QList<QObject*> windows;
bool m_enableTextOutput;
bool m_standAloneMode;
bool m_graphicsBased;
QString m_persistentStoragePath;
QString m_redirectOutputFileName;
QString m_redirectErrorFileName;
};
class NetworkAccessManager final : public QNetworkAccessManager {
Q_OBJECT
public:
NetworkAccessManager(QObject* parent);
private Q_SLOTS:
#ifndef QT_NO_OPENSSL
void sslErrorsEncountered(QNetworkReply*, const QList<QSslError>&);
#endif
};
class WebPage final : public QWebPage {
Q_OBJECT
public:
WebPage(QObject* parent, DumpRenderTree*);
virtual ~WebPage();
QWebInspector* webInspector();
void closeWebInspector();
QWebPage *createWindow(QWebPage::WebWindowType) final;
void javaScriptAlert(QWebFrame*, const QString& message) final;
void javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID) final;
bool javaScriptConfirm(QWebFrame*, const QString& msg) final;
bool javaScriptPrompt(QWebFrame*, const QString& msg, const QString& defaultValue, QString* result) final;
void resetSettings();
bool supportsExtension(QWebPage::Extension) const final;
bool extension(Extension, const ExtensionOption*, ExtensionReturn*) final;
QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&) final;
void permissionSet(QWebPage::Feature feature);
bool shouldInterruptJavaScript() final { return false; }
public Q_SLOTS:
void requestPermission(QWebFrame*, QWebPage::Feature);
void cancelPermission(QWebFrame*, QWebPage::Feature);
void requestFullScreen(QWebFullScreenRequest);
protected:
bool acceptNavigationRequest(QWebFrame*, const QNetworkRequest&, NavigationType) final;
bool isTextOutputEnabled() { return m_drt->isTextOutputEnabled(); }
private Q_SLOTS:
void setViewGeometry(const QRect&);
private:
QWebInspector* m_webInspector;
QList<QWebFrame*> m_pendingGeolocationRequests;
DumpRenderTree *m_drt;
};
class WebViewGraphicsBased final : public QGraphicsView {
Q_OBJECT
public:
WebViewGraphicsBased(QWidget* parent);
QGraphicsWebView* graphicsView() const { return m_item; }
void setPage(QWebPage* page) { m_item->setPage(page); }
private:
QGraphicsWebView* m_item;
};
#endif
|