JSONRPC: Fix notification return behavior

This commit is contained in:
HolonProduction
2025-04-04 10:41:18 +02:00
parent 8bd9cdeea6
commit a18d6e48c9
3 changed files with 95 additions and 13 deletions
+66
View File
@@ -46,6 +46,7 @@ TEST_CASE("[JSONRPC] process_action invalid") {
check_invalid(json_rpc.process_action(1234));
check_invalid(json_rpc.process_action(false));
check_invalid(json_rpc.process_action(3.14159));
check_invalid(json_rpc.process_action(Array()));
}
void check_invalid_string(const String &p_str);
@@ -57,6 +58,7 @@ TEST_CASE("[JSONRPC] process_string invalid") {
check_invalid_string(json_rpc.process_string("1234"));
check_invalid_string(json_rpc.process_string("false"));
check_invalid_string(json_rpc.process_string("3.14159"));
check_invalid_string(json_rpc.process_string("[]"));
}
class TestClassJSONRPC : public JSONRPC {
@@ -125,9 +127,73 @@ void test_process_action_bad_method(const Dictionary &p_in);
TEST_CASE("[JSONRPC] process_action bad method") {
Dictionary in_dict;
in_dict["id"] = 1;
in_dict["method"] = "nothing";
test_process_action_bad_method(in_dict);
}
void test_no_response(const Variant &p_in);
TEST_CASE("[JSONRPC] process_action notification") {
Dictionary in_dict = Dictionary();
in_dict["method"] = "something";
in_dict["params"] = "yes";
test_no_response(in_dict);
}
TEST_CASE("[JSONRPC] process_action notification bad method") {
Dictionary in_dict;
in_dict["method"] = "nothing";
test_no_response(in_dict);
}
TEST_CASE("[JSONRPC] process_action notification batch") {
Array in;
Dictionary in_1;
in_1["method"] = "something";
in_1["params"] = "more";
in.push_back(in_1);
Dictionary in_2;
in_2["method"] = "something";
in_2["params"] = "yes";
in.push_back(in_2);
test_no_response(in);
}
TEST_CASE("[JSONRPC] mixed batch") {
Array in;
Dictionary in_1;
in_1["method"] = "something";
in_1["id"] = 1;
in_1["params"] = "more";
in.push_back(in_1);
Dictionary in_2;
in_2["method"] = "something";
in_2["id"] = 2;
in_2["params"] = "yes";
in.push_back(in_2);
Dictionary in_3;
in_3["method"] = "something";
in_3["params"] = "yes";
in.push_back(in_3);
Array expected;
Dictionary expected_1;
expected_1["jsonrpc"] = "2.0";
expected_1["id"] = 1;
expected_1["result"] = "more, please";
expected.push_back(expected_1);
Dictionary expected_2;
expected_2["jsonrpc"] = "2.0";
expected_2["id"] = 2;
expected_2["result"] = "yes, please";
expected.push_back(expected_2);
test_process_action(in, expected, true);
}
} // namespace TestJSONRPC