mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Add system.listMethods RPC method
system.listMethods just returns the available RPC method names. It can be executed without secret token, because it just returns the method names, and does not alter anything. See GH-437
This commit is contained in:
parent
b9435f8786
commit
d0ccb39880
6 changed files with 115 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
#include "array_fun.h"
|
||||
#include "download_helper.h"
|
||||
#include "FileEntry.h"
|
||||
#include "RpcMethodFactory.h"
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
# include "BtRegistry.h"
|
||||
# include "BtRuntime.h"
|
||||
|
@ -78,6 +79,7 @@ class RpcMethodTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testPause);
|
||||
CPPUNIT_TEST(testSystemMulticall);
|
||||
CPPUNIT_TEST(testSystemMulticall_fail);
|
||||
CPPUNIT_TEST(testSystemListMethods);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
std::shared_ptr<DownloadEngine> e_;
|
||||
|
@ -142,6 +144,7 @@ public:
|
|||
void testPause();
|
||||
void testSystemMulticall();
|
||||
void testSystemMulticall_fail();
|
||||
void testSystemListMethods();
|
||||
};
|
||||
|
||||
|
||||
|
@ -1363,6 +1366,24 @@ void RpcMethodTest::testSystemMulticall_fail()
|
|||
CPPUNIT_ASSERT_EQUAL(1, res.code);
|
||||
}
|
||||
|
||||
void RpcMethodTest::testSystemListMethods()
|
||||
{
|
||||
SystemListMethodsRpcMethod m;
|
||||
auto res = m.execute(createReq("system.listMethods"), e_.get());
|
||||
CPPUNIT_ASSERT_EQUAL(0, res.code);
|
||||
|
||||
const auto resParams = downcast<List>(res.param);
|
||||
auto &allNames = allMethodNames();
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(allNames.size(), resParams->size());
|
||||
|
||||
for (size_t i = 0; i < allNames.size(); ++i) {
|
||||
const auto s = downcast<String>(resParams->get(i));
|
||||
CPPUNIT_ASSERT(s);
|
||||
CPPUNIT_ASSERT_EQUAL(allNames[i], s->s());
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace rpc
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue