conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220304_getreply_operation / Sem_220304_getreply_operation_014.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.4, @decoded redirect parameter 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_220304_getreply_operation_014 {
23 signature S(out universal charstring p_par);
24
25 type port P procedure {
26 inout S;
27 } with {extension "internal"}
28
29 type component GeneralComp {
30 port P p;
31 }
32
33 function f_server() runs on GeneralComp {
34 var integer v_src := 1953719668 with { encode "32bit" };
35 var universal charstring v_str := encvalue_unichar(v_src, "UTF-16LE");
36 p.getcall(S:?);
37 p.reply(S:{ p_par := v_str });
38 }
39
40 testcase TC_Sem_220304_getreply_operation_014() runs on GeneralComp system GeneralComp {
41 var integer v_res with { encode "32bit" };
42 var GeneralComp v_ptc := GeneralComp.create("PTC");
43 connect(self:p, v_ptc:p);
44 v_ptc.start(f_server());
45
46 p.call(S:{ p_par := - }) {
47 [] p.getreply(S:?) -> param (v_res := @decoded("UTF-16LE") p_par) {
48 if (v_res == 1953719668) { setverdict (pass); }
49 else { setverdict(fail); }
50 }
51 [] p.getreply { setverdict(fail); }
52 };
53 v_ptc.done;
54 setverdict(pass);
55 }
56
57 control {
58 execute(TC_Sem_220304_getreply_operation_014(), 5.0);
59 }
60 }
This page took 0.034346 seconds and 5 git commands to generate.