ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.test_004_InclusiveGateway.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
11 {
12  #region Helper
13  public $base_path = './Services/WorkflowEngine/test/parser/';
14  public $suite_path = '004_InclusiveGateway/';
15 
16  public function getTestInputFilename($test_name)
17  {
18  return $this->base_path . $this->suite_path . $test_name . '.bpmn2';
19  }
20 
21  public function getTestOutputFilename($test_name)
22  {
23  return $this->base_path . $this->suite_path . $test_name . '_output.php';
24  }
25 
26  public function getTestGoldsampleFilename($test_name)
27  {
28  return $this->base_path . $this->suite_path . $test_name . '_goldsample.php';
29  }
30 
31  public function setUp()
32  {
33  chdir( dirname( __FILE__ ) );
34  chdir( '../../../../../' );
35 
36  require_once './Services/WorkflowEngine/classes/parser/class.ilBPMN2Parser.php';
37  }
38 
39  public function test_WorkflowWithSimpleInclusiveGatewayShouldOutputAccordingly()
40  {
41  $test_name = 'InclusiveGateway_Simple';
42  $xml = file_get_contents($this->getTestInputFilename($test_name));
43  $parser = new ilBPMN2Parser();
44  $parse_result = $parser->parseBPMN2XML($xml);
45 
46  file_put_contents($this->getTestOutputFilename($test_name), $parse_result);
47  $return = exec('php -l ' . $this->getTestOutputFilename($test_name));
48 
49  $this->assertTrue(substr($return,0,25) == 'No syntax errors detected', 'Lint of output code failed.');
50 
51  $goldsample = file_get_contents($this->getTestGoldsampleFilename($test_name));
52  $this->assertEquals($goldsample, $parse_result, 'Output does not match goldsample.');
53 
54  require_once $this->getTestOutputFilename($test_name);
55  $process = new $test_name;
56  $this->assertFalse($process->isActive());
57 
58  $process->startWorkflow();
59  $all_triggered = true;
60  foreach($process->getNodes() as $node)
61  {
63  foreach($node->getDetectors() as $detector)
64  {
66  if(!$detector->getActivated())
67  {
68  $all_triggered = false;
69  }
70  }
71  foreach($node->getEmitters() as $emitter)
72  {
74  if(!$emitter->getActivated())
75  {
76  $all_triggered = false;
77  }
78  }
79  }
80  $this->assertTrue($all_triggered);
81 
82  unlink($this->getTestOutputFilename($test_name));
83  }
84 
85 }
$parse_result
Definition: BPMN2Parser.php:26
$parser
Definition: BPMN2Parser.php:24
Class ilBPMN2Parser.