File: metalinktest.cpp

package info (click to toggle)
kget 4%3A25.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,112 kB
  • sloc: cpp: 33,019; xml: 811; makefile: 9; sh: 6
file content (101 lines) | stat: -rw-r--r-- 3,716 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/***************************************************************************
 *   Copyright (C) 2011 Matthias Fuchs <mat69@gmx.net>                     *
 *   Code mostly from email from Will Stephenson <wstephenson@suse.de>     *
 *                                                                         *
 *   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 2 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, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
 ***************************************************************************/

#include "metalinktest.h"
#include "../ui/metalinkcreator/metalinker.h"

#include <QTest>
#include <QUrl>

void MetalinkTest::testFilePath()
{
    QFETCH(QString, string);
    QFETCH(bool, result);

    KGetMetalink::File file;
    file.name = string;

    QCOMPARE(file.isValidNameAttribute(), result);
}

void MetalinkTest::testFilePath_data()
{
    QTest::addColumn<QString>("string");
    QTest::addColumn<bool>("result");

    QTest::newRow("traversal up relative to root") << "/../foo/bla" << false;
    QTest::newRow("traversal up at beginning") << "../foo/bla" << false;
    QTest::newRow("traversal up inside") << "bla/../foo/bla" << false;
    QTest::newRow("traversal up at end") << "foo/bla/.." << false;
    QTest::newRow("no file name") << "foo/bla/" << false;
    QTest::newRow("acceptable traversal down, contains path component") << "foo/bla" << true;
}

void MetalinkTest::testUrl()
{
    QFETCH(QUrl, url);
    QFETCH(bool, result);

    KGetMetalink::Url data;
    data.url = url;

    QCOMPARE(data.isValid(), result);
}

void MetalinkTest::testUrl_data()
{
    QTest::addColumn<QUrl>("url");
    QTest::addColumn<bool>("result");

    QTest::newRow("empty url") << QUrl() << false;
    QTest::newRow("no host") << QUrl("http://") << false;
    QTest::newRow("empty protocol") << QUrl("www.example.com") << false;
    QTest::newRow("valid url") << QUrl("http://www.example.com") << true;
}

void MetalinkTest::testMetaUrl()
{
    QFETCH(QUrl, url);
    QFETCH(QString, type);
    QFETCH(bool, result);

    KGetMetalink::Metaurl data;
    data.url = url;
    data.type = type;

    QCOMPARE(data.isValid(), result);
}

void MetalinkTest::testMetaUrl_data()
{
    QTest::addColumn<QUrl>("url");
    QTest::addColumn<QString>("type");
    QTest::addColumn<bool>("result");

    QTest::newRow("empty url") << QUrl() << "torrent" << false;
    QTest::newRow("no host") << QUrl("http://") << "torrent" << false;
    QTest::newRow("empty protocol") << QUrl("www.example.com") << "torrent" << false;
    QTest::newRow("empty type") << QUrl("http://www.example.com") << QString() << false;
    QTest::newRow("valid url") << QUrl("http://www.example.com") << "torrent" << true;
}

QTEST_MAIN(MetalinkTest)

#include "moc_metalinktest.cpp"