blob: d26cce5e7a6bd29f9fe584b4111338e616b54677 [file] [log] [blame]
Harald Welte55e879c2021-02-19 13:16:28 +01001module HTTP_Adapter {
2
3/* HTTP Adapter component, originally part of Integration Tests for osmo-remsim-server
4 * (C) 2019 by Harald Welte <laforge@gnumonks.org>
5 * All rights reserved.
6 *
7 * Released under the terms of GNU General Public License, Version 2 or
8 * (at your option) any later version.
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 *
12 * This test suite tests osmo-remsim-server by attaching to the external interfaces
13 * such as RSPRO for simulated clients + bankds and RSRES (REST backend interface).
14 */
15
16import from HTTPmsg_Types all;
17import from HTTPmsg_PortType all;
Philipp Maier6406e6d2024-03-26 13:37:11 +010018import from Native_Functions all;
Harald Welte55e879c2021-02-19 13:16:28 +010019
20type component http_CT {
21 port HTTPmsg_PT HTTP;
Philipp Maier260f7082024-04-19 13:12:49 +020022 var HTTP_Adapter_Params g_pars;
Harald Welte55e879c2021-02-19 13:16:28 +010023};
24
Philipp Maier260f7082024-04-19 13:12:49 +020025type record HTTP_Adapter_Params {
26 charstring http_host,
Philipp Maier832b1ef2024-03-26 17:12:37 +010027 integer http_port,
28 boolean use_ssl
Philipp Maier260f7082024-04-19 13:12:49 +020029};
30
31function f_http_init(HTTP_Adapter_Params pars) runs on http_CT {
Harald Welte55e879c2021-02-19 13:16:28 +010032 map(self:HTTP, system:HTTP);
Philipp Maier260f7082024-04-19 13:12:49 +020033 g_pars := pars;
Harald Welte55e879c2021-02-19 13:16:28 +010034}
35
36template (value) Connect ts_HTTP_Connect(template (value) charstring hostname,
37 template (value) integer http_port := 80,
38 template (value) boolean use_ssl := false) := {
39 hostname := hostname,
40 portnumber := http_port,
41 use_ssl := use_ssl
42}
43template (value) Close ts_HTTP_Close := { client_id := omit };
44
Philipp Maier6406e6d2024-03-26 13:37:11 +010045/* function to add HeaderLines to a an existing set of HeaderLines. HeaderLines that are already present, are updated. */
46function f_overlay_HTTP_Header(HeaderLines hdr, HeaderLines additional_hdr) return template (value) HeaderLines
47{
48 var integer i;
49 var integer k;
50 var boolean updated;
51
52 for (i := 0; i < lengthof(additional_hdr); i := i+1) {
53 updated := false;
54 for (k := 0; k < lengthof(hdr); k := k+1) {
55 if (f_str_tolower(hdr[k].header_name) == f_str_tolower(additional_hdr[i].header_name)) {
56 hdr[k] := additional_hdr[i];
57 updated := true;
58 }
59 }
60 if (updated == false) {
61 hdr := hdr & { additional_hdr[i] };
62 }
63 }
64
65 return hdr;
66}
67
68template (value) HeaderLine ts_HeaderLine(charstring header_name, charstring header_value) := {
69 header_name := header_name,
70 header_value := header_value
71}
72
73function f_ts_HTTP_Header(template (omit) charstring body := omit,
74 template (omit) charstring host := omit,
75 HeaderLines custom_hdr := { })
76return template (value) HeaderLines {
77 var HeaderLines hdr := { };
78
79 /* Build default header */
80 if (not istemplatekind(host, "omit")) {
81 hdr := hdr & {valueof(ts_HeaderLine("Host", valueof(host)))};
82 }
83 hdr := hdr & {{ header_name := "Content-Type", header_value := "application/json" }};
84 if (not istemplatekind(body, "omit")) {
85 hdr := hdr & {valueof(ts_HeaderLine("Content-Length", int2str(lengthof(body))))};
86 }
87
88 return f_overlay_HTTP_Header(hdr, custom_hdr);
Harald Welte55e879c2021-02-19 13:16:28 +010089}
90
Philipp Maieref20fa02024-03-26 15:50:22 +010091function f_ts_body_or_empty(template (omit) charstring body) return template (value) charstring {
92 if (istemplatekind(body, "omit")) {
93 return "";
94 }
95 return body;
96}
97
Harald Welte55e879c2021-02-19 13:16:28 +010098template (value) HTTPMessage ts_HTTP_Req(charstring url,
99 charstring method := "GET",
Philipp Maieref20fa02024-03-26 15:50:22 +0100100 template (omit) charstring body := omit,
Philipp Maier4a19b472024-03-25 15:08:43 +0100101 integer v_maj := 1, integer v_min := 1,
Philipp Maier6406e6d2024-03-26 13:37:11 +0100102 charstring host,
103 HeaderLines custom_hdr := { }) := {
Harald Welte55e879c2021-02-19 13:16:28 +0100104 request := {
105 client_id := omit,
106 method := method,
107 uri := url,
108 version_major := v_maj,
109 version_minor := v_min,
Philipp Maieref20fa02024-03-26 15:50:22 +0100110 header := f_ts_HTTP_Header(body, host, custom_hdr),
111 body := f_ts_body_or_empty(body)
Harald Welte55e879c2021-02-19 13:16:28 +0100112 }
113}
114
115template HTTPMessage tr_HTTP_Resp(template integer sts := ?) := {
116 response := {
117 client_id := ?,
118 version_major := ?,
119 version_minor := ?,
120 statuscode := sts,
121 statustext := ?,
122 header := ?,
123 body := ?
124 }
125};
126
127template HTTPMessage tr_HTTP_Resp2xx := tr_HTTP_Resp((200..299));
128
Philipp Maieref20fa02024-03-26 15:50:22 +0100129function f_http_tx_request(charstring url, charstring method := "GET", template charstring body := omit,
Philipp Maier6406e6d2024-03-26 13:37:11 +0100130 HeaderLines custom_hdr := { })
Harald Welte205b5372021-02-22 09:16:21 +0100131runs on http_CT {
Philipp Maier832b1ef2024-03-26 17:12:37 +0100132 HTTP.send(ts_HTTP_Connect(g_pars.http_host, g_pars.http_port, g_pars.use_ssl));
Harald Welte205b5372021-02-22 09:16:21 +0100133 HTTP.receive(Connect_result:?);
Philipp Maier260f7082024-04-19 13:12:49 +0200134 HTTP.send(ts_HTTP_Req(url, method, body, host := g_pars.http_host & ":" & int2str(g_pars.http_port), custom_hdr := custom_hdr));
Harald Welte205b5372021-02-22 09:16:21 +0100135}
136
137function f_http_rx_response(template HTTPMessage exp := tr_HTTP_Resp2xx, float tout := 2.0)
Harald Welte55e879c2021-02-19 13:16:28 +0100138runs on http_CT return HTTPMessage {
139 var HTTPMessage resp;
Harald Weltead9d8362021-02-22 10:23:00 +0100140 timer T := tout;
Harald Welte55e879c2021-02-19 13:16:28 +0100141 T.start;
142 alt {
143 [] HTTP.receive(exp) -> value resp {
144 setverdict(pass);
145 }
146 [] HTTP.receive(tr_HTTP_Resp) -> value resp {
147 setverdict(fail, "Unexpected HTTP response ", resp);
148 }
149 [] T.timeout {
150 setverdict(fail, "Timeout waiting for HTTP response");
151 self.stop;
152 }
153 }
154 HTTP.send(ts_HTTP_Close);
155 return resp;
156}
157
Harald Welte205b5372021-02-22 09:16:21 +0100158/* run a HTTP request and return the response */
159function f_http_transact(charstring url, charstring method := "GET",
Philipp Maieref20fa02024-03-26 15:50:22 +0100160 template (omit) charstring body := omit, template HTTPMessage exp := tr_HTTP_Resp2xx,
Philipp Maier6406e6d2024-03-26 13:37:11 +0100161 float tout := 2.0, HeaderLines custom_hdr := { })
Harald Welte205b5372021-02-22 09:16:21 +0100162runs on http_CT return HTTPMessage {
Philipp Maier6406e6d2024-03-26 13:37:11 +0100163 f_http_tx_request(url, method, body, custom_hdr);
Harald Welte205b5372021-02-22 09:16:21 +0100164 return f_http_rx_response(exp, tout);
165}
166
Harald Welte55e879c2021-02-19 13:16:28 +0100167}