conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 21_configuration_operations / 2103_test_component_operations / 210306_running_operation / Sem_210306_running_operation_008.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:21.3.6, Verify that any from running can be used inside expressions
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15 // The following requirements are tested:
16 // The index of the matched component can optionally be assigned to an integer variable
17 // for single-dimensional component arrays...
18 module Sem_210306_running_operation_008 {
19
20 type component GeneralComp {}
21
22 function f() runs on GeneralComp {
23 timer t := 100.0;
24 t.start;
25 t.timeout;
26 }
27
28 testcase TC_Sem_210306_running_operation_008() runs on GeneralComp system GeneralComp {
29 var boolean v_isRunning;
30 const integer c_size := 4;
31 var GeneralComp v_ptc[c_size];
32 var integer v_index;
33
34 for (var integer i := 0; i < c_size; i := i + 1) {
35 v_ptc[i] := GeneralComp.create; // created components are inactive
36 if (i mod 2 == 0) { v_ptc[i].kill; } // kill components on even indices
37 else { v_ptc[i].start(f());} // activate PTC
38 }
39
40 v_isRunning := any from v_ptc.running -> @index v_index and v_index == 1;
41
42 if(v_isRunning){
43 setverdict(pass);
44 } else {
45 setverdict(fail, "The any from running operation didn't find running components");
46 }
47 }
48
49 control {
50 execute(TC_Sem_210306_running_operation_008(), 5.0);
51 }
52 }
This page took 0.036927 seconds and 5 git commands to generate.