conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220302_getcall_operation / NegSem_220302_GetcallOperation_013.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, invalid format value in @decoded redirect assignment
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // Any other value shall cause an error.
18
19 module NegSem_220302_GetcallOperation_013 {
20 signature S(universal charstring p_par);
21
22 type port P procedure {
23 inout S;
24 } with {extension "internal"}
25
26 type component GeneralComp {
27 port P p;
28 }
29
30 function f_server() runs on GeneralComp {
31 var integer v_res with { encode "32bit" };
32 alt {
33 [] p.getcall(S:?) -> param (v_res := @decoded("proprietary") p_par) {
34 setverdict(pass);
35 }
36 [] p.getcall { setverdict(pass); }
37 }
38 }
39
40 testcase TC_NegSem_220302_GetcallOperation_013() runs on GeneralComp system GeneralComp {
41 var integer v_src := 1953719668 with { encode "32bit" };
42 var universal charstring v_str := encvalue_unichar(v_src);
43 var GeneralComp v_ptc := GeneralComp.create("PTC");
44 connect(self:p, v_ptc:p);
45 v_ptc.start(f_server());
46 p.call(S:{ p_par := v_str }, nowait);
47 v_ptc.done;
48 setverdict(pass);
49 }
50
51 control {
52 execute(TC_NegSem_220302_GetcallOperation_013(), 5.0);
53 }
54 }
This page took 0.033235 seconds and 5 git commands to generate.