ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.test_015_Data_Wiring.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Services/WorkflowEngine/test/ilWorkflowEngineBaseTest.php';
5
13{
14 #region Helper
15 public $base_path = './Services/WorkflowEngine/test/parser/';
16 public $suite_path = '015_Data_Wiring/';
17
18 public function getTestInputFilename($test_name)
19 {
20 return $this->base_path . $this->suite_path . $test_name . '.bpmn2';
21 }
22
23 public function getTestOutputFilename($test_name)
24 {
25 return $this->base_path . $this->suite_path . $test_name . '_output.php';
26 }
27
28 public function getTestGoldsampleFilename($test_name)
29 {
30 return $this->base_path . $this->suite_path . $test_name . '_goldsample.php';
31 }
32
33 public function setUp()
34 {
35 chdir(dirname(__FILE__));
36 chdir('../../../../../');
37
38 parent::setUp();
39
40 require_once './Services/WorkflowEngine/classes/parser/class.ilBPMN2Parser.php';
41 }
42
43 public function test_WorkflowWithInputTaskWiredDataIOShouldOutputAccordingly()
44 {
45 $test_name = 'Data_Wiring_Input_Task';
46 $xml = file_get_contents($this->getTestInputFilename($test_name));
47 $parser = new ilBPMN2Parser();
48 $parse_result = $parser->parseBPMN2XML($xml);
49
50 file_put_contents($this->getTestOutputFilename($test_name), $parse_result);
51 $return = exec('php -l ' . $this->getTestOutputFilename($test_name));
52
53 $this->assertTrue(substr($return, 0, 25) == 'No syntax errors detected', 'Lint of output code failed.');
54
55 $goldsample = file_get_contents($this->getTestGoldsampleFilename($test_name));
56 $this->assertEquals($goldsample, $parse_result, 'Output does not match goldsample.');
57
58 require_once $this->getTestOutputFilename($test_name);
60 $process = new $test_name;
61 $process->setInstanceVarById('DataInput_1', 234);
62 $process->startWorkflow();
63
64 foreach ($process->getNodes() as $node) {
65 if ($node->getName() == '$_v_Task_1') {
66 $runtime_vars = $node->getRuntimeVars();
67 }
68 }
69 $this->assertEquals(234, $runtime_vars['user_id'], 'IO data was not forwarded from input to task runtime var.');
70 $this->assertEquals(234, $process->getInstanceVarById('DataInput_1'), 'IO data was not kept as input var.');
71 unlink($this->getTestOutputFilename($test_name));
72 }
73
74
75 public function test_WorkflowWithInputObjectOutputWiredDataIOShouldOutputAccordingly()
76 {
77 $test_name = 'DataObject_Wiring_Input_Object_Output';
78 $xml = file_get_contents($this->getTestInputFilename($test_name));
79 $parser = new ilBPMN2Parser();
80 $parse_result = $parser->parseBPMN2XML($xml);
81
82 file_put_contents($this->getTestOutputFilename($test_name), $parse_result);
83 $return = exec('php -l ' . $this->getTestOutputFilename($test_name));
84
85 $this->assertTrue(substr($return, 0, 25) == 'No syntax errors detected', 'Lint of output code failed.');
86
87 $goldsample = file_get_contents($this->getTestGoldsampleFilename($test_name));
88 $this->assertEquals($goldsample, $parse_result, 'Output does not match goldsample.');
89
90 require_once $this->getTestOutputFilename($test_name);
92 $process = new $test_name;
93 $process->setInstanceVarById('DataInput_1', 'YaddaYadda');
94 $process->startWorkflow();
95
96 //$this->assertEquals('YaddaYadda', $process->getInstanceVarById('DataOutput_1'), 'IO data was not forwarded through process.');
97 unlink($this->getTestOutputFilename($test_name));
98 }
99}
$parser
Definition: BPMN2Parser.php:23
$parse_result
Definition: BPMN2Parser.php:25
An exception for terminatinating execution or to throw for unit testing.
Class ilWorkflowEngineBaseTest.
$xml
Definition: metadata.php:240