NetteTester::setTarget()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
4
namespace Genesis\Commands;
5
6
7
class NetteTester extends Command
8
{
9
10
	private $workingDir;
11
12
	private $target;
13
14
	private $options;
15
16
17
	/**
18
	 * Returns working directory. System will switch to this directory before running tests
19
	 * @return string
20
	 */
21 2
	public function getWorkingDir()
22
	{
23 2
		return $this->workingDir;
24
	}
25
26
27
	/**
28
	 * Sets working directory. System will switch to this directory before running tests
29
	 * @param mixed $workingDir
30
	 */
31 2
	public function setWorkingDir($workingDir)
32
	{
33 2
		$this->workingDir = $workingDir;
34 2
	}
35
36
37
	/**
38
	 * Returns target to be executed. Dir in working directory, dot (current dir), TestFile, etc
39
	 * @return mixed
40
	 */
41 1
	public function getTarget()
42
	{
43 1
		return $this->target;
44
	}
45
46
47
	/**
48
	 * Sets target to be executed. Dir in working directory, dot (current dir), TestFile, etc
49
	 * @param mixed $target
50
	 */
51 2
	public function setTarget($target)
52
	{
53 2
		$this->target = $target;
54 2
	}
55
56
57
	/**
58
	 * @return array|NULL
59
	 */
60 2
	public function getOptions()
61
	{
62 2
		return $this->options;
63
	}
64
65
66
	/**
67
	 * Possible options:
68
	 * - executable (mandatory)
69
	 * - iniFile
70
	 * - interpreter
71
	 * - threads
72
	 * - mode
73
	 * @param array|NULL $options
74
	 */
75 2
	public function setOptions(array $options = NULL)
76
	{
77 2
		$this->options = $options;
78 2
	}
79
80
81 2
	public function execute()
82
	{
83 2
		if (!isset($this->options['executable'])) {
84 1
			$this->error('Tester executable is not defined.');
85
		}
86
87 1
		$cmd = '';
88 1
		$cmd .= escapeshellarg($this->options['executable']) . ' ';
89 1
		$cmd .= '-s '; // show skipped tests
90 1
		$cmd .= escapeshellarg($this->target) . ' ';
91
92
		$optionalSwitches = [
93 1
			'iniFile' => '-c',
94 1
			'interpreter' => '-p',
95 1
			'threads' => '-j',
96 1
			'mode' => '-o',
97 1
		];
98 1 View Code Duplication
		foreach($optionalSwitches as $name => $switch) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
99 1
			if(isset($this->options[$name])) {
100 1
				$cmd .= $switch . ' ';
101 1
				$cmd .= escapeshellarg($this->options[$name]) . ' ';
102 1
			}
103 1
		}
104 1
		$currdir = getcwd();
105 1
		$result = @chdir($this->workingDir);
106 1
		if (!$result) {
107
			$this->error("Cannot change working directory to '$this->workingDir'.");
108
		}
109
110 1
		$command = new Exec();
111 1
		$command->setCommand($cmd);
112 1
		$result = $command->execute();
113 1
		if ($result->getResult() !== 0) {
114
			$this->error(sprintf('Tests failed with code %d.', $result->getResult()));
115
		}
116
117 1
		$result = @chdir($currdir);
118 1
		if (!$result) {
119
			$this->error("Cannot change working directory back to '$currdir'.");
120
		}
121 1
	}
122
123
}