mirror of
https://github.com/transmission/transmission
synced 2025-01-31 11:23:40 +00:00
1cc9da26ba
* refactor: implement FileTreeItem::children_ with a std::vector
* fix: std::move should not be called on forwarding reference
* fix: uninitialized scalar variable
* fix: unchecked return value from library
* fix: dereference before null check
* fix: unchecked return value from library
* fix: unchecked return value from library
* fixup! refactor: implement FileTreeItem::children_ with a std::vector
* fix: signed-unsigned comparison in libtransmission tests
* fix: avoid unnecessary copy by using const reference
* fix: function should be declared const
* refactor: use fmt::format to build log timestamps
* fix: use init-statement to reduce variable scope
* fixup! refactor: use fmt::format to build log timestamps
* fix: remove tau_tracker destructor for rule-of-zero
* fix: remove tr_peerIo destructor for rule-of-zero
* Revert "fix: dereference before null check"
This reverts commit cd78967815
.
* fix: signed-unsigned comparison in libtransmission tests
* fix: use init-statement to reduce variable scope
* fix: extract nested code block into separate method
* fix: extract nested code block into separate method
* fix: extract nested code block into separate method
* fix: use init-statement to reduce variable scope
* fix: extract nested code block into separate method
* fix: signed-unsigned comparison in libtransmission tests
* fixup! fix: extract nested code block into separate method
* fix: mark possibly-unused as [[maybe_unused]]
* fix: invalid stack memory reference in tr_found_file_t
* fix: signed-unsigned comparison in libtransmission tests
91 lines
3.7 KiB
C++
91 lines
3.7 KiB
C++
// This file Copyright (C) 2010-2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#include "transmission.h"
|
|
#include "magnet-metainfo.h"
|
|
#include "utils.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <array>
|
|
#include <string_view>
|
|
|
|
using namespace std::literals;
|
|
|
|
TEST(MagnetMetainfo, magnetParse)
|
|
{
|
|
auto constexpr ExpectedHash = tr_sha1_digest_t{ std::byte(210), std::byte(53), std::byte(64), std::byte(16),
|
|
std::byte(163), std::byte(202), std::byte(74), std::byte(222),
|
|
std::byte(91), std::byte(116), std::byte(39), std::byte(187),
|
|
std::byte(9), std::byte(58), std::byte(98), std::byte(163),
|
|
std::byte(137), std::byte(159), std::byte(243), std::byte(129) };
|
|
|
|
auto constexpr UriHex =
|
|
"magnet:?xt=urn:btih:"
|
|
"d2354010a3ca4ade5b7427bb093a62a3899ff381"
|
|
"&dn=Display%20Name"
|
|
"&tr=http%3A%2F%2Ftracker.openbittorrent.com%2Fannounce"
|
|
"&tr=http%3A%2F%2Ftracker.opentracker.org%2Fannounce"
|
|
"&ws=http%3A%2F%2Fserver.webseed.org%2Fpath%2Fto%2Ffile"sv;
|
|
|
|
auto constexpr UriHexWithEmptyValue =
|
|
"magnet:?xt=urn:btih:"
|
|
"d2354010a3ca4ade5b7427bb093a62a3899ff381"
|
|
"&empty"
|
|
"&dn=Display%20Name"
|
|
"&tr=http%3A%2F%2Ftracker.openbittorrent.com%2Fannounce"
|
|
"&tr=http%3A%2F%2Ftracker.opentracker.org%2Fannounce"
|
|
"&ws=http%3A%2F%2Fserver.webseed.org%2Fpath%2Fto%2Ffile"sv;
|
|
|
|
auto constexpr UriHexWithJunkValues =
|
|
"magnet:?xt=urn:btih:"
|
|
"d2354010a3ca4ade5b7427bb093a62a3899ff381"
|
|
"&empty"
|
|
"&empty_again"
|
|
"&dn=Display%20Name"
|
|
"&tr=http%3A%2F%2Ftracker.openbittorrent.com%2Fannounce"
|
|
"&empty_again"
|
|
"&="
|
|
"&ws=http%3A%2F%2Fserver.webseed.org%2Fpath%2Fto%2Ffile"
|
|
"&tr=http%3A%2F%2Ftracker.opentracker.org%2Fannounce"sv;
|
|
|
|
auto constexpr UriBase32 =
|
|
"magnet:?xt=urn:btih:"
|
|
"2I2UAEFDZJFN4W3UE65QSOTCUOEZ744B"
|
|
"&dn=Display%20Name"
|
|
"&tr=http%3A%2F%2Ftracker.openbittorrent.com%2Fannounce"
|
|
"&ws=http%3A%2F%2Fserver.webseed.org%2Fpath%2Fto%2Ffile"
|
|
"&tr=http%3A%2F%2Ftracker.opentracker.org%2Fannounce"sv;
|
|
|
|
for (auto const& uri : { UriHex, UriHexWithEmptyValue, UriHexWithJunkValues, UriBase32 })
|
|
{
|
|
auto mm = tr_magnet_metainfo{};
|
|
|
|
EXPECT_TRUE(mm.parseMagnet(uri));
|
|
EXPECT_EQ(2U, std::size(mm.announceList()));
|
|
auto it = std::begin(mm.announceList());
|
|
EXPECT_EQ(0U, it->tier);
|
|
EXPECT_EQ("http://tracker.openbittorrent.com/announce"sv, it->announce.full);
|
|
EXPECT_EQ("http://tracker.openbittorrent.com/scrape"sv, it->scrape.full);
|
|
++it;
|
|
EXPECT_EQ(1U, it->tier);
|
|
EXPECT_EQ("http://tracker.opentracker.org/announce", it->announce.full);
|
|
EXPECT_EQ("http://tracker.opentracker.org/scrape", it->scrape.full);
|
|
EXPECT_EQ(1U, mm.webseedCount());
|
|
EXPECT_EQ("http://server.webseed.org/path/to/file"sv, mm.webseed(0));
|
|
EXPECT_EQ("Display Name"sv, mm.name());
|
|
EXPECT_EQ(ExpectedHash, mm.infoHash());
|
|
}
|
|
|
|
for (auto const& uri : { "2I2UAEFDZJFN4W3UE65QSOTCUOEZ744B"sv, "d2354010a3ca4ade5b7427bb093a62a3899ff381"sv })
|
|
{
|
|
auto mm = tr_magnet_metainfo{};
|
|
|
|
EXPECT_TRUE(mm.parseMagnet(uri));
|
|
EXPECT_EQ(0U, std::size(mm.announceList()));
|
|
EXPECT_EQ(0U, mm.webseedCount());
|
|
EXPECT_EQ(ExpectedHash, mm.infoHash());
|
|
}
|
|
}
|