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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* Copyright 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 webbrowserapp.private 0.1
Item {
id: root
width: 800
height: 600
property BookmarksFoldersViewWide view
property string homepage: "http://example.com/homepage"
Component {
id: viewComponent
BookmarksFoldersViewWide {
anchors.fill: parent
homeBookmarkUrl: homepage
}
}
SignalSpy {
id: bookmarkClickedSpy
signalName: "bookmarkClicked"
}
SignalSpy {
id: bookmarkRemovedSpy
signalName: "bookmarkRemoved"
}
WebbrowserTestCase {
name: "BookmarksFoldersViewWide"
when: windowShown
function init() {
BookmarksModel.databasePath = ":memory:"
view = viewComponent.createObject(root)
populate()
view.focus = true
bookmarkClickedSpy.target = view
bookmarkClickedSpy.clear()
bookmarkRemovedSpy.target = view
bookmarkRemovedSpy.clear()
}
function populate() {
BookmarksModel.add("http://example.com", "Example Com", "", "")
BookmarksModel.add("http://example.org/bar", "Example Org Bar", "", "Folder B")
BookmarksModel.add("http://example.org/foo", "Example Org Foo", "", "Folder B")
BookmarksModel.add("http://example.net/a", "Example Net A", "", "Folder A")
BookmarksModel.add("http://example.net/b", "Example Net B", "", "Folder A")
}
function cleanup() {
BookmarksModel.databasePath = ""
view.destroy()
view = null
}
function test_folder_list() {
var items = getListItems(findChild(view, "foldersList"), "folderItem")
compare(items.length, 3)
verify(items[0].isAllBookmarksFolder)
compare(items[0].model.folder, "")
// named folder items should appear alphabetically sorted
compare(items[1].model.folder, "Folder A")
compare(items[2].model.folder, "Folder B")
}
function test_all_bookmarks_list() {
var items = getListItems(findChild(view, "bookmarksList"), "bookmarkItem")
compare(items.length, 2)
compare(items[0].url, homepage)
compare(items[1].title, "Example Com")
}
function test_navigate_folders_by_keyboard() {
var folders = getListItems(findChild(view, "foldersList"), "folderItem")
verify(folders[0].isActiveFolder)
keyClick(Qt.Key_Down)
verify(!folders[0].isActiveFolder)
verify(folders[1].isActiveFolder)
// bookmarks within a folder are sorted with the first bookmarked appearing last
var bookmarksListView = findChild(view, "bookmarksList")
var items = getListItems(bookmarksListView, "bookmarkItem")
compare(items[0].title, "Example Net B")
compare(items[1].title, "Example Net A")
compare(items.length, 2)
keyClick(Qt.Key_Down)
verify(folders[2].isActiveFolder)
items = getListItems(bookmarksListView, "bookmarkItem")
compare(items[0].title, "Example Org Foo")
compare(items[1].title, "Example Org Bar")
compare(items.length, 2)
// verify scrolling beyond bottom of list is not allowed
keyClick(Qt.Key_Down)
verify(folders[2].isActiveFolder)
keyClick(Qt.Key_Up)
verify(folders[1].isActiveFolder)
keyClick(Qt.Key_Up)
verify(folders[0].isActiveFolder)
keyClick(Qt.Key_Up)
}
function test_switch_between_folder_and_bookmarks_by_keyboard() {
var foldersList = findChild(view, "foldersList")
var bookmarks = findChild(view, "bookmarksList")
var folders = getListItems(foldersList, "folderItem")
verify(folders[0].isActiveFolder)
keyClick(Qt.Key_Right)
verify(bookmarks.activeFocus)
keyClick(Qt.Key_Right)
verify(bookmarks.activeFocus) // verify no circular scrolling
keyClick(Qt.Key_Left)
verify(foldersList.activeFocus)
keyClick(Qt.Key_Left)
verify(foldersList.activeFocus) // verify no circular scrolling
keyClick(Qt.Key_Down)
verify(!folders[0].isActiveFolder)
verify(folders[1].isActiveFolder)
keyClick(Qt.Key_Right)
verify(bookmarks.activeFocus)
keyClick(Qt.Key_Right)
verify(bookmarks.activeFocus) // verify no circular scrolling
keyClick(Qt.Key_Left)
verify(foldersList.activeFocus)
keyClick(Qt.Key_Left)
verify(foldersList.activeFocus) // verify no circular scrolling
}
function test_activate_bookmarks_by_keyboard() {
keyClick(Qt.Key_Right)
var items = getListItems(findChild(view, "bookmarksList"), "bookmarkItem")
keyClick(Qt.Key_Return)
compare(bookmarkClickedSpy.count, 1)
compare(bookmarkClickedSpy.signalArguments[0][0], homepage)
keyClick(Qt.Key_Down)
keyClick(Qt.Key_Return)
compare(bookmarkClickedSpy.count, 2)
compare(bookmarkClickedSpy.signalArguments[1][0], "http://example.com")
}
function test_activate_bookmarks_by_mouse() {
var items = getListItems(findChild(view, "bookmarksList"), "bookmarkItem")
clickItem(items[0])
compare(bookmarkClickedSpy.count, 1)
compare(bookmarkClickedSpy.signalArguments[0][0], homepage)
clickItem(items[1])
compare(bookmarkClickedSpy.count, 2)
compare(bookmarkClickedSpy.signalArguments[1][0], "http://example.com")
}
function test_switch_folders_by_mouse() {
var folders = getListItems(findChild(view, "foldersList"), "folderItem")
clickItem(folders[1])
var bookmarksListView = findChild(view, "bookmarksList")
var items = getListItems(bookmarksListView, "bookmarkItem")
compare(items[0].title, "Example Net B")
compare(items[1].title, "Example Net A")
compare(items.length, 2)
clickItem(folders[0])
items = getListItems(bookmarksListView, "bookmarkItem")
compare(items[0].url, homepage)
compare(items[1].title, "Example Com")
compare(items.length, 2)
}
function test_remove_bookmarks_by_keyboard() {
keyClick(Qt.Key_Right)
var items = getListItems(findChild(view, "bookmarksList"), "bookmarkItem")
// verify that trying to delete the homepage bookmark does not work
keyClick(Qt.Key_Delete)
compare(bookmarkRemovedSpy.count, 0)
keyClick(Qt.Key_Down)
keyClick(Qt.Key_Delete)
compare(bookmarkRemovedSpy.count, 1)
compare(bookmarkRemovedSpy.signalArguments[0][0], items[1].url)
}
}
}
|