57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
// This file Copyright (C) 2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#include <string>
|
|
|
|
#include "transmission.h"
|
|
|
|
#include "crypto-utils.h"
|
|
#include "error.h"
|
|
#include "torrent-magnet.h"
|
|
#include "torrent-metainfo.h"
|
|
#include "torrent.h"
|
|
|
|
#include "test-fixtures.h"
|
|
|
|
namespace libtransmission::test
|
|
{
|
|
|
|
using TorrentMagnetTest = SessionTest;
|
|
|
|
TEST_F(TorrentMagnetTest, getMetadataPiece)
|
|
{
|
|
auto* tor = zeroTorrentInit(ZeroTorrentState::Complete);
|
|
EXPECT_NE(nullptr, tor);
|
|
|
|
auto benc = std::string{
|
|
"d8:announce31:http://www.example.com/announce10:created by25:Transmission/2.61 (13407)13:creation datei1358704075e8:encoding5:UTF-84:info"
|
|
};
|
|
auto piece = int{ 0 };
|
|
auto info_dict_size = size_t{ 0U };
|
|
for (;;)
|
|
{
|
|
auto const info_dict_data = tr_torrentGetMetadataPiece(tor, piece++);
|
|
if (!info_dict_data)
|
|
{
|
|
break;
|
|
}
|
|
|
|
benc.append(reinterpret_cast<char const*>(std::data(*info_dict_data)), std::size(*info_dict_data));
|
|
info_dict_size += std::size(*info_dict_data);
|
|
}
|
|
benc.append("e");
|
|
EXPECT_EQ(tor->infoDictSize(), info_dict_size);
|
|
|
|
auto torrent_metainfo = tr_torrent_metainfo{};
|
|
tr_error* error = nullptr;
|
|
EXPECT_TRUE(torrent_metainfo.parseBenc(benc, &error));
|
|
EXPECT_EQ(nullptr, error) << error->message;
|
|
tr_error_clear(&error);
|
|
|
|
EXPECT_EQ(tor->pieceHash(0), torrent_metainfo.pieceHash(0));
|
|
}
|
|
|
|
} // namespace libtransmission::test
|