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:
Tatsuhiro Tsujikawa 2015-12-26 20:57:33 +09:00
parent b9435f8786
commit d0ccb39880
6 changed files with 115 additions and 0 deletions

View file

@ -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