conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220302_getcall_operation / Sem_220302_GetcallOperation_019.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Adrien Kirjak – initial implementation
10 *
11 ** @version 0.0.1
12 ** @purpose 1:22.3.2, @decoded redirect assignment with encoding parameter
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // In case the referenced field is of the universal charstring type, the @decoded
18 // clause can contain an optional parameter defining the encoding format. The
19 // parameter shall be of the charstring type and it shall contain one of the
20 // strings allowed for the decvalue_unichar function (specified in clause C.5.4).
21
22 module Sem_220302_GetcallOperation_019 {
23 signature S(universal charstring p_par);
24
25 type port P procedure {
26 inout S;
27 }
28
29 type component GeneralComp {
30 port P p;
31 }
32
33 function f_server() runs on GeneralComp {
34 var integer v_res with { encode "32bit" };
35 alt {
36 [] p.getcall(S:?) -> param (v_res := @decoded("UTF-16LE") p_par) {
37 if (v_res == 1953719668) { setverdict (pass); }
38 else { setverdict(fail); }
39 }
40 [] p.getcall { setverdict(fail); }
41 }
42 }
43
44 testcase TC_Sem_220302_GetcallOperation_019() runs on GeneralComp system GeneralComp {
45 var integer v_src := 1953719668 with { encode "32bit" };
46 var universal charstring v_str := encvalue_unichar(v_src, "UTF-16LE");
47 var GeneralComp v_ptc := GeneralComp.create("PTC");
48 connect(self:p, v_ptc:p);
49 v_ptc.start(f_server());
50 p.call(S:{ p_par := v_str }, nowait);
51 v_ptc.done;
52 setverdict(pass);
53 }
54
55 control {
56 execute(TC_Sem_220302_GetcallOperation_019(), 5.0);
57 }
58 }
This page took 0.053229 seconds and 5 git commands to generate.