File: TestIconDownloader.cpp

package info (click to toggle)
keepassxc 2.7.10%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 35,116 kB
  • sloc: cpp: 94,145; xml: 2,027; ansic: 1,541; sh: 1,521; python: 125; makefile: 38; javascript: 8
file content (83 lines) | stat: -rw-r--r-- 4,594 bytes parent folder | download | duplicates (2)
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
#include "TestIconDownloader.h"

#include <QTest>

#include "core/Config.h"
#include "gui/IconDownloader.h"

QTEST_GUILESS_MAIN(TestIconDownloader)

void TestIconDownloader::testIconDownloader()
{
    QFETCH(QString, url);
    QFETCH(QStringList, expectation);
    config()->set(Config::Security_IconDownloadFallback, false);

    IconDownloader downloader;
    downloader.setUrl(url);
    QStringList resolved_urls;
    for (const auto& resolved_url : downloader.m_urlsToTry) {
        resolved_urls.push_back(resolved_url.toString());
    }

    QCOMPARE(resolved_urls, expectation);
}

void TestIconDownloader::testIconDownloader_data()
{
    QTest::addColumn<QString>("url");
    QTest::addColumn<QStringList>("expectation");

    const QString keepassxc_favicon("https://keepassxc.org/favicon.ico");

    QTest::newRow("Invalid URL") << "http:sk/s.com" << QStringList{};
    QTest::newRow("Unsupported schema") << "ftp://google.com" << QStringList{};
    QTest::newRow("Missing schema") << "keepassxc.org" << QStringList{"https://keepassxc.org/favicon.ico"};
    QTest::newRow("Missing host") << "https:///register" << QStringList{};
    QTest::newRow("URL with path") << "https://keepassxc.org/register/here/"
                                   << QStringList{"https://keepassxc.org/register/here/favicon.ico", keepassxc_favicon};
    QTest::newRow("URL with path and query")
        << "https://keepassxc.org/register/here?login=me"
        << QStringList{"https://keepassxc.org/register/favicon.ico", keepassxc_favicon};
    QTest::newRow("URL with port") << "https://keepassxc.org:8080"
                                   << QStringList{"https://keepassxc.org:8080/favicon.ico"};
    QTest::newRow("2nd level domain") << "https://login.keepassxc.org"
                                      << QStringList{"https://login.keepassxc.org/favicon.ico", keepassxc_favicon};
    QTest::newRow("2nd level domain with additional fields")
        << "https://user:password@login.keepassxc.org:2021?test#1"
        << QStringList{"https://user:password@login.keepassxc.org:2021/favicon.ico",
                       "https://user:password@keepassxc.org:2021/favicon.ico",
                       keepassxc_favicon};
    QTest::newRow("2nd level domain (.co.uk special case), with subdomain")
        << "https://login.keepassxc.co.uk"
        << QStringList{"https://login.keepassxc.co.uk/favicon.ico", "https://keepassxc.co.uk/favicon.ico"};
    QTest::newRow("2nd level domain .co.uk special case")
        << "https://keepassxc.co.uk" << QStringList{"https://keepassxc.co.uk/favicon.ico"};
    QTest::newRow("2nd level domain with several subdomains")
        << "https://de.login.keepassxc.org"
        << QStringList{"https://de.login.keepassxc.org/favicon.ico", keepassxc_favicon};
    QTest::newRow("Raw IP with schema") << "https://134.130.155.184"
                                        << QStringList{"https://134.130.155.184/favicon.ico"};
    QTest::newRow("Raw IP") << "134.130.155.184" << QStringList{"https://134.130.155.184/favicon.ico"};
    QTest::newRow("Raw IP with schema and path")
        << "https://134.130.155.184/with/path/"
        << QStringList{"https://134.130.155.184/with/path/favicon.ico", "https://134.130.155.184/favicon.ico"};
    QTest::newRow("Raw IP with schema (https), path, and port")
        << "https://134.130.155.184:8080/test/"
        << QStringList{"https://134.130.155.184:8080/test/favicon.ico", "https://134.130.155.184:8080/favicon.ico"};
    QTest::newRow("Raw IP with schema (http), path, and port")
        << "134.130.155.184:8080/test/"
        << QStringList{"https://134.130.155.184:8080/test/favicon.ico", "https://134.130.155.184:8080/favicon.ico"};
    QTest::newRow("URL with username and password")
        << "https://user:password@keepassxc.org" << QStringList{"https://user:password@keepassxc.org/favicon.ico"};
    QTest::newRow("URL with username and password, several subdomains")
        << "https://user:password@de.login.keepassxc.org"
        << QStringList{"https://user:password@de.login.keepassxc.org/favicon.ico",
                       "https://user:password@keepassxc.org/favicon.ico",
                       "https://keepassxc.org/favicon.ico"};
    QTest::newRow("Raw IP with username and password")
        << "https://user:password@134.130.155.184" << QStringList{"https://user:password@134.130.155.184/favicon.ico"};
    QTest::newRow("Relative path should be preserved")
        << "https://test.com/rel-path/"
        << QStringList{"https://test.com/rel-path/favicon.ico", "https://test.com/favicon.ico"};
}