WebUI: enforce parentheses around operators
[qBittorrent.git] / test / testbittorrenttrackerentry.cpp
blobebac85bcf2a5743238c1d9bb68f7b1c2862d7d13
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 <QObject>
32 #include <QTest>
33 #include <QVector>
35 #include "base/bittorrent/trackerentry.h"
36 #include "base/global.h"
38 class TestBittorrentTrackerEntry final : public QObject
40 Q_OBJECT
41 Q_DISABLE_COPY_MOVE(TestBittorrentTrackerEntry)
43 public:
44 TestBittorrentTrackerEntry() = default;
46 private slots:
47 void testParseTrackerEntries() const
49 using Entries = QVector<BitTorrent::TrackerEntry>;
51 const auto isEqual = [](const Entries &left, const Entries &right) -> bool
53 return std::equal(left.begin(), left.end(), right.begin(), right.end()
54 , [](const BitTorrent::TrackerEntry &leftEntry, const BitTorrent::TrackerEntry &rightEntry)
56 return (leftEntry.url == rightEntry.url)
57 && (leftEntry.tier == rightEntry.tier);
58 });
62 const QString input;
63 const Entries output;
64 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
68 const QString input = u"http://localhost:1234"_s;
69 const Entries output = {{u"http://localhost:1234"_s, 0}};
70 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
74 const QString input = u" http://localhost:1234 "_s;
75 const Entries output = {{u"http://localhost:1234"_s, 0}};
76 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
80 const QString input = u"\nhttp://localhost:1234"_s;
81 const Entries output = {{u"http://localhost:1234"_s, 1}};
82 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
86 const QString input = u"http://localhost:1234\n"_s;
87 const Entries output = {{u"http://localhost:1234"_s, 0}};
88 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
92 const QString input = u"http://localhost:1234 \n http://[::1]:4567"_s;
93 const Entries output =
95 {u"http://localhost:1234"_s, 0},
96 {u"http://[::1]:4567"_s, 0}
98 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
102 const QString input = u"\n http://localhost:1234 \n http://[::1]:4567"_s;
103 const Entries output =
105 {u"http://localhost:1234"_s, 1},
106 {u"http://[::1]:4567"_s, 1}
108 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
112 const QString input = u"http://localhost:1234 \n http://[::1]:4567 \n \n \n"_s;
113 const Entries output =
115 {u"http://localhost:1234"_s, 0},
116 {u"http://[::1]:4567"_s, 0}
118 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
122 const QString input = u"http://localhost:1234 \n \n http://[::1]:4567"_s;
123 const Entries output =
125 {u"http://localhost:1234"_s, 0},
126 {u"http://[::1]:4567"_s, 1}
128 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
132 const QString input = u"\n \n \n http://localhost:1234 \n \n \n \n http://[::1]:4567 \n \n \n"_s;
133 const Entries output =
135 {u"http://localhost:1234"_s, 3},
136 {u"http://[::1]:4567"_s, 6}
138 QVERIFY(isEqual(BitTorrent::parseTrackerEntries(input), output));
143 QTEST_APPLESS_MAIN(TestBittorrentTrackerEntry)
144 #include "testbittorrenttrackerentry.moc"