mirror of
https://github.com/transmission/transmission.git
synced 2026-04-02 00:27:38 +01:00
* build: overhaul tr_add_external_auto_library * build: use package-provided CMake config file libevent * build: use package-provided CMake config file miniupnpc * build: update libutp find module * build: make LIBNAME an optional parameter * build: use package-provided CMake config file libdeflate * build: update libb64 find module * build: update libnatpmp find module * build: update libpsl find module * build: support system fast_float library * chore: reformat long brew commands * build: support system fmt library * build: support system rapidjson library * build: support system small library * build: support system library utf8cpp * build: support system library WideInteger * build: support system library gtest * fix: incorrectly labeled test suites * build: remove unused parameters from tr_add_external_auto_library * build: update crc32c cmake script * fix: dht system library * fix: add libutp interface target * code review: move TrGtest.cmake * code review: move tr_get_fmt_version into Findfmt.cmake * code review: use option() for gtest * code review: move find_package(PkgConfig) out of loop * build: delete FindCrc32c.cmake Impossible to parse package version from distributed source files. * code review: Finddht.cmake * build: delete FindFastFloat.cmake Impossible to parse package version from distributed source files. * code review: Findfmt.cmake * code review: Findlibb64.cmake * code review: Findlibdeflate.cmake * code review: Findlibevent.cmake * code review: Findlibnatpmp.cmake * code review: Findlibpsl.cmake * code review: Findlibutp.cmake * code review: Findlibminiupnpc.cmake * code review: FindRapidJSON.cmake * build: delete FindSmall.cmake Impossible to parse package version from distributed source files. * build: only accept cmake config package for utf8cpp Impossible to parse package version from distributed source files. * build: delete FindWideInteger.cmake Impossible to parse package version from distributed source files. * build: add `USE_SYSTEM_DEFAULT` * ci: drop Fedora 40 and adopt Fedora 43 * ci: try to silence system header warnings * ci: use `cmake --install` * Revert "build: only accept cmake config package for utf8cpp" This reverts commit2158d631fd. * build: harden utf8cpp find module * chore: bump wide-integer Pick upbf9398f9daandbcc726a30f* refactor: gtest should be included with angled brackets Now that gtest is built as a system library, it should be included with angled brackets instead of quotes. * code review: fixup libutp variables before `find_package_handle_standard_args` * code review: define `WIDE_INTEGER_HAS_LIMB_TYPE_UINT64` only for targets depending on WideInteger * chore: bump wide-integer Pickup4b2258acacso that wide-integer tests won't run in Transmission project.
169 lines
5.0 KiB
C++
169 lines
5.0 KiB
C++
// This file Copyright © 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 <fstream>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <libtransmission/torrent-queue.h>
|
|
#include <libtransmission/torrent.h>
|
|
|
|
#include "test-fixtures.h"
|
|
|
|
using namespace std::literals;
|
|
|
|
struct TorrentQueueTest : public libtransmission::test::SandboxedTest
|
|
{
|
|
class MockMediator final : public tr_torrent_queue::Mediator
|
|
{
|
|
public:
|
|
explicit MockMediator(TorrentQueueTest const& test)
|
|
: test_{ test }
|
|
{
|
|
}
|
|
|
|
[[nodiscard]] std::string config_dir() const override
|
|
{
|
|
return test_.sandboxDir();
|
|
}
|
|
|
|
[[nodiscard]] std::string store_filename(tr_torrent_id_t id) const override
|
|
{
|
|
if (auto it = test_.torrents_.find(id); it != std::end(test_.torrents_))
|
|
{
|
|
return it->second.store_filename();
|
|
}
|
|
return {};
|
|
}
|
|
|
|
private:
|
|
TorrentQueueTest const& test_;
|
|
};
|
|
|
|
std::map<tr_torrent_id_t, tr_torrent const&> torrents_;
|
|
|
|
MockMediator mediator_{ *this };
|
|
|
|
static auto constexpr TorFilenames = std::array{
|
|
"Android-x86 8.1 r6 iso.torrent"sv,
|
|
"debian-11.2.0-amd64-DVD-1.iso.torrent"sv,
|
|
"ubuntu-18.04.6-desktop-amd64.iso.torrent"sv,
|
|
"ubuntu-20.04.4-desktop-amd64.iso.torrent"sv,
|
|
};
|
|
};
|
|
|
|
TEST_F(TorrentQueueTest, addRemoveToFromQueue)
|
|
{
|
|
auto queue = tr_torrent_queue{ mediator_ };
|
|
|
|
auto owned = std::vector<std::unique_ptr<tr_torrent>>{};
|
|
for (auto const& name : TorFilenames)
|
|
{
|
|
auto const path = tr_pathbuf{ LIBTRANSMISSION_TEST_ASSETS_DIR, '/', name };
|
|
auto tm = tr_torrent_metainfo{};
|
|
EXPECT_TRUE(tm.parse_torrent_file(path));
|
|
|
|
auto& tor = owned.emplace_back(std::make_unique<tr_torrent>(std::move(tm)));
|
|
tor->init_id(std::size(owned));
|
|
torrents_.try_emplace(tor->id(), *tor);
|
|
queue.add(tor->id());
|
|
}
|
|
|
|
for (size_t i = 0; i < std::size(owned); ++i)
|
|
{
|
|
EXPECT_EQ(i, queue.get_pos(owned[i]->id()));
|
|
}
|
|
|
|
queue.remove(owned[1]->id());
|
|
queue.remove(owned[2]->id());
|
|
owned.erase(std::begin(owned) + 1, std::begin(owned) + 3);
|
|
for (size_t i = 0; i < std::size(owned); ++i)
|
|
{
|
|
EXPECT_EQ(i, queue.get_pos(owned[i]->id()));
|
|
}
|
|
}
|
|
|
|
TEST_F(TorrentQueueTest, setQueuePos)
|
|
{
|
|
static auto constexpr QueuePos = std::array{ 1U, 3U, 0U, 2U };
|
|
|
|
auto queue = tr_torrent_queue{ mediator_ };
|
|
|
|
auto owned = std::vector<std::unique_ptr<tr_torrent>>{};
|
|
for (auto const& name : TorFilenames)
|
|
{
|
|
auto const path = tr_pathbuf{ LIBTRANSMISSION_TEST_ASSETS_DIR, '/', name };
|
|
auto tm = tr_torrent_metainfo{};
|
|
EXPECT_TRUE(tm.parse_torrent_file(path));
|
|
|
|
auto& tor = owned.emplace_back(std::make_unique<tr_torrent>(std::move(tm)));
|
|
tor->init_id(std::size(owned));
|
|
torrents_.try_emplace(tor->id(), *tor);
|
|
queue.add(tor->id());
|
|
}
|
|
|
|
for (size_t i = 0; i < std::size(owned); ++i)
|
|
{
|
|
EXPECT_EQ(i, queue.get_pos(owned[i]->id()));
|
|
}
|
|
|
|
for (size_t i = 0; i < std::size(owned); ++i)
|
|
{
|
|
auto const id = owned[i]->id();
|
|
auto const pos = QueuePos[i];
|
|
queue.set_pos(id, pos);
|
|
EXPECT_EQ(queue.get_pos(id), pos);
|
|
}
|
|
|
|
for (size_t i = 0; i < std::size(owned); ++i)
|
|
{
|
|
EXPECT_EQ(queue.get_pos(owned[i]->id()), QueuePos[i]);
|
|
}
|
|
}
|
|
|
|
TEST_F(TorrentQueueTest, toFromFile)
|
|
{
|
|
static auto constexpr ExpectedContents =
|
|
"[\n"
|
|
" \"70341e8e1fe8778af23f6318ca75a22f8b1f1c05.torrent\",\n"
|
|
" \"c9a337562cb0360fd6f5ab40fd2b1b81d5325dbd.torrent\",\n"
|
|
" \"bc26c6bc83d0ca1a7bf9875df1ffc3fed81ff555.torrent\",\n"
|
|
" \"f09c8d0884590088f4004e010a928f8b6178c2fd.torrent\"\n"
|
|
"]"sv;
|
|
|
|
auto queue = tr_torrent_queue{ mediator_ };
|
|
|
|
auto owned = std::vector<std::unique_ptr<tr_torrent>>{};
|
|
for (auto const& name : TorFilenames)
|
|
{
|
|
auto const path = tr_pathbuf{ LIBTRANSMISSION_TEST_ASSETS_DIR, '/', name };
|
|
auto tm = tr_torrent_metainfo{};
|
|
EXPECT_TRUE(tm.parse_torrent_file(path));
|
|
|
|
auto& tor = owned.emplace_back(std::make_unique<tr_torrent>(std::move(tm)));
|
|
tor->init_id(std::size(owned));
|
|
torrents_.try_emplace(tor->id(), *tor);
|
|
queue.add(tor->id());
|
|
}
|
|
|
|
queue.to_file();
|
|
|
|
auto f = std::ifstream{ sandboxDir() + "/queue.json" };
|
|
auto const contents = std::string{ std::istreambuf_iterator{ f }, std::istreambuf_iterator<decltype(f)::char_type>{} };
|
|
EXPECT_EQ(contents, ExpectedContents);
|
|
f.close();
|
|
|
|
auto const filenames = queue.from_file();
|
|
ASSERT_EQ(std::size(filenames), std::size(owned));
|
|
for (size_t i = 0; i < std::size(filenames); ++i)
|
|
{
|
|
EXPECT_EQ(filenames[i], owned[i]->store_filename());
|
|
}
|
|
}
|