File: tst_userScripts.qml

package info (click to toggle)
qtwebkit-opensource-src 5.7.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 291,692 kB
  • ctags: 268,122
  • sloc: cpp: 1,360,420; python: 70,286; ansic: 42,986; perl: 35,476; ruby: 12,236; objc: 9,465; xml: 8,396; asm: 3,873; yacc: 2,397; sh: 1,647; makefile: 650; lex: 644; java: 110
file content (113 lines) | stat: -rw-r--r-- 4,451 bytes parent folder | download | duplicates (10)
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
import QtQuick 2.0
import QtTest 1.0
import QtWebKit 3.0
import QtWebKit.experimental 1.0
import "../common"

Item {
    TestWebView {
        id: webView
        width: 400
        height: 300
    }

    TestWebView {
        id: webViewWithConditionalUserScripts
        width: 400
        height: 300

        onNavigationRequested: {
            var urlString = request.url.toString();
            if (urlString.indexOf("test1.html") !== -1)
                experimental.userScripts = [Qt.resolvedUrl("../common/change-document-title.js")];
            else if (urlString.indexOf("test2.html") !== -1)
                experimental.userScripts = [Qt.resolvedUrl("../common/append-document-title.js")];
            else
                experimental.userScripts = [];
        }
    }

    TestCase {
        name: "WebViewUserScripts"

        function init() {
            webView.url = "";
            webView.experimental.userScripts = [];
        }

        function test_oneScript() {
            webView.url = Qt.resolvedUrl("../common/test1.html");
            webView.waitForLoadSucceeded();
            compare(webView.title, "Test page 1");

            webView.experimental.userScripts = [Qt.resolvedUrl("../common/change-document-title.js")];
            compare(webView.title, "Test page 1");

            webView.reload();
            webView.waitForLoadSucceeded();
            compare(webView.title, "New title");

            webView.url = Qt.resolvedUrl("../common/test2.html");
            webView.waitForLoadSucceeded();
            compare(webView.title, "New title");

            webView.experimental.userScripts = [];
            compare(webView.title, "New title");

            webView.reload();
            webView.waitForLoadSucceeded();
            compare(webView.title, "Test page with huge link area");
        }

        function test_twoScripts() {
            webView.url = Qt.resolvedUrl("../common/test1.html");
            webView.waitForLoadSucceeded();
            compare(webView.title, "Test page 1");

            webView.experimental.userScripts = [Qt.resolvedUrl("../common/change-document-title.js"), Qt.resolvedUrl("../common/append-document-title.js")];
            webView.reload();
            webView.waitForLoadSucceeded();
            compare(webView.title, "New title with appendix");

            // Make sure we can remove scripts from the preload list.
            webView.experimental.userScripts = [Qt.resolvedUrl("../common/append-document-title.js")];
            webView.reload();
            webView.waitForLoadSucceeded();
            compare(webView.title, "Test page 1 with appendix");

            // Make sure the scripts are loaded in order.
            webView.experimental.userScripts = [Qt.resolvedUrl("../common/append-document-title.js"), Qt.resolvedUrl("../common/change-document-title.js")];
            webView.reload();
            webView.waitForLoadSucceeded();
            compare(webView.title, "New title");
        }

        function test_setUserScriptsConditionally() {
            webViewWithConditionalUserScripts.url = Qt.resolvedUrl("../common/test1.html");
            webViewWithConditionalUserScripts.waitForLoadSucceeded();
            compare(webViewWithConditionalUserScripts.title, "New title");

            webViewWithConditionalUserScripts.url = Qt.resolvedUrl("../common/test2.html");
            webViewWithConditionalUserScripts.waitForLoadSucceeded();
            compare(webViewWithConditionalUserScripts.title, "Test page with huge link area with appendix");

            webViewWithConditionalUserScripts.url = Qt.resolvedUrl("../common/test3.html");
            webViewWithConditionalUserScripts.waitForLoadSucceeded();
            compare(webViewWithConditionalUserScripts.title, "Test page 3");
        }

        function test_bigScript() {
            webView.experimental.userScripts = [Qt.resolvedUrl("../common/big-user-script.js")];
            webView.url = Qt.resolvedUrl("../common/test1.html");
            webView.waitForLoadSucceeded();
            compare(webView.title, "Big user script changed title");
        }

        function test_fromResourceFile() {
            webView.experimental.userScripts = ["qrc:///common/change-document-title.js"];
            webView.url = Qt.resolvedUrl("../common/test1.html");
            webView.waitForLoadSucceeded();
            compare(webView.title, "New title");
        }
    }
}