Remove request pre-authorization again

This commit is contained in:
Nils Maier 2014-07-21 08:11:14 +02:00
parent 8f2af33b6d
commit 70a80b1455
9 changed files with 11 additions and 44 deletions

View file

@ -200,14 +200,6 @@ 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()