Don't miss to enable Apply button
[qBittorrent.git] / test / testbittorrenttrackerentry.cpp
blob380a11f36297af72fcc63753e35df472d2baac5f
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2022 Mike Tzou (Chocobo1)
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * In addition, as a special exception, the copyright holders give permission to
20 * link this program with the OpenSSL project's "OpenSSL" library (or with
21 * modified versions of it that use the same license as the "OpenSSL" library),
22 * and distribute the linked executables. You must obey the GNU General Public
23 * License in all respects for all of the code used other than "OpenSSL". If you
24 * modify file(s), you may extend this exception to your version of the file(s),
25 * but you are not obligated to do so. If you do not wish to do so, delete this
26 * exception statement from your version.
29 #include <algorithm>
31 #include <QTest>
32 #include <QVector>
34 #include "base/bittorrent/trackerentry.h"
35 #include "base/global.h"
37 class TestBittorrentTrackerEntry final : public QObject
39 Q_OBJECT
40 Q_DISABLE_COPY_MOVE(TestBittorrentTrackerEntry)
42 public:
43 TestBittorrentTrackerEntry() = default;
45 private slots:
46 void testParseTrackerEntries() const
48 using Entries = QVector<BitTorrent::TrackerEntry>;
50 const auto isEqual = [](const Entries &left, const Entries &right) -> bool
52 return std::equal(left.begin(), left.end(), right.begin(), right.end()
53 , [](const BitTorrent::TrackerEntry &leftEntry, const BitTorrent::TrackerEntry &rightEntry)
55 return (leftEntry.url == rightEntry.url)
56 && (leftEntry.tier == rightEntry.tier);
57 });
61 const QString input;
62 const Entries output;
63 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
67 const QString input = u"http://localhost:1234"_s;
68 const Entries output = {{u"http://localhost:1234"_s, 0}};
69 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
73 const QString input = u" http://localhost:1234 "_s;
74 const Entries output = {{u"http://localhost:1234"_s, 0}};
75 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
79 const QString input = u"\nhttp://localhost:1234"_s;
80 const Entries output = {{u"http://localhost:1234"_s, 1}};
81 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
85 const QString input = u"http://localhost:1234\n"_s;
86 const Entries output = {{u"http://localhost:1234"_s, 0}};
87 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
91 const QString input = u"http://localhost:1234 \n http://[::1]:4567"_s;
92 const Entries output =
94 {u"http://localhost:1234"_s, 0},
95 {u"http://[::1]:4567"_s, 0}
97 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
101 const QString input = u"\n http://localhost:1234 \n http://[::1]:4567"_s;
102 const Entries output =
104 {u"http://localhost:1234"_s, 1},
105 {u"http://[::1]:4567"_s, 1}
107 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
111 const QString input = u"http://localhost:1234 \n http://[::1]:4567 \n \n \n"_s;
112 const Entries output =
114 {u"http://localhost:1234"_s, 0},
115 {u"http://[::1]:4567"_s, 0}
117 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
121 const QString input = u"http://localhost:1234 \n \n http://[::1]:4567"_s;
122 const Entries output =
124 {u"http://localhost:1234"_s, 0},
125 {u"http://[::1]:4567"_s, 1}
127 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
131 const QString input = u"\n \n \n http://localhost:1234 \n \n \n \n http://[::1]:4567 \n \n \n"_s;
132 const Entries output =
134 {u"http://localhost:1234"_s, 3},
135 {u"http://[::1]:4567"_s, 6}
137 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
142 QTEST_APPLESS_MAIN(TestBittorrentTrackerEntry)
143 #include "testbittorrenttrackerentry.moc"