tizen beta release
[profile/ivi/webkit-efl.git] / Tools / WebKitTestRunner / InjectedBundle / qt / LayoutTestControllerQt.cpp
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  * Copyright (C) 2010 University of Szeged. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24  * THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "config.h"
28 #include "LayoutTestController.h"
29
30 #include "ActivateFonts.h"
31 #include "InjectedBundle.h"
32 #include <QDir>
33 #include <QFontDatabase>
34 #include <QObject>
35 #include <qwebsettings.h>
36
37 namespace WTR {
38
39 class WatchdogTimerHelper : public QObject {
40     Q_OBJECT
41
42 public:
43     static WatchdogTimerHelper* instance()
44     {
45         static WatchdogTimerHelper* theInstance = new WatchdogTimerHelper;
46         return theInstance;
47     }
48
49 public slots:
50     void timerFired()
51     {
52         InjectedBundle::shared().layoutTestController()->waitToDumpWatchdogTimerFired();
53     }
54
55 private:
56     WatchdogTimerHelper() {}
57 };
58
59 void LayoutTestController::platformInitialize()
60 {
61     // Make WebKit2 mimic the behaviour of DumpRenderTree, which is incorrect,
62     // but tests are successfully passed. On the long run, Qt will move to QRawFont,
63     // which makes the use of QFontDatabase unnecessary.
64     // See https://bugs.webkit.org/show_bug.cgi?id=53427
65     QWebSettings::clearMemoryCaches();
66 #if !(QT_VERSION <= QT_VERSION_CHECK(4, 6, 2))
67     QFontDatabase::removeAllApplicationFonts();
68 #endif
69     activateFonts();
70     QObject::connect(&m_waitToDumpWatchdogTimer, SIGNAL(timeout()), WatchdogTimerHelper::instance(), SLOT(timerFired()));
71 }
72
73 void LayoutTestController::invalidateWaitToDumpWatchdogTimer()
74 {
75     m_waitToDumpWatchdogTimer.stop();
76 }
77
78 void LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded()
79 {
80     if (m_waitToDumpWatchdogTimer.isActive())
81         return;
82
83     m_waitToDumpWatchdogTimer.start(waitToDumpWatchdogTimerInterval * 1000);
84 }
85
86 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url)
87 {
88     QString path = QDir::toNativeSeparators(QString(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url)));
89     return JSStringCreateWithCharacters(reinterpret_cast<const JSChar*>(path.constData()), path.length());
90 }
91
92 JSRetainPtr<JSStringRef> LayoutTestController::platformName()
93 {
94     JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("qt"));
95     return platformName;
96 }
97
98 } // namespace WTR
99
100 #include "LayoutTestControllerQt.moc"