mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Authorize RPC multicalls only once.
Cache the auth status afterwards and just assume the token still matches (within the same request, of course).
This commit is contained in:
parent
88b61f2eb9
commit
855dfa0e2f
9 changed files with 61 additions and 19 deletions
|
@ -200,6 +200,14 @@ void RpcMethodTest::testAuthorize()
|
|||
auto res = m.execute(std::move(req), e_.get());
|
||||
CPPUNIT_ASSERT_EQUAL(1, res.code);
|
||||
}
|
||||
// secret token set and bad token: prefixed parameter is given, but preauthorized
|
||||
{
|
||||
auto req = createReq(GetVersionRpcMethod::getMethodName());
|
||||
req.authorization = RpcRequest::PREAUTHORIZED;
|
||||
req.params->append("token:foo2");
|
||||
auto res = m.execute(std::move(req), e_.get());
|
||||
CPPUNIT_ASSERT_EQUAL(0, res.code);
|
||||
}
|
||||
}
|
||||
|
||||
void RpcMethodTest::testAddUri()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue