2019-02-15 15:18:02 +00:00
|
|
|
#include <string>
|
2019-01-30 20:53:57 +00:00
|
|
|
#include <gtest/gtest.h>
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2020-02-28 22:17:41 +00:00
|
|
|
#include "jsonrpc/response.h"
|
|
|
|
#include "webfuse/core/json_util.h"
|
2019-02-13 19:49:05 +00:00
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-03-26 14:35:33 +00:00
|
|
|
static void response_parse_str(
|
2019-02-15 15:18:02 +00:00
|
|
|
std::string const & buffer,
|
2020-02-28 22:17:41 +00:00
|
|
|
struct jsonrpc_response * response)
|
2019-01-27 02:45:03 +00:00
|
|
|
{
|
2019-04-01 20:15:12 +00:00
|
|
|
json_t * message = json_loadb(buffer.c_str(), buffer.size(), 0, nullptr);
|
|
|
|
if (nullptr != message)
|
|
|
|
{
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_init(response, message);
|
2019-04-01 20:15:12 +00:00
|
|
|
json_decref(message);
|
|
|
|
}
|
2019-01-27 02:45:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 20:53:57 +00:00
|
|
|
TEST(response_parser, test)
|
2019-01-27 02:45:03 +00:00
|
|
|
{
|
2020-02-28 22:17:41 +00:00
|
|
|
struct jsonrpc_response response;
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
// no object
|
2019-03-26 14:35:33 +00:00
|
|
|
response_parse_str("[]", &response);
|
2020-02-28 22:17:41 +00:00
|
|
|
ASSERT_NE(nullptr, response.error);
|
2019-01-27 02:45:03 +00:00
|
|
|
ASSERT_EQ(-1, response.id);
|
2019-01-30 20:53:57 +00:00
|
|
|
ASSERT_EQ(nullptr, response.result);
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_cleanup(&response);
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
// empty
|
2019-03-26 14:35:33 +00:00
|
|
|
response_parse_str("{}", &response);
|
2020-02-28 22:17:41 +00:00
|
|
|
ASSERT_NE(nullptr, response.error);
|
2019-01-27 02:45:03 +00:00
|
|
|
ASSERT_EQ(-1, response.id);
|
2019-01-30 20:53:57 +00:00
|
|
|
ASSERT_EQ(nullptr, response.result);
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_cleanup(&response);
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
// no data
|
2019-03-26 14:35:33 +00:00
|
|
|
response_parse_str("{\"id\":42}", &response);
|
2020-02-28 22:17:41 +00:00
|
|
|
ASSERT_NE(nullptr, response.error);
|
2019-01-27 02:45:03 +00:00
|
|
|
ASSERT_EQ(42, response.id);
|
2019-01-30 20:53:57 +00:00
|
|
|
ASSERT_EQ(nullptr, response.result);
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_cleanup(&response);
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
// custom error code
|
2019-03-26 14:35:33 +00:00
|
|
|
response_parse_str("{\"error\":{\"code\": 42}, \"id\": 42}", &response);
|
2020-02-28 22:17:41 +00:00
|
|
|
ASSERT_NE(nullptr, response.error);
|
|
|
|
ASSERT_EQ(42, json_integer_value(json_object_get(response.error, "code")));
|
2019-01-27 02:45:03 +00:00
|
|
|
ASSERT_EQ(42, response.id);
|
2019-01-30 20:53:57 +00:00
|
|
|
ASSERT_EQ(nullptr, response.result);
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_cleanup(&response);
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
// valid response
|
2019-03-26 14:35:33 +00:00
|
|
|
response_parse_str("{\"result\": true, \"id\": 42}", &response);
|
2020-02-28 22:17:41 +00:00
|
|
|
ASSERT_EQ(WF_GOOD, response.error);
|
2019-01-27 02:45:03 +00:00
|
|
|
ASSERT_EQ(42, response.id);
|
2019-01-30 20:53:57 +00:00
|
|
|
ASSERT_NE(nullptr, response.result);
|
2020-02-28 22:17:41 +00:00
|
|
|
jsonrpc_response_cleanup(&response);
|
2019-01-27 02:45:03 +00:00
|
|
|
}
|