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:
Nils Maier 2014-05-17 17:31:21 +02:00
parent 88b61f2eb9
commit 855dfa0e2f
9 changed files with 61 additions and 19 deletions

View file

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