blob: debe36c6d23e3d72c13b137e217e24e3302ce3a9 [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
75 /* 3.2.2.6 Connection Mode (sendonly, recvonly, sendrecv, confrnce, inactive, loopback,
76 * conttest, netwloop, netwtest) */
77 template MgcpParameter t_MgcpParConnMode(template MgcpConnectionMode mode) := { "M", mode };
78
79 /* 3.2.2.2 CallId: maximum 32 hex chars */
80 template MgcpParameter ts_MgcpParCallId(MgcpCallId cid) := {
81 code := "C",
82 val := hex2str(cid)
83 };
84
85 /* 3.2.2.18 RequestIdentifier: Maximum 32 hex chars */
86 template MgcpParameter ts_MgcpParReqId(MgcpRequestId rid) := {
87 code := "X",
88 val := hex2str(rid)
89 };
90
91 /* 3.2.2.10: LocalConnectionOptions (codec, packetization, bandwidth, ToS, eco, gain, silence, ...) */
92 template MgcpParameter t_MgcpParLocConnOpt(template charstring lco) := { "L", lco };
93
94 /* 3.2.2.5: ConnectionId: maximum 32 hex chars */
95 template MgcpParameter ts_MgcpParConnectionId(MgcpConnectionId cid) := {
96 code := "I",
97 val := hex2str(cid)
98 };
99
100 /* osmo-bsc_mgcp implements L/C/M/X only, osmo-mgw adds 'I' */
101 /* SDP: osmo-bsc_mgcp implements Tx of v,o,s,c,t,m,a */
102
Harald Weltee636afd2017-09-17 16:24:09 +0800103 template MgcpResponse tr_MgcpResp_Err(template MgcpResponseCode code) := {
104 line := {
105 code := code,
106 trans_id := ?,
107 string := ?
108 },
109 params := {},
110 sdp := omit
111 }
112
Harald Welte3c6ebb92017-09-16 00:56:57 +0800113 template MgcpCommandLine t_MgcpCmdLine(template charstring verb, template MgcpTransId trans_id, template charstring ep) := {
114 verb := verb,
115 trans_id := trans_id,
116 ep := ep,
117 ver := "1.0"
118 };
119
120 template MgcpCommand ts_CRCX(MgcpTransId trans_id, charstring ep, MgcpConnectionMode mode, MgcpCallId call_id, template SDP_Message sdp := omit) := {
121 line := t_MgcpCmdLine("CRCX", trans_id, ep),
122 params := {
123 t_MgcpParConnMode(mode),
124 ts_MgcpParCallId(call_id),
125 //t_MgcpParReqId(omit),
126 t_MgcpParLocConnOpt("p: 20")
127 },
128 sdp := sdp
129 }
130
Harald Welte9988d282017-11-18 19:22:00 +0100131 template MgcpResponse tr_CRCX_ACK := {
132 line := {
133 code := "200",
134 string := "OK"
135 },
136 params:= { { "I", ? }, *},
137 sdp := ?
138 }
139
Harald Weltee636afd2017-09-17 16:24:09 +0800140 template MgcpCommand ts_MDCX(MgcpTransId trans_id, charstring ep, MgcpConnectionMode mode, MgcpCallId call_id, template SDP_Message sdp := omit) := {
141 line := t_MgcpCmdLine("MDCX", trans_id, ep),
142 params := {
143 t_MgcpParConnMode(mode),
144 ts_MgcpParCallId(call_id),
145 //t_MgcpParReqId(omit),
146 t_MgcpParLocConnOpt("p: 20")
147 },
148 sdp := sdp
149 }
150
Harald Weltec40e0c32017-11-18 19:08:22 +0100151 /* have a function that generates a template, rather than a template in order to handle
152 * optional parameters */
153 function ts_DLCX(MgcpTransId trans_id, charstring ep, template MgcpCallId call_id := omit,
154 template MgcpConnectionId conn_id := omit) return template MgcpCommand {
155 var template MgcpCommand cmd;
156 cmd.line := t_MgcpCmdLine("DLCX", trans_id, ep);
157 cmd.params := {};
158 cmd.sdp := omit;
159 if (isvalue(call_id)) {
160 f_mgcp_par_append(cmd.params, ts_MgcpParCallId(valueof(call_id)));
161 if (isvalue(conn_id)) {
162 f_mgcp_par_append(cmd.params, ts_MgcpParConnectionId(valueof(conn_id)));
163 }
164 }
165 return cmd;
Harald Weltee636afd2017-09-17 16:24:09 +0800166 }
167
168 /* SDP Templates */
169 template SDP_Origin ts_SDP_origin(charstring addr, charstring session_id,
170 charstring session_version := "1",
171 charstring addr_type := "IP4",
172 charstring user_name := "-") := {
173 user_name := user_name,
174 session_id := session_id,
175 session_version := session_version,
176 net_type := "IN",
177 addr_type := addr_type,
178 addr := addr
179 }
180
181 template SDP_connection ts_SDP_connection_IP(charstring addr, charstring addr_type := "IP4",
182 template integer ttl := omit,
183 template integer num_of_addr := omit) :={
184 net_type := "IN",
185 addr_type := addr_type,
186 conn_addr := {
187 addr := addr,
188 ttl := ttl,
189 num_of_addr := num_of_addr
190 }
191 }
192
193 template SDP_time ts_SDP_time(charstring beg, charstring end) := {
194 time_field := {
195 start_time := beg,
196 stop_time := end
197 },
198 time_repeat := omit
199 }
200
201 template SDP_media_desc ts_SDP_media_desc(integer port_number, SDP_fmt_list fmts,
202 SDP_attribute_list attributes) := {
203 media_field := {
204 media := "audio",
205 ports := {
206 port_number := port_number,
207 num_of_ports := omit
208 },
209 transport := "ARTP/AVP",
210 fmts := fmts
211 },
212 information := omit,
213 connections := omit,
214 bandwidth := omit,
215 key := omit,
216 attributes := attributes
217 }
218
Harald Welte21ba5572017-09-19 17:55:05 +0800219 /* master template for generating SDP based in template arguments */
Harald Weltee636afd2017-09-17 16:24:09 +0800220 template SDP_Message ts_SDP(charstring local_addr, charstring remote_addr,
221 charstring session_id, charstring session_version,
222 integer rtp_port, SDP_fmt_list fmts,
223 SDP_attribute_list attributes) := {
224 protocol_version := 0,
225 origin := ts_SDP_origin(local_addr, session_id, session_version),
226 session_name := "-",
227 information := omit,
228 uri := omit,
229 emails := omit,
230 phone_numbers := omit,
231 connection := ts_SDP_connection_IP(remote_addr),
232 bandwidth := omit,
233 times := { ts_SDP_time("0","0") },
234 timezone_adjustments := omit,
235 key := omit,
236 attributes := omit,
237 media_list := { ts_SDP_media_desc(rtp_port, fmts, attributes) }
238 }
239
240 template SDP_attribute ts_SDP_rtpmap(integer fmt, charstring val) := {
241 rtpmap := {
242 attr_value := int2str(fmt) & " " & val
243 }
244 }
245 template SDP_attribute ts_SDP_ptime(integer p) := {
246 ptime := {
247 attr_value := int2str(p)
248 }
249 }
250
Harald Welte00a067f2017-09-13 23:27:17 +0200251 testcase TC_selftest() runs on dummy_CT {
252 const charstring c_auep := "AUEP 158663169 ds/e1-1/2@172.16.6.66 MGCP 1.0\r\n";
253 const charstring c_mdcx3 := "MDCX 18983215 1@mgw MGCP 1.0\r\n";
254 const charstring c_mdcx3_ret := "200 18983215 OK\r\n" &
255 "I: 1\n" &
256 "\n" &
257 "v=0\r\n" &
258 "o=- 1 23 IN IP4 0.0.0.0\r\n" &
259 "s=-\r\n" &
260 "c=IN IP4 0.0.0.0\r\n" &
261 "t=0 0\r\n" &
262 "m=audio 0 RTP/AVP 126\r\n" &
263 "a=rtpmap:126 AMR/8000\r\n" &
264 "a=ptime:20\r\n";
265 const charstring c_mdcx4 := "MDCX 18983216 1@mgw MGCP 1.0\r\n" &
266 "M: sendrecv\r" &
267 "C: 2\r\n" &
268 "I: 1\r\n" &
269 "L: p:20, a:AMR, nt:IN\r\n" &
270 "\n" &
271 "v=0\r\n" &
272 "o=- 1 23 IN IP4 0.0.0.0\r\n" &
Harald Welte2871d0b2017-09-14 22:42:12 +0800273 "s=-\r\n" &
Harald Welte00a067f2017-09-13 23:27:17 +0200274 "c=IN IP4 0.0.0.0\r\n" &
275 "t=0 0\r\n" &
276 "m=audio 4441 RTP/AVP 99\r\n" &
277 "a=rtpmap:99 AMR/8000\r\n" &
278 "a=ptime:40\r\n";
Harald Welte3c6ebb92017-09-16 00:56:57 +0800279 const charstring c_crcx510_ret := "510 23 FAIL\r\n"
Harald Welte00a067f2017-09-13 23:27:17 +0200280
281 log(c_auep);
282 log(dec_MgcpCommand(c_auep));
283
284 log(c_mdcx3);
285 log(dec_MgcpCommand(c_mdcx3));
286
287 log(c_mdcx3_ret);
288 log(dec_MgcpResponse(c_mdcx3_ret));
289
290 log(c_mdcx4);
291 log(dec_MgcpCommand(c_mdcx4));
Harald Welte3c6ebb92017-09-16 00:56:57 +0800292
293 log(ts_CRCX("23", "42@mgw", "sendrecv", '1234'H));
294 log(enc_MgcpCommand(valueof(ts_CRCX("23", "42@mgw", "sendrecv", '1234'H))));
295
296 log(c_crcx510_ret);
297 log(dec_MgcpResponse(c_crcx510_ret));
298 log(dec_MgcpMessage(c_crcx510_ret));
299 }
300
Harald Weltee636afd2017-09-17 16:24:09 +0800301 /* CRCX test ideas:
302 * - without mandatory CallId
303 * - without mandatory ConnectionId
304 * - with forbidden parameters (e.g. Capabilities, PackageList, ...
305 * - CRCX with remote session description and without
306 *
307 * general ideas:
308 * - packetization != 20ms
309 * - invalid mode
310 * x unsupported mode (517)
311 * x bidirectional mode before RemoteConnDesc: 527
312 * - invalid codec
313 * - retransmission of same transaction
314 * - unsupported LocalConnectionOptions ("b", "a", "e", "gc", "s", "r", "k", ..)
315 */
316
Harald Welte21ba5572017-09-19 17:55:05 +0800317 /* build a receive template for receiving a MGCP message. You
318 * pass the MGCP response template in, and it will generate an
319 * MGCP_RecvFrom template that can match the primitives arriving on the
320 * MGCP_CodecPort */
Harald Weltee636afd2017-09-17 16:24:09 +0800321 function tr_MGCP_RecvFrom_R(template MgcpResponse resp) runs on dummy_CT return template MGCP_RecvFrom {
322 var template MGCP_RecvFrom mrf := {
Harald Welte55015362017-11-18 16:02:42 +0100323 connId := g_mgcp_conn_id,
Harald Weltee636afd2017-09-17 16:24:09 +0800324 remName := mp_remote_ip,
325 remPort := mp_remote_udp_port,
326 locName := mp_local_ip,
327 locPort := mp_local_udp_port,
328 msg := { response := resp }
329 }
330 return mrf;
331 }
332
333 /* Send a MGCP request + receive a (matching!) response */
334 function mgcp_transceive_mgw(template MgcpCommand cmd, template MgcpResponse resp := ?) runs on dummy_CT return MgcpResponse {
335 var MgcpMessage msg := { command := valueof(cmd) };
336 resp.line.trans_id := cmd.line.trans_id;
337 var template MGCP_RecvFrom mrt := tr_MGCP_RecvFrom_R(resp);
Harald Welte3c6ebb92017-09-16 00:56:57 +0800338 var MGCP_RecvFrom mrf;
339 timer T := 5.0;
340
Harald Welte55015362017-11-18 16:02:42 +0100341 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, msg));
Harald Welte3c6ebb92017-09-16 00:56:57 +0800342 T.start;
343 alt {
Harald Weltee636afd2017-09-17 16:24:09 +0800344 [] MGCP.receive(mrt) -> value mrf { }
345 [] MGCP.receive(tr_MGCP_RecvFrom_R(?)) { setverdict(fail); }
Harald Welte3c6ebb92017-09-16 00:56:57 +0800346 [] MGCP.receive { repeat; }
347 [] T.timeout { setverdict(fail); }
348 }
349 T.stop;
Harald Weltee636afd2017-09-17 16:24:09 +0800350
351 if (isbound(mrf) and isbound(mrf.msg) and ischosen(mrf.msg.response)) {
352 return mrf.msg.response;
353 } else {
354 var MgcpResponse r := { line := { code := "999", trans_id := valueof(cmd.line.trans_id) } };
355 return r;
356 }
Harald Welte00a067f2017-09-13 23:27:17 +0200357 }
358
Harald Welteba62c8c2017-11-18 18:26:49 +0100359 function extract_conn_id(MgcpResponse resp) return MgcpConnectionId {
360 var integer i;
361 for (i := 0; i < lengthof(resp.params); i := i + 1) {
362 var MgcpParameter par := resp.params[i];
363 if (par.code == "I") {
364 return str2hex(par.val);
365 }
366 }
367 setverdict(fail);
368 return '00000000'H;
369 }
370
371 /* Send DLCX and expect OK response */
Harald Weltec40e0c32017-11-18 19:08:22 +0100372 function f_dlcx_ok(MgcpEndpoint ep, template MgcpCallId call_id := omit,
Harald Welteba62c8c2017-11-18 18:26:49 +0100373 template MgcpConnectionId conn_id := omit) runs on dummy_CT {
374 var template MgcpCommand cmd;
375 var MgcpResponse resp;
376 var template MgcpResponse rtmpl := {
377 line := {
378 code := "200",
379 string := "OK"
380 },
381 params := *,
382 sdp := *
383 };
Harald Weltec40e0c32017-11-18 19:08:22 +0100384 cmd := ts_DLCX(get_next_trans_id(), ep, call_id, conn_id);
Harald Welteba62c8c2017-11-18 18:26:49 +0100385 resp := mgcp_transceive_mgw(cmd, rtmpl);
386 }
387
388 /* Send DLCX and accept any response */
Harald Weltec40e0c32017-11-18 19:08:22 +0100389 function f_dlcx_ignore(MgcpEndpoint ep, template MgcpCallId call_id := omit,
Harald Welteba62c8c2017-11-18 18:26:49 +0100390 template MgcpConnectionId conn_id := omit) runs on dummy_CT {
391 var template MgcpCommand cmd;
392 var MgcpResponse resp;
393 var template MgcpResponse rtmpl := {
394 line := {
395 code := ?,
396 string := ?
397 },
398 params := *,
399 sdp := *
400 };
Harald Weltec40e0c32017-11-18 19:08:22 +0100401 cmd := ts_DLCX(get_next_trans_id(), ep, call_id, conn_id);
Harald Welteba62c8c2017-11-18 18:26:49 +0100402 resp := mgcp_transceive_mgw(cmd, rtmpl);
403 }
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
Harald Weltea01e38d2017-11-18 18:40:01 +0100457 function f_mgcp_par_append(inout template MgcpParameterList list, template MgcpParameter par) {
458 var integer len := lengthof(list);
459 list[len] := par;
460 }
461
Harald Weltee636afd2017-09-17 16:24:09 +0800462 /* test CRCX with unsupported Parameters */
463 testcase TC_crcx_unsupp_param() runs on dummy_CT {
464 var template MgcpCommand cmd;
465 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100466 var MgcpEndpoint ep := "2@mgw";
467 var MgcpCallId call_id := '1231'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800468 var template MgcpResponse rtmpl := tr_MgcpResp_Err("539");
469
Harald Welteedc45c12017-11-18 19:15:05 +0100470 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800471
Harald Welteba62c8c2017-11-18 18:26:49 +0100472 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100473 /* osmo-bsc_mgcp/mgw doesn't implement notifications */
474 f_mgcp_par_append(cmd.params, MgcpParameter:{ "N", "foobar" });
475
Harald Weltee636afd2017-09-17 16:24:09 +0800476 resp := mgcp_transceive_mgw(cmd, rtmpl);
477 setverdict(pass);
478 }
479
480 /* test CRCX with missing CallId */
481 testcase TC_crcx_missing_callid() runs on dummy_CT {
482 var template MgcpCommand cmd;
483 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100484 var MgcpEndpoint ep := "2@mgw";
Harald Weltee636afd2017-09-17 16:24:09 +0800485 var template MgcpResponse rtmpl := tr_MgcpResp_Err("400");
486
Harald Welteedc45c12017-11-18 19:15:05 +0100487 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800488
Harald Welteba62c8c2017-11-18 18:26:49 +0100489 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", '1230'H);
Harald Weltee636afd2017-09-17 16:24:09 +0800490 cmd.params := {
491 t_MgcpParConnMode("recvonly"),
492 t_MgcpParLocConnOpt("p:20")
493 }
494 resp := mgcp_transceive_mgw(cmd, rtmpl);
495 setverdict(pass);
Harald Welteba62c8c2017-11-18 18:26:49 +0100496
Harald Weltee636afd2017-09-17 16:24:09 +0800497 }
498
499 /* test CRCX with missing Mode */
500 testcase TC_crcx_missing_mode() runs on dummy_CT {
501 var template MgcpCommand cmd;
502 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100503 var MgcpEndpoint ep := "2@mgw";
504 var MgcpCallId call_id := '1229'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800505 var template MgcpResponse rtmpl := tr_MgcpResp_Err("400");
506
Harald Welteedc45c12017-11-18 19:15:05 +0100507 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800508
Harald Welteba62c8c2017-11-18 18:26:49 +0100509 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800510 cmd.params := {
Harald Welteba62c8c2017-11-18 18:26:49 +0100511 ts_MgcpParCallId(call_id),
Harald Weltee636afd2017-09-17 16:24:09 +0800512 t_MgcpParLocConnOpt("p:20")
513 }
514 resp := mgcp_transceive_mgw(cmd, rtmpl);
515 setverdict(pass);
516 }
517
518 /* test CRCX with unsupported packetization interval */
519 testcase TC_crcx_unsupp_packet_intv() runs on dummy_CT {
520 var template MgcpCommand cmd;
521 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100522 var MgcpEndpoint ep := "2@mgw";
523 var MgcpCallId call_id := '1228'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800524 var template MgcpResponse rtmpl := tr_MgcpResp_Err("532");
525
Harald Welteedc45c12017-11-18 19:15:05 +0100526 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800527
Harald Welteba62c8c2017-11-18 18:26:49 +0100528 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100529 cmd.params[2] := t_MgcpParLocConnOpt("p:111");
Harald Weltee636afd2017-09-17 16:24:09 +0800530 resp := mgcp_transceive_mgw(cmd, rtmpl);
531 setverdict(pass);
532 }
533
534 /* test CRCX with illegal double presence of local connection option */
535 testcase TC_crcx_illegal_double_lco() runs on dummy_CT {
536 var template MgcpCommand cmd;
537 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100538 var MgcpEndpoint ep := "2@mgw";
539 var MgcpCallId call_id := '1227'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800540 var template MgcpResponse rtmpl := tr_MgcpResp_Err("524");
541
Harald Welteedc45c12017-11-18 19:15:05 +0100542 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800543
Harald Welteba62c8c2017-11-18 18:26:49 +0100544 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Weltea01e38d2017-11-18 18:40:01 +0100545 /* p:20 is permitted only once and not twice! */
546 cmd.params[2] := t_MgcpParLocConnOpt("p:20, a:AMR, p:20");
Harald Weltee636afd2017-09-17 16:24:09 +0800547 resp := mgcp_transceive_mgw(cmd, rtmpl);
548 setverdict(pass);
549 }
550
551 /* test valid CRCX with valid SDP */
552 testcase TC_crcx_sdp() runs on dummy_CT {
553 var template MgcpCommand cmd;
554 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100555 var MgcpEndpoint ep := "2@mgw";
556 var MgcpCallId call_id := '1226'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800557
Harald Welteedc45c12017-11-18 19:15:05 +0100558 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800559
Harald Welteba62c8c2017-11-18 18:26:49 +0100560 cmd := ts_CRCX(get_next_trans_id(), ep, "sendrecv", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800561 cmd.sdp := ts_SDP("127.0.0.1", "127.0.0.2", "23", "42", 2344, { "98" },
562 { valueof(ts_SDP_rtpmap(98, "AMR/8000")),
563 valueof(ts_SDP_ptime(20)) });
Harald Welte9988d282017-11-18 19:22:00 +0100564 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
Harald Weltee636afd2017-09-17 16:24:09 +0800565 setverdict(pass);
566 }
567
568 /* TODO: various SDP related bits */
569
570
571 /* TODO: CRCX with X-Osmux */
572 /* TODO: double CRCX without force_realloc */
573
574 /* TODO: MDCX (various) */
575
576 /* TODO: MDCX without CRCX first */
577 testcase TC_mdcx_without_crcx() runs on dummy_CT {
578 var template MgcpCommand cmd;
579 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100580 var MgcpEndpoint ep := "3@mgw";
581 var MgcpCallId call_id := '1225'H;
Harald Weltee636afd2017-09-17 16:24:09 +0800582 var template MgcpResponse rtmpl := {
583 line := {
584 /* TODO: accept/enforce better error? */
585 code := "400",
586 string := ?
587 },
588 params:= { },
589 sdp := omit
590 };
591
Harald Welteedc45c12017-11-18 19:15:05 +0100592 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800593
Harald Welteba62c8c2017-11-18 18:26:49 +0100594 cmd := ts_MDCX(get_next_trans_id(), ep, "sendrecv", call_id);
Harald Weltee636afd2017-09-17 16:24:09 +0800595 cmd.sdp := ts_SDP("127.0.0.1", "127.0.0.2", "23", "42", 2344, { "98" },
596 { valueof(ts_SDP_rtpmap(98, "AMR/8000")),
597 valueof(ts_SDP_ptime(20)) });
598 resp := mgcp_transceive_mgw(cmd, rtmpl);
599 setverdict(pass);
600 }
601
602 /* DLCX without CRCX first */
603 testcase TC_dlcx_without_crcx() runs on dummy_CT {
604 var template MgcpCommand cmd;
605 var MgcpResponse resp;
Harald Welteedc45c12017-11-18 19:15:05 +0100606 var MgcpEndpoint ep := "4@mgw";
Harald Weltee636afd2017-09-17 16:24:09 +0800607 var template MgcpResponse rtmpl := {
608 line := {
609 /* TODO: accept/enforce better error? */
610 code := "400",
611 string := ?
612 },
613 params:= { },
614 sdp := omit
615 };
616
Harald Welteedc45c12017-11-18 19:15:05 +0100617 f_init(ep);
Harald Weltee636afd2017-09-17 16:24:09 +0800618
Harald Welteedc45c12017-11-18 19:15:05 +0100619 cmd := ts_DLCX(get_next_trans_id(), ep, '41234'H);
Harald Weltee636afd2017-09-17 16:24:09 +0800620 resp := mgcp_transceive_mgw(cmd, rtmpl);
621 setverdict(pass);
622 }
623
Harald Welte21ba5572017-09-19 17:55:05 +0800624 /* Test (valid) CRCX followed by (valid) DLCX */
Harald Welte5b4c44e2017-09-17 16:35:27 +0800625 testcase TC_crcx_and_dlcx() runs on dummy_CT {
626 var template MgcpCommand cmd;
627 var MgcpResponse resp;
Harald Welteba62c8c2017-11-18 18:26:49 +0100628 var MgcpEndpoint ep := "5@mgw";
629 var MgcpCallId call_id := '51234'H;
Harald Welte5b4c44e2017-09-17 16:35:27 +0800630
Harald Welteedc45c12017-11-18 19:15:05 +0100631 f_init(ep);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800632
Harald Welteba62c8c2017-11-18 18:26:49 +0100633 cmd := ts_CRCX(get_next_trans_id(), ep, "recvonly", call_id);
Harald Welte9988d282017-11-18 19:22:00 +0100634 resp := mgcp_transceive_mgw(cmd, tr_CRCX_ACK);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800635
Harald Welteba62c8c2017-11-18 18:26:49 +0100636 f_dlcx_ok(ep, call_id);
Harald Welte5b4c44e2017-09-17 16:35:27 +0800637
638 setverdict(pass);
639 }
640
Harald Weltee636afd2017-09-17 16:24:09 +0800641 /* TODO: DLCX of valid endpoint but invalid call-id */
642 /* TODO: Double-DLCX (retransmission) */
643 /* TODO: Double-DLCX (no retransmission) */
644
645
646
647 /* TODO: AUEP (various) */
648 /* TODO: RSIP (various) */
649 /* TODO: RQNT (various) */
650 /* TODO: EPCF (various) */
651 /* TODO: AUCX (various) */
652 /* TODO: invalid verb (various) */
653
Harald Welte00a067f2017-09-13 23:27:17 +0200654 control {
655 execute(TC_selftest());
Harald Welte3c6ebb92017-09-16 00:56:57 +0800656 execute(TC_crcx());
Harald Weltee636afd2017-09-17 16:24:09 +0800657 execute(TC_crcx_unsupp_mode());
658 execute(TC_crcx_early_bidir_mode());
659 execute(TC_crcx_unsupp_param());
660 execute(TC_crcx_missing_callid());
661 execute(TC_crcx_missing_mode());
662 execute(TC_crcx_unsupp_packet_intv());
663 execute(TC_crcx_illegal_double_lco());
664 execute(TC_crcx_sdp());
665 execute(TC_mdcx_without_crcx());
666 execute(TC_dlcx_without_crcx());
Harald Welte5b4c44e2017-09-17 16:35:27 +0800667 execute(TC_crcx_and_dlcx());
Harald Welte00a067f2017-09-13 23:27:17 +0200668 }
669}