mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Fixed the bug that JSONP callback function name is not encoded
properly.
This commit is contained in:
parent
dfdf98d2f7
commit
15730aa560
2 changed files with 36 additions and 3 deletions
|
@ -36,6 +36,12 @@ void RpcResponseTest::testToJson()
|
|||
"\"jsonrpc\":\"2.0\","
|
||||
"\"result\":[1]}"),
|
||||
s);
|
||||
// with callback
|
||||
s = res.toJson("cb", false);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("cb({\"id\":\"9\","
|
||||
"\"jsonrpc\":\"2.0\","
|
||||
"\"result\":[1]})"),
|
||||
s);
|
||||
}
|
||||
{
|
||||
// error response
|
||||
|
@ -51,6 +57,14 @@ void RpcResponseTest::testToJson()
|
|||
"\"jsonrpc\":\"2.0\""
|
||||
"}"),
|
||||
s);
|
||||
// with callback
|
||||
s = res.toJson("cb", false);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("cb({\"error\":{\"code\":1,"
|
||||
"\"message\":\"HELLO ERROR\"},"
|
||||
"\"id\":null,"
|
||||
"\"jsonrpc\":\"2.0\""
|
||||
"})"),
|
||||
s);
|
||||
}
|
||||
{
|
||||
// batch response
|
||||
|
@ -66,6 +80,19 @@ void RpcResponseTest::testToJson()
|
|||
"}"
|
||||
"]"),
|
||||
s);
|
||||
// with callback
|
||||
s = toJsonBatch(results, "cb", false);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("cb(["
|
||||
"{\"id\":\"9\","
|
||||
"\"jsonrpc\":\"2.0\","
|
||||
"\"result\":[1]},"
|
||||
"{\"error\":{\"code\":1,"
|
||||
"\"message\":\"HELLO ERROR\"},"
|
||||
"\"id\":null,"
|
||||
"\"jsonrpc\":\"2.0\""
|
||||
"}"
|
||||
"])"),
|
||||
s);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue