mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Add following to aria2.tellStatus response key as reverse link for followedBy
This commit is contained in:
parent
74811ddaff
commit
21754fa103
14 changed files with 60 additions and 1 deletions
|
@ -924,6 +924,7 @@ void RpcMethodTest::testGatherStoppedDownload()
|
|||
d->sessionTime = 1_s;
|
||||
d->result = error_code::FINISHED;
|
||||
d->followedBy = followedBy;
|
||||
d->following = 1;
|
||||
d->belongsTo = 2;
|
||||
auto entry = Dict::g();
|
||||
std::vector<std::string> keys;
|
||||
|
@ -934,6 +935,8 @@ void RpcMethodTest::testGatherStoppedDownload()
|
|||
downcast<String>(followedByRes->get(0))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(GroupId::toHex(4),
|
||||
downcast<String>(followedByRes->get(1))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(GroupId::toHex(1),
|
||||
downcast<String>(entry->get("following"))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(GroupId::toHex(2),
|
||||
downcast<String>(entry->get("belongsTo"))->s());
|
||||
|
||||
|
@ -960,6 +963,8 @@ void RpcMethodTest::testGatherProgressCommon()
|
|||
}
|
||||
|
||||
group->followedBy(followedBy.begin(), followedBy.end());
|
||||
auto leader = GroupId::create();
|
||||
group->following(leader->getNumericId());
|
||||
auto parent = GroupId::create();
|
||||
group->belongsTo(parent->getNumericId());
|
||||
|
||||
|
@ -972,6 +977,8 @@ void RpcMethodTest::testGatherProgressCommon()
|
|||
downcast<String>(followedByRes->get(0))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(GroupId::toHex(followedBy[1]->getGID()),
|
||||
downcast<String>(followedByRes->get(1))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(leader->toHex(),
|
||||
downcast<String>(entry->get("following"))->s());
|
||||
CPPUNIT_ASSERT_EQUAL(parent->toHex(),
|
||||
downcast<String>(entry->get("belongsTo"))->s());
|
||||
const List* files = downcast<List>(entry->get("files"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue