2018-01-27 09:57:47 +01:00
|
|
|
/* ============================================================
|
|
|
|
* Falkon - Qt web browser
|
|
|
|
* Copyright (C) 2018 David Rosca <nowrep@gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "locationbartest.h"
|
2018-01-27 11:21:10 +01:00
|
|
|
#include "autotests.h"
|
2018-01-27 09:57:47 +01:00
|
|
|
#include "locationbar.h"
|
|
|
|
#include "searchenginesmanager.h"
|
|
|
|
#include "bookmarks.h"
|
|
|
|
#include "bookmarkitem.h"
|
|
|
|
|
|
|
|
static void removeBookmarks(BookmarkItem *parent)
|
|
|
|
{
|
|
|
|
for (BookmarkItem *child : parent->children()) {
|
|
|
|
mApp->bookmarks()->removeBookmark(child);
|
|
|
|
removeBookmarks(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::initTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::cleanupTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::init()
|
|
|
|
{
|
|
|
|
mApp->searchEnginesManager()->setAllEngines({});
|
|
|
|
removeBookmarks(mApp->bookmarks()->rootItem());
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::loadActionBasicTest()
|
|
|
|
{
|
|
|
|
LocationBar::LoadAction action;
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("http://kde.org");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://kde.org"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("kde.org");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://kde.org"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("localhost");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://localhost"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("localhost/test/path?x=2");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://localhost/test/path?x=2"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("host.com/test/path?x=2");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://host.com/test/path?x=2"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("not-url");
|
2018-01-27 10:28:03 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
2018-01-27 09:57:47 +01:00
|
|
|
|
|
|
|
action = LocationBar::loadAction("not url with spaces");
|
2018-01-27 10:28:03 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
|
2018-01-28 15:45:54 +01:00
|
|
|
action = LocationBar::loadAction("falkon:about");
|
2018-01-27 09:57:47 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
2018-01-28 15:45:54 +01:00
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("falkon:about"));
|
2018-01-27 09:57:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::loadActionBookmarksTest()
|
|
|
|
{
|
|
|
|
BookmarkItem* bookmark = new BookmarkItem(BookmarkItem::Url);
|
|
|
|
bookmark->setTitle("KDE Bookmark title");
|
|
|
|
bookmark->setUrl(QUrl("http://kde.org"));
|
|
|
|
bookmark->setKeyword("kde-bookmark");
|
|
|
|
mApp->bookmarks()->addBookmark(mApp->bookmarks()->unsortedFolder(), bookmark);
|
|
|
|
|
|
|
|
LocationBar::LoadAction action;
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("http://kde.org");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://kde.org"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("kde-bookmark-notkeyword");
|
2018-01-27 10:28:03 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
2018-01-27 09:57:47 +01:00
|
|
|
|
|
|
|
action = LocationBar::loadAction("kde-bookmark");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Bookmark);
|
|
|
|
QCOMPARE(action.bookmark, bookmark);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://kde.org"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationBarTest::loadActionSearchTest()
|
|
|
|
{
|
|
|
|
SearchEngine engine;
|
|
|
|
engine.name = "Test Engine";
|
|
|
|
engine.url = "http://test/%s";
|
|
|
|
engine.shortcut = "t";
|
|
|
|
mApp->searchEnginesManager()->addEngine(engine);
|
2018-01-27 10:28:03 +01:00
|
|
|
mApp->searchEnginesManager()->setActiveEngine(engine);
|
2018-01-27 09:57:47 +01:00
|
|
|
|
|
|
|
LocationBar::LoadAction action;
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("search term");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://test/search%20term"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("t search term");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://test/search%20term"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction(" ttt-notsearch");
|
2018-01-27 10:28:03 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://test/ttt-notsearch"));
|
2018-01-27 09:57:47 +01:00
|
|
|
}
|
|
|
|
|
2018-01-27 10:40:36 +01:00
|
|
|
void LocationBarTest::loadAction_kdebug389491()
|
|
|
|
{
|
2018-01-27 12:31:39 +01:00
|
|
|
// "site:website.com searchterm" and "link:website.com" are loaded instead of searched
|
2018-01-27 10:40:36 +01:00
|
|
|
|
|
|
|
SearchEngine engine;
|
|
|
|
engine.name = "Test Engine";
|
|
|
|
engine.url = "http://test/%s";
|
|
|
|
engine.shortcut = "t";
|
|
|
|
mApp->searchEnginesManager()->addEngine(engine);
|
|
|
|
mApp->searchEnginesManager()->setActiveEngine(engine);
|
|
|
|
|
|
|
|
LocationBar::LoadAction action;
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("site:website.com searchterm");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://test/site%3Awebsite.com%20searchterm"));
|
|
|
|
|
2018-01-27 12:31:39 +01:00
|
|
|
action = LocationBar::loadAction("link:website.com");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Search);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://test/link%3Awebsite.com"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("http://website.com?search=searchterm and another");
|
2018-01-27 10:40:36 +01:00
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
2018-01-27 12:31:39 +01:00
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("http://website.com?search=searchterm and another"));
|
2018-01-27 10:40:36 +01:00
|
|
|
}
|
|
|
|
|
2018-01-28 15:45:54 +01:00
|
|
|
void LocationBarTest::loadActionSpecialSchemesTest()
|
|
|
|
{
|
|
|
|
LocationBar::LoadAction action;
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("data:image/png;base64,xxxxx");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("data:image/png;base64,xxxxx"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("falkon:about");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("falkon:about"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("file:test.html");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("file:test.html"));
|
|
|
|
|
|
|
|
action = LocationBar::loadAction("about:blank");
|
|
|
|
QCOMPARE(action.type, LocationBar::LoadAction::Url);
|
|
|
|
QCOMPARE(action.loadRequest.url(), QUrl("about:blank"));
|
|
|
|
}
|
|
|
|
|
2018-01-27 11:21:10 +01:00
|
|
|
FALKONTEST_MAIN(LocationBarTest)
|