blob: 0152db8f90e8ab4ee44b083679976d67059a965b [file] [log] [blame]
Harald Welte00a067f2017-09-13 23:27:17 +02001module MGCP_Test {
Harald Weltef07c2862017-11-18 17:16:24 +01002 import from Osmocom_Types all;
Harald Welte00a067f2017-09-13 23:27:17 +02003 import from MGCP_Types all;
Harald Welte3c6ebb92017-09-16 00:56:57 +08004 import from SDP_Types all;
5 import from MGCP_CodecPort all;
6 import from MGCP_CodecPort_CtrlFunct all;
Harald Weltef07c2862017-11-18 17:16:24 +01007 import from RTP_CodecPort all;
8 import from RTP_CodecPort_CtrlFunct all;
9 import from RTP_Endpoint all;
Harald Welte3c6ebb92017-09-16 00:56:57 +080010 import from IPL4asp_Types all;
Harald Welte00a067f2017-09-13 23:27:17 +020011
Harald Welte21ba5572017-09-19 17:55:05 +080012 /* any variables declared in the component will be available to
13 * all functions that 'run on' the named component, similar to
14 * class members in C++ */
Harald Welte00a067f2017-09-13 23:27:17 +020015 type component dummy_CT {
Harald Welte3c6ebb92017-09-16 00:56:57 +080016 port MGCP_CODEC_PT MGCP;
Harald Weltef07c2862017-11-18 17:16:24 +010017 port RTP_CODEC_PT RTP;
Harald Welte3c6ebb92017-09-16 00:56:57 +080018 var boolean initialized := false;
Harald Welte55015362017-11-18 16:02:42 +010019 var ConnectionId g_mgcp_conn_id := -1;
Harald Weltee1e18c52017-09-17 16:23:07 +080020 var integer g_trans_id;
Harald Weltef07c2862017-11-18 17:16:24 +010021
22 var RtpEndpoint g_rtp_ep[2];
Harald Welte00a067f2017-09-13 23:27:17 +020023 };
24
Harald Weltee1e18c52017-09-17 16:23:07 +080025 function get_next_trans_id() runs on dummy_CT return MgcpTransId {
26 var MgcpTransId tid := int2str(g_trans_id);
27 g_trans_id := g_trans_id + 1;
28 return tid;
29 }
30
Harald Welte21ba5572017-09-19 17:55:05 +080031 /* all parameters declared here can be modified / overridden by
32 * the config file in the [MODULE_PARAMETERS] section. If no
33 * config file is used or the file doesn't specify them, the
34 * default values assigned below are used */
Harald Welte3c6ebb92017-09-16 00:56:57 +080035 modulepar {
36 PortNumber mp_local_udp_port := 2727;
37 charstring mp_local_ip := "127.0.0.1";
38 PortNumber mp_remote_udp_port := 2427;
39 charstring mp_remote_ip := "127.0.0.1";
Harald Weltef07c2862017-11-18 17:16:24 +010040 PortNumber mp_local_rtp_port_base := 10000;
Harald Welte3c6ebb92017-09-16 00:56:57 +080041 }
42
Harald Welte21ba5572017-09-19 17:55:05 +080043 /* initialization function, called by each test case at the
44 * beginning, but 'initialized' variable ensures its body is
45 * only executed once */
Harald Welteedc45c12017-11-18 19:15:05 +010046 private function f_init(template MgcpEndpoint ep := omit) runs on dummy_CT {
Harald Welte3c6ebb92017-09-16 00:56:57 +080047 var Result res;
Harald Weltef07c2862017-11-18 17:16:24 +010048 var uint32_t ssrc;
Harald Welteedc45c12017-11-18 19:15:05 +010049 if (initialized == false) {
50 initialized := true;
51
52 /* some random number for the initial transaction id */
53 g_trans_id := float2int(rnd()*65535.0);
54 map(self:MGCP, system:MGCP_CODEC_PT);
55 /* connect the MGCP test port using the given
56 * source/destionation ip/port and store the connection id in g_mgcp_conn_id
57 * */
58 res := MGCP_CodecPort_CtrlFunct.f_IPL4_connect(MGCP, mp_remote_ip, mp_remote_udp_port, mp_local_ip, mp_local_udp_port, 0, { udp := {} });
59 g_mgcp_conn_id := res.connId;
60
61 map(self:RTP, system:RTP_CODEC_PT);
62 ssrc := float2int(rnd()*4294967296.0);
63 rtp_endpoint_init(g_rtp_ep[0], mp_local_ip, mp_local_rtp_port_base, ssrc);
64 rtp_endpoint_bind(RTP, g_rtp_ep[0]);
65 rtp_endpoint_init(g_rtp_ep[1], mp_local_ip, mp_local_rtp_port_base+2, ssrc);
66 rtp_endpoint_bind(RTP, g_rtp_ep[1]);
Harald Welte3c6ebb92017-09-16 00:56:57 +080067 }
Harald Welte3c6ebb92017-09-16 00:56:57 +080068
Harald Welteedc45c12017-11-18 19:15:05 +010069 if (isvalue(ep)) {
70 /* do a DLCX on all connections of the EP */
71 f_dlcx_ignore(valueof(ep));
72 }
Harald Welte3c6ebb92017-09-16 00:56:57 +080073 }
74
Harald Welte8d2fbb42017-11-18 20:34:21 +010075 function f_mgcp_par_append(inout template MgcpParameterList list, template MgcpParameter par) {
76 var integer len := lengthof(list);
77 list[len] := par;
78 }
79
Harald Welte3c6ebb92017-09-16 00:56:57 +080080 /* 3.2.2.6 Connection Mode (sendonly, recvonly, sendrecv, confrnce, inactive, loopback,
81 * conttest, netwloop, netwtest) */
82 template MgcpParameter t_MgcpParConnMode(template MgcpConnectionMode mode) := { "M", mode };
83
84 /* 3.2.2.2 CallId: maximum 32 hex chars */
85 template MgcpParameter ts_MgcpParCallId(MgcpCallId cid) := {
86 code := "C",
87 val := hex2str(cid)
88 };
89
90 /* 3.2.2.18 RequestIdentifier: Maximum 32 hex chars */
91 template MgcpParameter ts_MgcpParReqId(MgcpRequestId rid) := {
92 code := "X",
93 val := hex2str(rid)
94 };
95
96 /* 3.2.2.10: LocalConnectionOptions (codec, packetization, bandwidth, ToS, eco, gain, silence, ...) */
97 template MgcpParameter t_MgcpParLocConnOpt(template charstring lco) := { "L", lco };
98
99 /* 3.2.2.5: ConnectionId: maximum 32 hex chars */
100 template MgcpParameter ts_MgcpParConnectionId(MgcpConnectionId cid) := {
101 code := "I",
102 val := hex2str(cid)
103 };
104
105 /* osmo-bsc_mgcp implements L/C/M/X only, osmo-mgw adds 'I' */
106 /* SDP: osmo-bsc_mgcp implements Tx of v,o,s,c,t,m,a */
107
Harald Weltee636afd2017-09-17 16:24:09 +0800108 template MgcpResponse tr_MgcpResp_Err(template MgcpResponseCode code) := {
109 line := {
110 code := code,
111 trans_id := ?,
112 string := ?
113 },
114 params := {},
115 sdp := omit
116 }
117
Harald Welte3c6ebb92017-09-16 00:56:57 +0800118 template MgcpCommandLine t_MgcpCmdLine(template charstring verb, template MgcpTransId trans_id, template charstring ep) := {
119 verb := verb,
120 trans_id := trans_id,
121 ep := ep,
122 ver := "1.0"
123 };
124
125 template MgcpCommand ts_CRCX(MgcpTransId trans_id, charstring ep, MgcpConnectionMode mode, MgcpCallId call_id, template SDP_Message sdp := omit) := {
126 line := t_MgcpCmdLine("CRCX", trans_id, ep),
127 params := {
128 t_MgcpParConnMode(mode),
129 ts_MgcpParCallId(call_id),
130 //t_MgcpParReqId(omit),
131 t_MgcpParLocConnOpt("p: 20")
132 },
133 sdp := sdp
134 }
135
Harald Welte9988d282017-11-18 19:22:00 +0100136 template MgcpResponse tr_CRCX_ACK := {
137 line := {
138 code := "200",
139 string := "OK"
140 },
141 params:= { { "I", ? }, *},
142 sdp := ?
143 }
144
Harald Weltee636afd2017-09-17 16:24:09 +0800145 template MgcpCommand ts_MDCX(MgcpTransId trans_id, charstring ep, MgcpConnectionMode mode, MgcpCallId call_id, template SDP_Message sdp := omit) := {
146 line := t_MgcpCmdLine("MDCX", trans_id, ep),
147 params := {
148 t_MgcpParConnMode(mode),
149 ts_MgcpParCallId(call_id),
150 //t_MgcpParReqId(omit),
151 t_MgcpParLocConnOpt("p: 20")
152 },
153 sdp := sdp
154 }
155
Harald Weltec40e0c32017-11-18 19:08:22 +0100156 /* have a function that generates a template, rather than a template in order to handle
157 * optional parameters */
158 function ts_DLCX(MgcpTransId trans_id, charstring ep, template MgcpCallId call_id := omit,
159 template MgcpConnectionId conn_id := omit) return template MgcpCommand {
160 var template MgcpCommand cmd;
161 cmd.line := t_MgcpCmdLine("DLCX", trans_id, ep);
162 cmd.params := {};
163 cmd.sdp := omit;
164 if (isvalue(call_id)) {
165 f_mgcp_par_append(cmd.params, ts_MgcpParCallId(valueof(call_id)));
166 if (isvalue(conn_id)) {
167 f_mgcp_par_append(cmd.params, ts_MgcpParConnectionId(valueof(conn_id)));
168 }
169 }
170 return cmd;
Harald Weltee636afd2017-09-17 16:24:09 +0800171 }
172
173 /* SDP Templates */
174 template SDP_Origin ts_SDP_origin(charstring addr, charstring session_id,
175 charstring session_version := "1",
176 charstring addr_type := "IP4",
177 charstring user_name := "-") := {
178 user_name := user_name,
179 session_id := session_id,
180 session_version := session_version,
181 net_type := "IN",
182 addr_type := addr_type,
183 addr := addr
184 }
185
186 template SDP_connection ts_SDP_connection_IP(charstring addr, charstring addr_type := "IP4",
187 template integer ttl := omit,
188 template integer num_of_addr := omit) :={
189 net_type := "IN",
190 addr_type := addr_type,
191 conn_addr := {
192 addr := addr,
193 ttl := ttl,
194 num_of_addr := num_of_addr
195 }
196 }
197
198 template SDP_time ts_SDP_time(charstring beg, charstring end) := {
199 time_field := {
200 start_time := beg,
201 stop_time := end
202 },
203 time_repeat := omit
204 }
205
206 template SDP_media_desc ts_SDP_media_desc(integer port_number, SDP_fmt_list fmts,
207 SDP_attribute_list attributes) := {
208 media_field := {
209 media := "audio",
210 ports := {
211 port_number := port_number,
212 num_of_ports := omit
213 },
214 transport := "ARTP/AVP",
215 fmts := fmts
216 },
217 information := omit,
218 connections := omit,
219 bandwidth := omit,
220 key := omit,
221 attributes := attributes
222 }
223
Harald Welte21ba5572017-09-19 17:55:05 +0800224 /* master template for generating SDP based in template arguments */
Harald Weltee636afd2017-09-17 16:24:09 +0800225 template SDP_Message ts_SDP(charstring local_addr, charstring remote_addr,
226 charstring session_id, charstring session_version,
227 integer rtp_port, SDP_fmt_list fmts,
228 SDP_attribute_list attributes) := {
229 protocol_version := 0,
230 origin := ts_SDP_origin(local_addr, session_id, session_version),
231 session_name := "-",
232 information := omit,
233 uri := omit,
234 emails := omit,
235 phone_numbers := omit,
236 connection := ts_SDP_connection_IP(remote_addr),
237 bandwidth := omit,
238 times := { ts_SDP_time("0","0") },
239 timezone_adjustments := omit,
240 key := omit,
241 attributes := omit,
242 media_list := { ts_SDP_media_desc(rtp_port, fmts, attributes) }
243 }
244
245 template SDP_attribute ts_SDP_rtpmap(integer fmt, charstring val) := {
246 rtpmap := {
247 attr_value := int2str(fmt) & " " & val
248 }
249 }
250 template SDP_attribute ts_SDP_ptime(integer p) := {
251 ptime := {
252 attr_value := int2str(p)
253 }
254 }
255
Harald Welte00a067f2017-09-13 23:27:17 +0200256 testcase TC_selftest() runs on dummy_CT {
257 const charstring c_auep := "AUEP 158663169 ds/e1-1/2@172.16.6.66 MGCP 1.0\r\n";
258 const charstring c_mdcx3 := "MDCX 18983215 1@mgw MGCP 1.0\r\n";
259 const charstring c_mdcx3_ret := "200 18983215 OK\r\n" &
260 "I: 1\n" &
261 "\n" &
262 "v=0\r\n" &
263 "o=- 1 23 IN IP4 0.0.0.0\r\n" &
264 "s=-\r\n" &
265 "c=IN IP4 0.0.0.0\r\n" &
266 "t=0 0\r\n" &
267 "m=audio 0 RTP/AVP 126\r\n" &
268 "a=rtpmap:126 AMR/8000\r\n" &
269 "a=ptime:20\r\n";
270 const charstring c_mdcx4 := "MDCX 18983216 1@mgw MGCP 1.0\r\n" &
271 "M: sendrecv\r" &
272 "C: 2\r\n" &
273 "I: 1\r\n" &
274 "L: p:20, a:AMR, nt:IN\r\n" &
275 "\n" &
276 "v=0\r\n" &
277 "o=- 1 23 IN IP4 0.0.0.0\r\n" &
Harald Welte2871d0b2017-09-14 22:42:12 +0800278 "s=-\r\n" &
Harald Welte00a067f2017-09-13 23:27:17 +0200279 "c=IN IP4 0.0.0.0\r\n" &
280 "t=0 0\r\n" &
281 "m=audio 4441 RTP/AVP 99\r\n" &
282 "a=rtpmap:99 AMR/8000\r\n" &
283 "a=ptime:40\r\n";
Harald Welte3c6ebb92017-09-16 00:56:57 +0800284 const charstring c_crcx510_ret := "510 23 FAIL\r\n"
Harald Welte00a067f2017-09-13 23:27:17 +0200285
286 log(c_auep);
287 log(dec_MgcpCommand(c_auep));
288
289 log(c_mdcx3);
290 log(dec_MgcpCommand(c_mdcx3));
291
292 log(c_mdcx3_ret);
293 log(dec_MgcpResponse(c_mdcx3_ret));
294
295 log(c_mdcx4);
296 log(dec_MgcpCommand(c_mdcx4));
Harald Welte3c6ebb92017-09-16 00:56:57 +0800297
298 log(ts_CRCX("23", "42@mgw", "sendrecv", '1234'H));
299 log(enc_MgcpCommand(valueof(ts_CRCX("23", "42@mgw", "sendrecv", '1234'H))));
300
301 log(c_crcx510_ret);
302 log(dec_MgcpResponse(c_crcx510_ret));
303 log(dec_MgcpMessage(c_crcx510_ret));
304 }
305
Harald Weltee636afd2017-09-17 16:24:09 +0800306 /* CRCX test ideas:
307 * - without mandatory CallId
308 * - without mandatory ConnectionId
309 * - with forbidden parameters (e.g. Capabilities, PackageList, ...
310 * - CRCX with remote session description and without
311 *
312 * general ideas:
313 * - packetization != 20ms
314 * - invalid mode
315 * x unsupported mode (517)
316 * x bidirectional mode before RemoteConnDesc: 527
317 * - invalid codec
318 * - retransmission of same transaction
319 * - unsupported LocalConnectionOptions ("b", "a", "e", "gc", "s", "r", "k", ..)
320 */
321
Harald Welte21ba5572017-09-19 17:55:05 +0800322 /* build a receive template for receiving a MGCP message. You
323 * pass the MGCP response template in, and it will generate an
324 * MGCP_RecvFrom template that can match the primitives arriving on the
325 * MGCP_CodecPort */
Harald Weltee636afd2017-09-17 16:24:09 +0800326 function tr_MGCP_RecvFrom_R(template MgcpResponse resp) runs on dummy_CT return template MGCP_RecvFrom {
327 var template MGCP_RecvFrom mrf := {
Harald Welte55015362017-11-18 16:02:42 +0100328 connId := g_mgcp_conn_id,
Harald Weltee636afd2017-09-17 16:24:09 +0800329 remName := mp_remote_ip,
330 remPort := mp_remote_udp_port,
331 locName := mp_local_ip,
332 locPort := mp_local_udp_port,
333 msg := { response := resp }
334 }
335 return mrf;
336 }
337
338 /* Send a MGCP request + receive a (matching!) response */
339 function mgcp_transceive_mgw(template MgcpCommand cmd, template MgcpResponse resp := ?) runs on dummy_CT return MgcpResponse {
340 var MgcpMessage msg := { command := valueof(cmd) };
341 resp.line.trans_id := cmd.line.trans_id;
342 var template MGCP_RecvFrom mrt := tr_MGCP_RecvFrom_R(resp);
Harald Welte3c6ebb92017-09-16 00:56:57 +0800343 var MGCP_RecvFrom mrf;
344 timer T := 5.0;
345
Harald Welte55015362017-11-18 16:02:42 +0100346 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, msg));
Harald Welte3c6ebb92017-09-16 00:56:57 +0800347 T.start;
348 alt {
Harald Weltee636afd2017-09-17 16:24:09 +0800349 [] MGCP.receive(mrt) -> value mrf { }
350 [] MGCP.receive(tr_MGCP_RecvFrom_R(?)) { setverdict(fail); }
Harald Welte3c6ebb92017-09-16 00:56:57 +0800351 [] MGCP.receive { repeat; }
352 [] T.timeout { setverdict(fail); }
353 }
354 T.stop;
Harald Weltee636afd2017-09-17 16:24:09 +0800355
356 if (isbound(mrf) and isbound(mrf.msg) and ischosen(mrf.msg.response)) {
357 return mrf.msg.response;
358 } else {
359 var MgcpResponse r := { line := { code := "999", trans_id := valueof(cmd.line.trans_id) } };
360 return r;
361 }
Harald Welte00a067f2017-09-13 23:27:17 +0200362 }
363
Harald Welteba62c8c2017-11-18 18:26:49 +0100364 function extract_conn_id(MgcpResponse resp) return MgcpConnectionId {
365 var integer i;
366 for (i := 0; i < lengthof(resp.params); i := i + 1) {
367 var MgcpParameter par := resp.params[i];
368 if (par.code == "I") {
369 return str2hex(par.val);
370 }
371 }
372 setverdict(fail);
373 return '00000000'H;
374 }
375
Harald Welte10889c12017-11-18 19:40:31 +0100376 function f_dlcx(MgcpEndpoint ep, template MgcpResponseCode ret_code, template charstring ret_val,
377 template MgcpCallId call_id := omit,
378 template MgcpConnectionId conn_id := omit) runs on dummy_CT {
Harald Welteba62c8c2017-11-18 18:26:49 +0100379 var template MgcpCommand cmd;
380 var MgcpResponse resp;
381 var template MgcpResponse rtmpl := {
382 line := {
Harald Welte10889c12017-11-18 19:40:31 +0100383 code := ret_code,
384 string := ret_val
Harald Welteba62c8c2017-11-18 18:26:49 +0100385 },
386 params := *,
387 sdp := *
388 };
Harald Weltec40e0c32017-11-18 19:08:22 +0100389 cmd := ts_DLCX(get_next_trans_id(), ep, call_id, conn_id);
Harald Welteba62c8c2017-11-18 18:26:49 +0100390 resp := mgcp_transceive_mgw(cmd, rtmpl);
391 }
392
Harald Welte10889c12017-11-18 19:40:31 +0100393 /* Send DLCX and expect OK response */
394 function f_dlcx_ok(MgcpEndpoint ep, template MgcpCallId call_id := omit,
395 template MgcpConnectionId conn_id := omit) runs on dummy_CT {
396 f_dlcx(ep, "200", "OK", call_id, conn_id);
397 }
398
Harald Welteba62c8c2017-11-18 18:26:49 +0100399 /* Send DLCX and accept any response */
Harald Weltec40e0c32017-11-18 19:08:22 +0100400 function f_dlcx_ignore(MgcpEndpoint ep, template MgcpCallId call_id := omit,
Harald Welteba62c8c2017-11-18 18:26:49 +0100401 template MgcpConnectionId conn_id := omit) runs on dummy_CT {
Harald Welte10889c12017-11-18 19:40:31 +0100402 f_dlcx(ep, ?, *, call_id, conn_id);
Harald Welteba62c8c2017-11-18 18:26:49 +0100403 }
404
Harald Weltee636afd2017-09-17 16:24:09 +0800405 /* test valid CRCX without SDP */
406 testcase TC_crcx() runs on dummy_CT {
407 var template MgcpCommand cmd;
408 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100409 var MgcpEndpoint ep := "2@mgw";
410 var MgcpCallId call_id := '1234'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800411
Harald Welteedc45c12017-11-18 19:15:05 +0100412 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800413
Harald Welteba62c8c2017-11-18 18:26:49 +0100414 /* create the connection on the MGW */
415 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Welte9988d282017-11-18 19:22:00 +0100416 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
Harald Welteba62c8c2017-11-18 18:26:49 +0100417 extract_conn_id(resp);
418
419 /* clean-up */
420 f_dlcx_ok(ep, call_id);
421
Harald Weltee636afd2017-09-17 16:24:09 +0800422 setverdict(pass);
423 }
424
425 /* test CRCX with unsupported mode, expect 517 */
426 testcase TC_crcx_unsupp_mode() runs on dummy_CT {
427 var template MgcpCommand cmd;
428 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100429 var MgcpEndpoint ep := "2@mgw";
430 var MgcpCallId call_id := '1233'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800431 var template MgcpResponse rtmpl := tr_MgcpResp_Err("517");
432
Harald Welteedc45c12017-11-18 19:15:05 +0100433 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800434
Harald Welteba62c8c2017-11-18 18:26:49 +0100435 cmd := ts_CRCX(get_next_trans_id(), ep, "netwtest", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800436 resp := mgcp_transceive_mgw(cmd, rtmpl);
437 setverdict(pass);
438 }
439
Harald Welte21ba5572017-09-19 17:55:05 +0800440 /* test CRCX with early bi-directional mode, expect 527 as
441 * bi-diretional media can only be established once both local and
442 * remote side are specified, see MGCP RFC */
Harald Weltee636afd2017-09-17 16:24:09 +0800443 testcase TC_crcx_early_bidir_mode() runs on dummy_CT {
444 var template MgcpCommand cmd;
445 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100446 var MgcpEndpoint ep := "2@mgw";
447 var MgcpCallId call_id := '1232'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800448 var template MgcpResponse rtmpl := tr_MgcpResp_Err("527");
449
Harald Welteedc45c12017-11-18 19:15:05 +0100450 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800451
Harald Welteba62c8c2017-11-18 18:26:49 +0100452 cmd := ts_CRCX(get_next_trans_id(), ep, "sendrecv", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800453 resp := mgcp_transceive_mgw(cmd, rtmpl);
454 setverdict(pass);
455 }
456
457 /* test CRCX with unsupported Parameters */
458 testcase TC_crcx_unsupp_param() runs on dummy_CT {
459 var template MgcpCommand cmd;
460 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100461 var MgcpEndpoint ep := "2@mgw";
462 var MgcpCallId call_id := '1231'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800463 var template MgcpResponse rtmpl := tr_MgcpResp_Err("539");
464
Harald Welteedc45c12017-11-18 19:15:05 +0100465 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800466
Harald Welteba62c8c2017-11-18 18:26:49 +0100467 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100468 /* osmo-bsc_mgcp/mgw doesn't implement notifications */
469 f_mgcp_par_append(cmd.params, MgcpParameter:{ "N", "foobar" });
470
Harald Weltee636afd2017-09-17 16:24:09 +0800471 resp := mgcp_transceive_mgw(cmd, rtmpl);
472 setverdict(pass);
473 }
474
475 /* test CRCX with missing CallId */
476 testcase TC_crcx_missing_callid() runs on dummy_CT {
477 var template MgcpCommand cmd;
478 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100479 var MgcpEndpoint ep := "2@mgw";
Harald Weltee636afd2017-09-17 16:24:09 +0800480 var template MgcpResponse rtmpl := tr_MgcpResp_Err("400");
481
Harald Welteedc45c12017-11-18 19:15:05 +0100482 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800483
Harald Welteba62c8c2017-11-18 18:26:49 +0100484 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", '1230'H);
Harald Weltee636afd2017-09-17 16:24:09 +0800485 cmd.params := {
486 t_MgcpParConnMode("recvonly"),
487 t_MgcpParLocConnOpt("p:20")
488 }
489 resp := mgcp_transceive_mgw(cmd, rtmpl);
490 setverdict(pass);
Harald Welteba62c8c2017-11-18 18:26:49 +0100491
Harald Weltee636afd2017-09-17 16:24:09 +0800492 }
493
494 /* test CRCX with missing Mode */
495 testcase TC_crcx_missing_mode() runs on dummy_CT {
496 var template MgcpCommand cmd;
497 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100498 var MgcpEndpoint ep := "2@mgw";
499 var MgcpCallId call_id := '1229'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800500 var template MgcpResponse rtmpl := tr_MgcpResp_Err("400");
501
Harald Welteedc45c12017-11-18 19:15:05 +0100502 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800503
Harald Welteba62c8c2017-11-18 18:26:49 +0100504 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800505 cmd.params := {
Harald Welteba62c8c2017-11-18 18:26:49 +0100506 ts_MgcpParCallId(call_id),
Harald Weltee636afd2017-09-17 16:24:09 +0800507 t_MgcpParLocConnOpt("p:20")
508 }
509 resp := mgcp_transceive_mgw(cmd, rtmpl);
510 setverdict(pass);
511 }
512
513 /* test CRCX with unsupported packetization interval */
514 testcase TC_crcx_unsupp_packet_intv() runs on dummy_CT {
515 var template MgcpCommand cmd;
516 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100517 var MgcpEndpoint ep := "2@mgw";
518 var MgcpCallId call_id := '1228'H;
Harald Welte0d198612017-11-18 19:58:31 +0100519 var template MgcpResponse rtmpl := tr_MgcpResp_Err("535");
Harald Weltee636afd2017-09-17 16:24:09 +0800520
Harald Welteedc45c12017-11-18 19:15:05 +0100521 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800522
Harald Welteba62c8c2017-11-18 18:26:49 +0100523 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100524 cmd.params[2] := t_MgcpParLocConnOpt("p:111");
Harald Weltee636afd2017-09-17 16:24:09 +0800525 resp := mgcp_transceive_mgw(cmd, rtmpl);
526 setverdict(pass);
527 }
528
529 /* test CRCX with illegal double presence of local connection option */
530 testcase TC_crcx_illegal_double_lco() runs on dummy_CT {
531 var template MgcpCommand cmd;
532 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100533 var MgcpEndpoint ep := "2@mgw";
534 var MgcpCallId call_id := '1227'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800535 var template MgcpResponse rtmpl := tr_MgcpResp_Err("524");
536
Harald Welteedc45c12017-11-18 19:15:05 +0100537 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800538
Harald Welteba62c8c2017-11-18 18:26:49 +0100539 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100540 /* p:20 is permitted only once and not twice! */
541 cmd.params[2] := t_MgcpParLocConnOpt("p:20, a:AMR, p:20");
Harald Weltee636afd2017-09-17 16:24:09 +0800542 resp := mgcp_transceive_mgw(cmd, rtmpl);
543 setverdict(pass);
544 }
545
546 /* test valid CRCX with valid SDP */
547 testcase TC_crcx_sdp() runs on dummy_CT {
548 var template MgcpCommand cmd;
549 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100550 var MgcpEndpoint ep := "2@mgw";
551 var MgcpCallId call_id := '1226'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800552
Harald Welteedc45c12017-11-18 19:15:05 +0100553 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800554
Harald Welteba62c8c2017-11-18 18:26:49 +0100555 cmd := ts_CRCX(get_next_trans_id(), ep, "sendrecv", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800556 cmd.sdp := ts_SDP("127.0.0.1", "127.0.0.2", "23", "42", 2344, { "98" },
557 { valueof(ts_SDP_rtpmap(98, "AMR/8000")),
558 valueof(ts_SDP_ptime(20)) });
Harald Welte9988d282017-11-18 19:22:00 +0100559 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
Harald Weltee636afd2017-09-17 16:24:09 +0800560 setverdict(pass);
561 }
562
563 /* TODO: various SDP related bits */
564
565
566 /* TODO: CRCX with X-Osmux */
567 /* TODO: double CRCX without force_realloc */
568
569 /* TODO: MDCX (various) */
570
571 /* TODO: MDCX without CRCX first */
572 testcase TC_mdcx_without_crcx() runs on dummy_CT {
573 var template MgcpCommand cmd;
574 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100575 var MgcpEndpoint ep := "3@mgw";
576 var MgcpCallId call_id := '1225'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800577 var template MgcpResponse rtmpl := {
578 line := {
579 /* TODO: accept/enforce better error? */
580 code := "400",
581 string := ?
582 },
583 params:= { },
584 sdp := omit
585 };
586
Harald Welteedc45c12017-11-18 19:15:05 +0100587 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800588
Harald Welteba62c8c2017-11-18 18:26:49 +0100589 cmd := ts_MDCX(get_next_trans_id(), ep, "sendrecv", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800590 cmd.sdp := ts_SDP("127.0.0.1", "127.0.0.2", "23", "42", 2344, { "98" },
591 { valueof(ts_SDP_rtpmap(98, "AMR/8000")),
592 valueof(ts_SDP_ptime(20)) });
593 resp := mgcp_transceive_mgw(cmd, rtmpl);
594 setverdict(pass);
595 }
596
597 /* DLCX without CRCX first */
598 testcase TC_dlcx_without_crcx() runs on dummy_CT {
599 var template MgcpCommand cmd;
600 var MgcpResponse resp;
Harald Welteedc45c12017-11-18 19:15:05 +0100601 var MgcpEndpoint ep := "4@mgw";
Harald Weltee636afd2017-09-17 16:24:09 +0800602 var template MgcpResponse rtmpl := {
603 line := {
604 /* TODO: accept/enforce better error? */
605 code := "400",
606 string := ?
607 },
608 params:= { },
609 sdp := omit
610 };
611
Harald Welteedc45c12017-11-18 19:15:05 +0100612 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800613
Harald Welteedc45c12017-11-18 19:15:05 +0100614 cmd := ts_DLCX(get_next_trans_id(), ep, '41234'H);
Harald Weltee636afd2017-09-17 16:24:09 +0800615 resp := mgcp_transceive_mgw(cmd, rtmpl);
616 setverdict(pass);
617 }
618
Harald Welte79181ff2017-11-18 19:26:11 +0100619 /* Test (valid) CRCX followed by (valid) DLCX containig EP+CallId+ConnId */
620 testcase TC_crcx_and_dlcx_ep_callid_connid() runs on dummy_CT {
621 var template MgcpCommand cmd;
622 var MgcpResponse resp;
623 var MgcpEndpoint ep := "5@mgw";
624 var MgcpCallId call_id := '51234'H;
625
626 f_init(ep);
627
628 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
629 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
630
631 f_dlcx_ok(ep, call_id, extract_conn_id(resp));
632
633 setverdict(pass);
634 }
635
636 /* Test (valid) CRCX followed by (valid) DLCX containing EP+CallId */
637 testcase TC_crcx_and_dlcx_ep_callid() runs on dummy_CT {
Harald Welte5b4c44e2017-09-17 16:35:27 +0800638 var template MgcpCommand cmd;
639 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100640 var MgcpEndpoint ep := "5@mgw";
Harald Welte6d167f82017-11-18 19:41:35 +0100641 var MgcpCallId call_id := '51233'H;
Harald Welte5b4c44e2017-09-17 16:35:27 +0800642
Harald Welteedc45c12017-11-18 19:15:05 +0100643 f_init(ep);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800644
Harald Welteba62c8c2017-11-18 18:26:49 +0100645 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Welte9988d282017-11-18 19:22:00 +0100646 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800647
Harald Welteba62c8c2017-11-18 18:26:49 +0100648 f_dlcx_ok(ep, call_id);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800649
650 setverdict(pass);
651 }
652
Harald Welte79181ff2017-11-18 19:26:11 +0100653 /* Test (valid) CRCX followed by (valid) DLCX containing EP */
654 testcase TC_crcx_and_dlcx_ep() runs on dummy_CT {
655 var template MgcpCommand cmd;
656 var MgcpResponse resp;
657 var MgcpEndpoint ep := "5@mgw";
Harald Welte6d167f82017-11-18 19:41:35 +0100658 var MgcpCallId call_id := '51232'H;
Harald Welte79181ff2017-11-18 19:26:11 +0100659
660 f_init(ep);
661
662 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
663 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
664
665 f_dlcx_ok(ep);
666
667 setverdict(pass);
668 }
669
670
Harald Welte6d167f82017-11-18 19:41:35 +0100671 /* CRCX + DLCX of valid endpoint but invalid call-id */
672 testcase TC_crcx_and_dlcx_ep_callid_inval() runs on dummy_CT {
673 var template MgcpCommand cmd;
674 var MgcpResponse resp;
675 var MgcpEndpoint ep := "5@mgw";
676 var MgcpCallId call_id := '51231'H;
677
678 f_init(ep);
679
680 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
681 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
682
683 f_dlcx(ep, "516", *, 'ffff'H);
684
685 setverdict(pass);
686 }
687
688
689 /* CRCX + DLCX of valid endpoint and call-id but invalid conn-id */
690 testcase TC_crcx_and_dlcx_ep_callid_connid_inval() runs on dummy_CT {
691 var template MgcpCommand cmd;
692 var MgcpResponse resp;
693 var MgcpEndpoint ep := "5@mgw";
694 var MgcpCallId call_id := '51230'H;
695
696 f_init(ep);
697
698 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
699 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
700
701 f_dlcx(ep, "515", *, call_id, 'ffff'H);
702
703 setverdict(pass);
704 }
705
706
Harald Weltee636afd2017-09-17 16:24:09 +0800707 /* TODO: Double-DLCX (retransmission) */
Harald Weltef53f1642017-11-18 19:57:11 +0100708 testcase TC_crcx_and_dlcx_retrans() runs on dummy_CT {
709 var template MgcpCommand cmd;
710 var MgcpResponse resp;
711 var MgcpEndpoint ep := "5@mgw";
712 var MgcpCallId call_id := '51229'H;
713 var template MgcpResponse rtmpl := {
714 line := {
715 code := "200",
716 string := "OK"
717 },
718 params:= { },
719 sdp := omit
720 };
721
722 f_init(ep);
723
724 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
725 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
726
727 cmd := ts_DLCX(get_next_trans_id(), ep, call_id);
728 resp := mgcp_transceive_mgw(cmd, rtmpl);
729 resp := mgcp_transceive_mgw(cmd, rtmpl);
730
731 setverdict(pass);
732 }
733
734
735
Harald Weltee636afd2017-09-17 16:24:09 +0800736 /* TODO: Double-DLCX (no retransmission) */
737
738
739
740 /* TODO: AUEP (various) */
741 /* TODO: RSIP (various) */
742 /* TODO: RQNT (various) */
743 /* TODO: EPCF (various) */
744 /* TODO: AUCX (various) */
745 /* TODO: invalid verb (various) */
746
Harald Welte00a067f2017-09-13 23:27:17 +0200747 control {
748 execute(TC_selftest());
Harald Welte3c6ebb92017-09-16 00:56:57 +0800749 execute(TC_crcx());
Harald Weltee636afd2017-09-17 16:24:09 +0800750 execute(TC_crcx_unsupp_mode());
751 execute(TC_crcx_early_bidir_mode());
752 execute(TC_crcx_unsupp_param());
753 execute(TC_crcx_missing_callid());
754 execute(TC_crcx_missing_mode());
755 execute(TC_crcx_unsupp_packet_intv());
756 execute(TC_crcx_illegal_double_lco());
757 execute(TC_crcx_sdp());
758 execute(TC_mdcx_without_crcx());
759 execute(TC_dlcx_without_crcx());
Harald Welte79181ff2017-11-18 19:26:11 +0100760 execute(TC_crcx_and_dlcx_ep_callid_connid());
761 execute(TC_crcx_and_dlcx_ep_callid());
762 execute(TC_crcx_and_dlcx_ep());
Harald Welte6d167f82017-11-18 19:41:35 +0100763 execute(TC_crcx_and_dlcx_ep_callid_inval());
764 execute(TC_crcx_and_dlcx_ep_callid_connid_inval());
Harald Weltef53f1642017-11-18 19:57:11 +0100765 execute(TC_crcx_and_dlcx_retrans());
Harald Welte00a067f2017-09-13 23:27:17 +0200766 }
767}