Line data Source code
1 : /*
2 : ___________________________________________
3 : | _ ___ _ |
4 : | | | |__ \ | | |
5 : | | |__ ) |__ _ __ _ ___ _ __ | |_ |
6 : | | '_ \ / // _` |/ _` |/ _ \ '_ \| __| | HTTP/2 AGENT FOR MOCK TESTING
7 : | | | | |/ /| (_| | (_| | __/ | | | |_ | Version 0.0.z
8 : | |_| |_|____\__,_|\__, |\___|_| |_|\__| | https://github.com/testillano/h2agent
9 : | __/ | |
10 : | |___/ |
11 : |___________________________________________|
12 :
13 : Licensed under the MIT License <http://opensource.org/licenses/MIT>.
14 : SPDX-License-Identifier: MIT
15 : Copyright (c) 2021 Eduardo Ramos
16 :
17 : Permission is hereby granted, free of charge, to any person obtaining a copy
18 : of this software and associated documentation files (the "Software"), to deal
19 : in the Software without restriction, including without limitation the rights
20 : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21 : copies of the Software, and to permit persons to whom the Software is
22 : furnished to do so, subject to the following conditions:
23 :
24 : The above copyright notice and this permission notice shall be included in all
25 : copies or substantial portions of the Software.
26 :
27 : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30 : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31 : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32 : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 : SOFTWARE.
34 : */
35 :
36 : #pragma once
37 :
38 :
39 : #include <MockEvent.hpp>
40 :
41 :
42 : namespace h2agent
43 : {
44 : namespace model
45 : {
46 :
47 :
48 : class MockClientEvent : public MockEvent
49 : {
50 : std::string client_provision_id_{};
51 : std::uint64_t sending_timestamp_us_{};
52 : DataPart request_body_data_part_{};
53 : nlohmann::json response_body_{};
54 : std::uint64_t client_sequence_{};
55 : std::uint64_t sequence_{};
56 : unsigned int request_delay_ms_{};
57 : unsigned int timeout_ms_{};
58 :
59 : public:
60 :
61 51 : MockClientEvent() {;}
62 :
63 : // setters:
64 :
65 : /**
66 : * Loads request information
67 : *
68 : * @param clientProvisionId Client provision id responsible for the event
69 : * @param previousState Previous request state
70 : * @param state Request state
71 : * @param receptionTimestampUs Microseconds reception timestamp
72 : * @param responseStatusCode Response status code
73 : * @param requestHeaders Request headers
74 : * @param responseHeaders Response headers
75 : *
76 : * @param sendingTimestampUs Microseconds sending timestamp
77 : * @param requestBody Request body
78 : * @param responseBodyDataPart Response body
79 : * @param clientSequence Server sequence (1..N)
80 : * @param sequence test sequence (1..N)
81 : * @param requestDelayMs Request delay in milliseconds
82 : * @param timeoutMs Timeout in milliseconds
83 : */
84 : void load(const std::string &clientProvisionId, const std::string &previousState, const std::string &state, const std::chrono::microseconds &sendingTimestampUs, const std::chrono::microseconds &receptionTimestampUs, int responseStatusCode, const nghttp2::asio_http2::header_map &requestHeaders, const nghttp2::asio_http2::header_map &responseHeaders, const std::string &requestBody, DataPart &responseBodyDataPart, std::uint64_t clientSequence, std::uint64_t sequence, unsigned int requestDelayMs, unsigned int timeoutMs);
85 :
86 : // getters:
87 :
88 : /** Response body
89 : *
90 : * @return Response body
91 : */
92 1 : const nlohmann::json &getResponseBody() const {
93 1 : return response_body_;
94 : }
95 : };
96 :
97 : }
98 : }
99 :
|