mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Add bittorrent key to aria2.tellStopped status
This commit is contained in:
parent
79298daf5f
commit
ca634a82bd
9 changed files with 68 additions and 16 deletions
|
@ -67,6 +67,9 @@ class RpcMethodTest : public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testGetVersion);
|
||||
CPPUNIT_TEST(testNoSuchMethod);
|
||||
CPPUNIT_TEST(testGatherStoppedDownload);
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
CPPUNIT_TEST(testGatherStoppedDownload_bt);
|
||||
#endif // ENABLE_BITTORRENT
|
||||
CPPUNIT_TEST(testGatherProgressCommon);
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
CPPUNIT_TEST(testGatherBitTorrentMetadata);
|
||||
|
@ -134,6 +137,9 @@ public:
|
|||
void testGetVersion();
|
||||
void testNoSuchMethod();
|
||||
void testGatherStoppedDownload();
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
void testGatherStoppedDownload_bt();
|
||||
#endif // ENABLE_BITTORRENT
|
||||
void testGatherProgressCommon();
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
void testGatherBitTorrentMetadata();
|
||||
|
@ -950,6 +956,29 @@ void RpcMethodTest::testGatherStoppedDownload()
|
|||
CPPUNIT_ASSERT(entry->containsKey("gid"));
|
||||
}
|
||||
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
void RpcMethodTest::testGatherStoppedDownload_bt()
|
||||
{
|
||||
auto d = std::make_shared<DownloadResult>();
|
||||
d->gid = GroupId::create();
|
||||
d->infoHash = "2089b05ecca3d829cee5497d2703803b52216d19";
|
||||
d->attrs = std::vector<std::shared_ptr<ContextAttribute>>(MAX_CTX_ATTR);
|
||||
|
||||
auto torrentAttr = std::make_shared<TorrentAttribute>();
|
||||
torrentAttr->creationDate = 1000000007;
|
||||
d->attrs[CTX_ATTR_BT] = torrentAttr;
|
||||
|
||||
auto entry = Dict::g();
|
||||
gatherStoppedDownload(entry.get(), d, {});
|
||||
|
||||
auto btDict = downcast<Dict>(entry->get("bittorrent"));
|
||||
CPPUNIT_ASSERT(btDict);
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)1000000007,
|
||||
downcast<Integer>(btDict->get("creationDate"))->i());
|
||||
}
|
||||
#endif // ENABLE_BITTORRENT
|
||||
|
||||
void RpcMethodTest::testGatherProgressCommon()
|
||||
{
|
||||
auto dctx = std::make_shared<DownloadContext>(0, 0, "aria2.tar.bz2");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue