2019-05-19 12:33:42 +00:00
|
|
|
#include <gtest/gtest.h>
|
2020-06-16 21:39:45 +00:00
|
|
|
#include "webfuse_provider/impl/jsonrpc/response.h"
|
2019-05-19 12:33:42 +00:00
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, valid_result)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "result", json_object());
|
|
|
|
json_object_set_new(message, "id", json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_TRUE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, valid_result_string)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "result", json_string("also valid"));
|
|
|
|
json_object_set_new(message, "id", json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_TRUE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, valid_error)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "error", json_object());
|
|
|
|
json_object_set_new(message, "id", json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_TRUE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_null)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(nullptr));
|
2019-05-19 12:33:42 +00:00
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_message)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_array();
|
|
|
|
json_array_append_new(message, json_object());
|
|
|
|
json_array_append_new(message, json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_missing_id)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "result", json_object());
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_id_wrong_type)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "result", json_object());
|
|
|
|
json_object_set_new(message, "id", json_string("42"));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_missing_result_and_error)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "id", json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
TEST(wfp_jsonrpc_is_response, invalid_error_wrong_type)
|
2019-05-19 12:33:42 +00:00
|
|
|
{
|
|
|
|
json_t * message = json_object();
|
|
|
|
json_object_set_new(message, "error", json_array());
|
|
|
|
json_object_set_new(message, "id", json_integer(42));
|
|
|
|
|
2020-06-16 21:57:41 +00:00
|
|
|
ASSERT_FALSE(wfp_jsonrpc_is_response(message));
|
2019-05-19 12:33:42 +00:00
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|