conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 21_configuration_operations / 2103_test_component_operations / 210307_done_operation / Sem_210307_done_operation_003.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.7, Verify that any from done matches if at least one component is stopped or killed
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15 // The following requirements are tested:
16 // When the any from component array notation is used, the components from the referenced array
17 // are iterated over and individually checked for executing currently from innermost to outermost
18 // dimension from lowest to highest index for each dimension. The first component to be found
19 // executing causes the done operation to succeed.
20 module Sem_210307_done_operation_003 {
21
22 type component GeneralComp {}
23
24 function f(float p_time) runs on GeneralComp {
25 timer t := p_time;
26 t.start;
27 t.timeout;
28 }
29
30 testcase TC_Sem_210307_done_operation_003() runs on GeneralComp system GeneralComp {
31 const integer c_size := 4;
32 var GeneralComp v_ptc[c_size];
33 timer t := 2.0;
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 == 3) { v_ptc[i].start(f(1.0)); }
37 else { v_ptc[i].start(f(100.0)); }
38 }
39 t.start;
40 t.timeout;
41 alt
42 {
43 [] any from v_ptc.done { setverdict(pass); }
44 [else] { setverdict(fail, "The any from done operation didn't found stopped or killed component"); }
45 }
46 }
47
48 control {
49 execute(TC_Sem_210307_done_operation_003(), 5.0);
50 }
51 }
This page took 0.061011 seconds and 5 git commands to generate.