conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 16_functions_altsteps_testcases / 1601_functions / 160102_predefined_functions / Sem_160102_predefined_functions_020.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:16.1.2, Ensure that predefined decvalue function works properly in case of not enough bits
13 ** @verdict pass accept, ttcn3verdict:pass
14 ***************************************************/
15
16 // The following requirements are tested:
17 // (C.5.2)
18 // The decvalue function decodes a bitstring into a value. The test system shall suppose that
19 // the bitstring encoded_value represents an encoded instance of the actual type of decoded_value.
20 // If the decoding was unsuccessful, the actual parameters for encoded_value and decoded_value are
21 // not changed. The function shall return an integer value to indicate success or failure of the
22 // decoding below:
23 // The return value 2 indicates that decoding could not be completed as encoded_value did not
24 // contain enough bits.
25
26 module Sem_160102_predefined_functions_020 {
27 type integer I with { variant "32 bit"};
28
29 type component GeneralComp {
30 }
31
32 testcase TC_Sem_160102_predefined_functions_020 () runs on GeneralComp {
33 var bitstring v_test := int2bit(0, 16);
34 var I v_decoded;
35 var integer v_res := decvalue(v_test, v_decoded);
36 // expected result:
37 // v_res: 2 (failed, not enough bits) -> there are only 16 bits available, while 32 is needed
38 // v_decoded: uninitialized
39 // v_test: original 16-bit value
40 if (match(v_res, 2) and not isbound(v_decoded) and match(lengthof(v_test), 16)) {
41 setverdict(pass);
42 } else {
43 setverdict(fail, "Unexpected decoding result");
44 }
45 }
46
47 control{
48 execute(TC_Sem_160102_predefined_functions_020());
49 }
50 }
This page took 0.032958 seconds and 5 git commands to generate.