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_015.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 value assignment of a bitstring field
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // When assigning individual fields of a reply, encoded parameters can be decoded
18 // prior to assignment using the @decoded modifier. In this case, the referenced
19 // parameter on the right hand sided of the assignment shall be one of the
20 // bitstring, hexstring, octetstring, charstring or universal charstring types. It
21 // shall be decoded into a value of the same type as the variable on the left hand
22 // side of the assignment.
23
24 module Sem_220304_getreply_operation_015 {
25 type record R {
26 integer id,
27 bitstring payload
28 }
29
30 signature S() return R;
31
32 type port P procedure {
33 inout S;
34 } with {extension "internal"}
35
36 type component GeneralComp {
37 port P p;
38 }
39
40 function f_server() runs on GeneralComp {
41 var charstring v_src := "abc";
42 var R v_rec := { id := 1, payload := encvalue(v_src) };
43 p.getcall(S:?);
44 p.reply(S:{} value v_rec);
45 log("dada");
46 }
47
48 testcase TC_Sem_220304_getreply_operation_015() runs on GeneralComp system GeneralComp {
49 var charstring v_res;
50 var GeneralComp v_ptc := GeneralComp.create("PTC");
51 connect(self:p, v_ptc:p);
52 v_ptc.start(f_server());
53 p.call(S:{}) {
54 [] p.getreply(S:?) -> value (v_res := @decoded payload) {
55 if (v_res == "abc") { setverdict (pass); }
56 else { setverdict(fail); }
57 }
58 [] p.getreply { setverdict(fail); }
59 }
60 }
61
62 control {
63 execute(TC_Sem_220304_getreply_operation_015(), 5.0);
64 }
65 }
This page took 0.036196 seconds and 5 git commands to generate.