summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/tst_settings.qml
diff options
context:
space:
mode:
authorAdam Kallai <kadam@inf.u-szeged.hu>2016-04-11 17:20:19 +0200
committerAdam Kallai <kadam@inf.u-szeged.hu>2016-04-20 15:02:35 +0000
commit653bf0fa7081505273da5296b8dee8dfb594005c (patch)
tree091d61d0d7576ca60ccb0dff1f83e89447db79d4 /tests/auto/quick/qmltests/data/tst_settings.qml
parentbe2ea540ce3d57c0c55da89c154483983317ddbc (diff)
Add tst_settings.qml QML test case
- Add test for localStorageEnabled setting. - Add test for javascriptEnabled setting. Change-Id: I7a67c24bdf76409148e88500d9a7a092f7896493 Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu> Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'tests/auto/quick/qmltests/data/tst_settings.qml')
-rw-r--r--tests/auto/quick/qmltests/data/tst_settings.qml120
1 files changed, 120 insertions, 0 deletions
diff --git a/tests/auto/quick/qmltests/data/tst_settings.qml b/tests/auto/quick/qmltests/data/tst_settings.qml
new file mode 100644
index 000000000..aa3a6dc60
--- /dev/null
+++ b/tests/auto/quick/qmltests/data/tst_settings.qml
@@ -0,0 +1,120 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the QtWebEngine module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** As a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+import QtTest 1.0
+import QtWebEngine 1.2
+
+TestWebEngineView {
+ id: webEngineView
+ width: 400
+ height: 300
+
+ TestCase {
+ name: "WebEngineViewSettings"
+
+ function test_javascriptEnabled() {
+ webEngineView.settings.javascriptEnabled = true;
+
+ webEngineView.url = Qt.resolvedUrl("javascript.html");
+ verify(webEngineView.waitForLoadSucceeded());
+ compare(webEngineView.title, "New Title");
+ }
+
+ function test_javascriptDisabled() {
+ webEngineView.settings.javascriptEnabled = false;
+
+ webEngineView.url = Qt.resolvedUrl("javascript.html");
+ verify(webEngineView.waitForLoadSucceeded());
+ compare(webEngineView.title, "Original Title");
+ }
+
+ function test_localStorageDisabled() {
+ webEngineView.settings.javascriptEnabled = true;
+ webEngineView.settings.localStorageEnabled = false;
+
+ webEngineView.url = Qt.resolvedUrl("localStorage.html");
+ verify(webEngineView.waitForLoadSucceeded());
+ compare(webEngineView.title, "Original Title");
+ }
+
+ function test_localStorageEnabled() {
+ webEngineView.settings.localStorageEnabled = true;
+ webEngineView.settings.javascriptEnabled = true;
+
+ webEngineView.url = Qt.resolvedUrl("localStorage.html");
+ verify(webEngineView.waitForLoadSucceeded());
+ webEngineView.reload();
+ verify(webEngineView.waitForLoadSucceeded());
+ compare(webEngineView.title, "New Title");
+ }
+
+ function test_settingsAffectCurrentViewOnly() {
+ var webEngineView2 = Qt.createQmlObject('TestWebEngineView {width: 400; height: 300;}', webEngineView);
+
+ webEngineView.settings.javascriptEnabled = true;
+ webEngineView2.settings.javascriptEnabled = true;
+
+ var testUrl = Qt.resolvedUrl("javascript.html");
+
+ webEngineView.url = testUrl;
+ verify(webEngineView.waitForLoadSucceeded());
+ webEngineView2.url = testUrl;
+ verify(webEngineView2.waitForLoadSucceeded());
+
+ compare(webEngineView.title, "New Title");
+ compare(webEngineView2.title, "New Title");
+
+ webEngineView.settings.javascriptEnabled = false;
+
+ webEngineView.url = testUrl;
+ verify(webEngineView.waitForLoadSucceeded());
+ webEngineView2.url = testUrl;
+ verify(webEngineView2.waitForLoadSucceeded());
+
+ compare(webEngineView.title, "Original Title");
+ compare(webEngineView2.title, "New Title");
+
+ webEngineView2.destroy();
+ }
+ }
+}
+