mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Rewrote resolveUrl function to conform to various test cases
This commit is contained in:
parent
91d746c5c0
commit
5098866413
3 changed files with 47 additions and 15 deletions
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
|
||||
#include "TestEntry.h"
|
||||
#include "config-keepassx-tests.h"
|
||||
|
||||
#include <QTest>
|
||||
|
||||
|
@ -130,3 +131,30 @@ void TestEntry::testClone()
|
|||
|
||||
delete entryOrg;
|
||||
}
|
||||
|
||||
void TestEntry::testResolveUrl()
|
||||
{
|
||||
Entry* entry = new Entry();
|
||||
QString testUrl("www.google.com");
|
||||
QString testCmd("cmd://firefox " + testUrl);
|
||||
QString testComplexCmd("cmd://firefox --start-now --url 'http://" + testUrl + "' --quit");
|
||||
QString nonHttpUrl("ftp://google.com");
|
||||
QString noUrl("random text inserted here");
|
||||
|
||||
// Test standard URL's
|
||||
QCOMPARE(entry->resolveUrl(""), QString(""));
|
||||
QCOMPARE(entry->resolveUrl(testUrl), "https://" + testUrl);
|
||||
QCOMPARE(entry->resolveUrl("http://" + testUrl), "http://" + testUrl);
|
||||
// Test cmd:// with no URL
|
||||
QCOMPARE(entry->resolveUrl("cmd://firefox"), QString(""));
|
||||
QCOMPARE(entry->resolveUrl("cmd://firefox --no-url"), QString(""));
|
||||
// Test cmd:// with URL's
|
||||
QCOMPARE(entry->resolveUrl(testCmd), "https://" + testUrl);
|
||||
QCOMPARE(entry->resolveUrl(testComplexCmd), "http://" + testUrl);
|
||||
// Test non-http URL
|
||||
QCOMPARE(entry->resolveUrl(nonHttpUrl), QString(""));
|
||||
// Test no URL
|
||||
QCOMPARE(entry->resolveUrl(noUrl), QString(""));
|
||||
|
||||
delete entry;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue