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 : #include <ert/tracing/Logger.hpp>
37 :
38 : #include <MockClientEvent.hpp>
39 :
40 :
41 : namespace h2agent
42 : {
43 : namespace model
44 : {
45 :
46 51 : void MockClientEvent::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) {
47 :
48 : // Base class:
49 51 : MockEvent::load(previousState, state, receptionTimestampUs, responseStatusCode, requestHeaders, responseHeaders);
50 :
51 51 : client_provision_id_ = clientProvisionId;
52 51 : sending_timestamp_us_ = sendingTimestampUs.count();
53 51 : request_body_data_part_.assign(std::move(requestBody));
54 51 : request_body_data_part_.decode(requestHeaders);
55 51 : responseBodyDataPart.decode(responseHeaders);
56 51 : response_body_ = responseBodyDataPart.getJson();
57 51 : client_sequence_ = clientSequence;
58 51 : sequence_ = sequence;
59 51 : request_delay_ms_ = requestDelayMs;
60 51 : timeout_ms_ = timeoutMs;
61 :
62 : // Update json_:
63 51 : json_["clientProvisionId"] = client_provision_id_;
64 51 : json_["sendingTimestampUs"] = (std::uint64_t)sending_timestamp_us_;
65 51 : if (!request_body_data_part_.str().empty()) {
66 51 : json_["requestBody"] = request_body_data_part_.getJson();
67 : }
68 51 : if (!response_body_.empty()) {
69 51 : json_["responseBody"] = response_body_;
70 : }
71 51 : json_["clientSequence"] = (std::uint64_t)client_sequence_;
72 51 : json_["sequence"] = (std::uint64_t)sequence_;
73 51 : json_["requestDelayMs"] = (unsigned int)request_delay_ms_;
74 51 : json_["timeoutMs"] = (unsigned int)timeout_ms_;
75 51 : }
76 :
77 : }
78 : }
79 :
|