From 653bf0fa7081505273da5296b8dee8dfb594005c Mon Sep 17 00:00:00 2001 From: Adam Kallai Date: Mon, 11 Apr 2016 17:20:19 +0200 Subject: Add tst_settings.qml QML test case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add test for localStorageEnabled setting. - Add test for javascriptEnabled setting. Change-Id: I7a67c24bdf76409148e88500d9a7a092f7896493 Reviewed-by: Peter Varga Reviewed-by: Michael BrĂ¼ning --- tests/auto/quick/qmltests/data/localStorage.html | 9 ++ tests/auto/quick/qmltests/data/tst_settings.qml | 120 +++++++++++++++++++++++ tests/auto/quick/qmltests/qmltests.pro | 2 + 3 files changed, 131 insertions(+) create mode 100644 tests/auto/quick/qmltests/data/localStorage.html create mode 100644 tests/auto/quick/qmltests/data/tst_settings.qml diff --git a/tests/auto/quick/qmltests/data/localStorage.html b/tests/auto/quick/qmltests/data/localStorage.html new file mode 100644 index 000000000..a4e395f48 --- /dev/null +++ b/tests/auto/quick/qmltests/data/localStorage.html @@ -0,0 +1,9 @@ + +Original Title + + + + 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(); + } + } +} + diff --git a/tests/auto/quick/qmltests/qmltests.pro b/tests/auto/quick/qmltests/qmltests.pro index 57649384d..94525ee78 100644 --- a/tests/auto/quick/qmltests/qmltests.pro +++ b/tests/auto/quick/qmltests/qmltests.pro @@ -21,6 +21,7 @@ OTHER_FILES += \ $$PWD/data/geolocation.html \ $$PWD/data/javascript.html \ $$PWD/data/link.html \ + $$PWD/data/localStorage.html \ $$PWD/data/prompt.html \ $$PWD/data/multifileupload.html \ $$PWD/data/redirect.html \ @@ -54,6 +55,7 @@ OTHER_FILES += \ $$PWD/data/tst_unhandledKeyEventPropagation.qml \ $$PWD/data/tst_userScripts.qml \ $$PWD/data/tst_webchannel.qml \ + $$PWD/data/tst_settings.qml \ $$PWD/data/tst_keyboardModifierMapping.qml \ $$PWD/mock-delegates/QtWebEngine/UIDelegates/AlertDialog.qml \ $$PWD/mock-delegates/QtWebEngine/UIDelegates/ConfirmDialog.qml \ -- cgit v1.2.3