Fixed the bug that JSONP callback function name is not encoded

properly.
This commit is contained in:
Tatsuhiro Tsujikawa 2011-03-16 12:55:12 +09:00
parent dfdf98d2f7
commit 15730aa560
2 changed files with 36 additions and 3 deletions

View file

@ -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);
}
}