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
|
/*
* Copyright 2014-2015 Canonical Ltd.
*
* This file is part of webbrowser-app.
*
* webbrowser-app is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* webbrowser-app is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.4
import QtTest 1.0
import "../../../src/app/webbrowser"
import webbrowsercommon.private 0.1
Item {
id: root
width: 200
height: 200
Component {
id: tabComponent
BrowserTab {
id: tab
anchors.fill: parent
webviewComponent: Item {
anchors.fill: parent
property url url
property string title
property url icon
property var request
property bool incognito: tab.incognito
property int reloaded: 0
property bool loadingState: false
function reload() { reloaded++ }
signal loadEvent()
}
readonly property bool webviewPresent: webview
}
}
SignalSpy {
id: previewSavedSpy
target: PreviewManager
signalName: "previewSaved"
}
TestCase {
name: "BrowserTab"
when: windowShown
function init() {
previewSavedSpy.clear()
}
function test_unique_ids() {
var tab = tabComponent.createObject(root)
var tab2 = tabComponent.createObject(root)
verify(tab.uniqueId)
verify(tab2.uniqueId)
verify(tab.uniqueId !== tab2.uniqueId)
tab.destroy()
tab2.destroy()
}
function test_load_unload() {
var tab = tabComponent.createObject(root)
verify(!tab.webviewPresent)
tab.initialUrl = "http://example.org"
tab.load()
tryCompare(tab, 'webviewPresent', true)
compare(tab.webview.url, "http://example.org")
tab.webview.url = "http://ubuntu.com"
tab.webview.title = "Ubuntu"
tab.unload()
tryCompare(tab, 'webviewPresent', false)
compare(tab.initialUrl, "http://ubuntu.com")
compare(tab.initialTitle, "Ubuntu")
tab.destroy()
}
function test_reload() {
var tab = tabComponent.createObject(root)
verify(!tab.webviewPresent)
tab.initialUrl = "http://example.org"
tab.reload()
tryCompare(tab, 'webviewPresent', true)
compare(tab.webview.reloaded, 0)
tab.reload()
verify(tab.webviewPresent)
compare(tab.webview.reloaded, 1)
tab.destroy()
}
function test_create_with_request() {
var request = {
requestedUrl: "about:blank#test",
openIn: function(webview) {
webview.url = this.requestedUrl
},
}
var tab = tabComponent.createObject(root, {'request': request})
tryCompare(tab, 'webviewPresent', true)
verify(tab.webviewPresent)
compare(tab.webview.url, request.requestedUrl)
tab.destroy()
}
function test_save_preview() {
var tab = tabComponent.createObject(root)
tab.initialUrl = "http://example.org"
tab.load()
tryCompare(tab, 'webviewPresent', true)
tab.current = true
tab.current = false
// a recent change of BrowserTab.qml changed that behavior, so that previewSaved is called twice, is that intended ?
tryCompare(previewSavedSpy, "count", 2)
verify(!tab.visible)
compare(previewSavedSpy.signalArguments[0][0], tab.initialUrl)
compare(previewSavedSpy.signalArguments[0][1], Qt.resolvedUrl(PreviewManager.previewPathFromUrl(tab.initialUrl)))
// FIXME: recent change of BrowserTab does no longer set the tab.preview to the preview URL
//compare(tab.preview, Qt.resolvedUrl(PreviewManager.previewPathFromUrl(tab.initialUrl)))
tab.destroy()
}
function test_no_save_preview_when_incognito() {
var tab = tabComponent.createObject(root)
tab.incognito = true
tab.initialUrl = "http://example.org"
tab.load()
tryCompare(tab, 'webviewPresent', true)
tab.current = true
tab.current = false
// this does not fully guarantee the event won't be emitted later,
// but it is a reasonable delay and certainly better than nothing
wait(250)
compare(previewSavedSpy.count, 0)
compare(tab.preview, "")
tab.destroy()
}
function test_delete_preview_on_close() {
var url = "http://example.org"
var path = Qt.resolvedUrl(PreviewManager.previewPathFromUrl(url))
var tab = tabComponent.createObject(root)
tab.initialUrl = url
tab.load()
tryCompare(tab, 'webviewPresent', true)
tab.current = true
tab.current = false
// a recent change of BrowserTab.qml changed that behavior, so that previewSaved is called twice, is that intended ?
tryCompare(previewSavedSpy, "count", 2)
verify(FileOperations.exists(path))
tab.close(false)
verify(!FileOperations.exists(path))
tab.destroy()
}
}
}
|