summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/tests/test_jsonrpcws.hpp
blob: 6cf7932aa0e436fc36ec702e26be6a8100609c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
 * @file test_jsonrpcws.hpp
 * @brief unit tests for LLJSONRPCConnection helpers and dispatch behavior
 */

#ifndef TEST_LLCORE_JSONRPCWS_H_
#define TEST_LLCORE_JSONRPCWS_H_

#include "lljsonrpcws.h"
#include "lltimer.h"

namespace
{
class TestJSONRPCConnection : public LLJSONRPCConnection
{
public:
    TestJSONRPCConnection()
        : LLJSONRPCConnection(LLWebsocketMgr::WSServer::ptr_t(), LLWebsocketMgr::connection_h())
    {
    }

    using LLJSONRPCConnection::processMessage;
    using LLJSONRPCConnection::validateMessage;
    using LLJSONRPCConnection::testInjectPendingRequest;
    using LLJSONRPCConnection::testPendingRequestCount;
    using LLJSONRPCConnection::testSweepTimeouts;
};
}

namespace tut
{
    struct JSONRPCWSTestData
    {
    };

    typedef test_group<JSONRPCWSTestData> JSONRPCWSTestGroupType;
    typedef JSONRPCWSTestGroupType::object JSONRPCWSTestObjectType;
    JSONRPCWSTestGroupType JSONRPCWSTestGroup("LLJSONRPCConnection Tests");

    template<> template<>
    void JSONRPCWSTestObjectType::test<1>()
    {
        set_test_name("makeEnvelope notification omits id");

        LLSD params;
        params["value"] = 42;
        LLSD env = LLJSONRPCConnection::makeEnvelope(LLSD(), "runtime.debug", params, LLSD(), LLSD());

        ensure("jsonrpc field should exist", env.has("jsonrpc"));
        ensure_equals("jsonrpc version", env["jsonrpc"].asString(), "2.0");
        ensure("notification should omit id", !env.has("id"));
        ensure_equals("method", env["method"].asString(), "runtime.debug");
        ensure_equals("param round trip", env["params"]["value"].asInteger(), 42);
    }

    template<> template<>
    void JSONRPCWSTestObjectType::test<2>()
    {
        set_test_name("makeEnvelope response keeps id slot");

        LLSD env = LLJSONRPCConnection::makeEnvelope(LLSD(), std::string(), LLSD(), LLSD("ok"), LLSD());

        ensure("response should include id", env.has("id"));
        ensure("response should not include method", !env.has("method"));
        ensure_equals("result", env["result"].asString(), "ok");
    }

    template<> template<>
    void JSONRPCWSTestObjectType::test<3>()
    {
        set_test_name("validateMessage accepts valid request and rejects invalid params");

        TestJSONRPCConnection conn;

        LLSD valid;
        valid["jsonrpc"] = "2.0";
        valid["method"] = "session.ping";
        LLSD params = LLSD::emptyMap();
        params["timestamp"] = 123;
        valid["params"] = params;
        ensure("valid request should pass", conn.validateMessage(valid, true));

        LLSD invalid = valid;
        invalid["params"] = "not-an-array-or-object";
        ensure("invalid params type should fail", !conn.validateMessage(invalid, true));
    }

    template<> template<>
    void JSONRPCWSTestObjectType::test<4>()
    {
        set_test_name("processMessage dispatches notification handler");

        TestJSONRPCConnection conn;

        bool called = false;
        LLSD seen_id;
        LLSD seen_params;
        conn.registerMethod("runtime.debug",
            [&](const std::string& method, const LLSD& id, const LLSD& params) -> LLSD
            {
                called = true;
                ensure_equals("method propagated", method, "runtime.debug");
                seen_id = id;
                seen_params = params;
                return LLSD();
            });

        LLSD params;
        params["message"] = "hello";
        LLSD notification = LLJSONRPCConnection::makeEnvelope(LLSD(), "runtime.debug", params, LLSD(), LLSD());
        conn.processMessage(notification);

        ensure("handler should be called", called);
        ensure("notification id should be undefined", seen_id.isUndefined());
        ensure_equals("payload should be forwarded", seen_params["message"].asString(), "hello");
    }

    template<> template<>
    void JSONRPCWSTestObjectType::test<5>()
    {
        set_test_name("sweepTimeouts expires overdue callbacks");

        TestJSONRPCConnection conn;

        bool callback_called = false;
        conn.testInjectPendingRequest(
            "req_1",
            LLTimer::getTotalSeconds() - 1.0,
            [&](const LLSD& result, const LLSD& error)
            {
                callback_called = true;
                ensure("timed out result should be undefined", result.isUndefined());
                ensure_equals(
                    "timeout code",
                    error["code"].asInteger(),
                    LLJSONRPCConnection::RPCError::REQUEST_TIMEOUT);
            });

        ensure_equals("pending request should be tracked", conn.testPendingRequestCount(), (size_t)1);
        conn.testSweepTimeouts();
        ensure("timeout callback should be called", callback_called);
        ensure_equals("pending request should be removed", conn.testPendingRequestCount(), (size_t)0);
    }
}

#endif