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 : #include <string>
39 : #include <chrono>
40 :
41 : #include <nghttp2/asio_http2_server.h>
42 : #include <nlohmann/json.hpp>
43 :
44 : #include <DataPart.hpp>
45 :
46 :
47 : namespace h2agent
48 : {
49 : namespace model
50 : {
51 :
52 :
53 : class MockEvent
54 : {
55 : std::string previous_state_{};
56 : std::string state_{};
57 : std::uint64_t reception_timestamp_us_{};
58 : unsigned int response_status_code_{};
59 : nghttp2::asio_http2::header_map request_headers_{};
60 : nghttp2::asio_http2::header_map response_headers_{};
61 :
62 : protected:
63 :
64 : nlohmann::json json_{}; // kept synchronized on load()
65 :
66 : public:
67 :
68 264 : MockEvent() {;}
69 :
70 : // setters:
71 :
72 : /**
73 : * Loads event information
74 : *
75 : * @param previousState Previous request state
76 : * @param state Request state
77 : * @param receptionTimestampUs Microseconds reception timestamp
78 : * @param responseStatusCode Response status code
79 : * @param requestHeaders Request headers
80 : * @param responseHeaders Response headers
81 : */
82 : void load(const std::string &previousState, const std::string &state, const std::chrono::microseconds &receptionTimestampUs, int responseStatusCode, const nghttp2::asio_http2::header_map &requestHeaders, const nghttp2::asio_http2::header_map &responseHeaders);
83 :
84 : // getters:
85 :
86 : /** Request state
87 : *
88 : * @return current state
89 : */
90 15 : const std::string &getState() const {
91 15 : return state_;
92 : }
93 :
94 : /** Request headers
95 : *
96 : * @return Request headers
97 : */
98 6 : const nghttp2::asio_http2::header_map &getRequestHeaders() const {
99 6 : return request_headers_;
100 : }
101 :
102 : /** Response headers
103 : *
104 : * @return Response headers
105 : */
106 6 : const nghttp2::asio_http2::header_map &getResponseHeaders() const {
107 6 : return response_headers_;
108 : }
109 :
110 : /**
111 : * Gets json document
112 : *
113 : * @param path within the object to restrict selection (empty by default).
114 : *
115 : * @return Json object
116 : */
117 33 : const nlohmann::json &getJson(const std::string &path = "") const {
118 33 : if (path.empty()) return json_;
119 :
120 2 : nlohmann::json::json_pointer p(path);
121 2 : return json_[p];
122 2 : }
123 : };
124 :
125 : }
126 : }
127 :
|