-
Notifications
You must be signed in to change notification settings - Fork 2
/
RoboFile.php
188 lines (168 loc) · 4.47 KB
/
RoboFile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
/**
* RoboFile.php
*
* PHP version 7
*
* @author Tim Wagner <t.wagner@techdivision.com>
* @copyright 2016 TechDivision GmbH <info@techdivision.com>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/techdivision/import-product-grouped
* @link http://www.techdivision.com
*/
use Lurker\Event\FilesystemEvent;
use Symfony\Component\Finder\Finder;
/**
* Defines the available build tasks.
*
* @author Tim Wagner <t.wagner@techdivision.com>
* @copyright 2016 TechDivision GmbH <info@techdivision.com>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/techdivision/import-product-grouped
* @link http://www.techdivision.com
*
* @SuppressWarnings(PHPMD)
*/
class RoboFile extends \Robo\Tasks
{
/**
* The build properties.
*
* @var array
*/
protected $properties = array(
'base.dir' => __DIR__,
'src.dir' => __DIR__ . '/src',
'dist.dir' => __DIR__ . '/dist',
'vendor.dir' => __DIR__ . '/vendor',
'target.dir' => __DIR__ . '/target'
);
/**
* Run's the composer install command.
*
* @return \Robo\Result The result
*/
public function composerInstall()
{
// optimize autoloader with custom path
return $this->taskComposerInstall()
->preferDist()
->optimizeAutoloader()
->run();
}
/**
* Run's the composer update command.
*
* @return \Robo\Result The result
*/
public function composerUpdate()
{
// optimize autoloader with custom path
return $this->taskComposerUpdate()
->preferDist()
->optimizeAutoloader()
->run();
}
/**
* Clean up the environment for a new build.
*
* @return \Robo\Result The result
*/
public function clean()
{
return $this->taskDeleteDir($this->properties['target.dir'])->run();
}
/**
* Prepare's the environment for a new build.
*
* @return \Robo\Result The result
*/
public function prepare()
{
return $this->taskFileSystemStack()
->mkdir($this->properties['dist.dir'])
->mkdir($this->properties['target.dir'])
->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
->run();
}
/**
* Run's the PHPMD.
*
* @return \Robo\Result The result
*/
public function runMd()
{
// run the mess detector
return $this->_exec(
sprintf(
'%s/bin/phpmd %s xml phpmd.xml --reportfile %s/reports/pmd.xml --ignore-violations-on-exit',
$this->properties['vendor.dir'],
$this->properties['src.dir'],
$this->properties['target.dir']
)
);
}
/**
* Run's the PHPCPD.
*
* @return \Robo\Result The result
*/
public function runCpd()
{
// run the copy past detector
return $this->_exec(
sprintf(
'%s/bin/phpcpd %s --log-pmd %s/reports/pmd-cpd.xml',
$this->properties['vendor.dir'],
$this->properties['src.dir'],
$this->properties['target.dir']
)
);
}
/**
* Run's the PHPCodeSniffer.
*
* @return \Robo\Result The result
*/
public function runCs()
{
// run the code sniffer
return $this->_exec(
sprintf(
'%s/bin/phpcs -n --report-full --extensions=php --standard=phpcs.xml --report-checkstyle=%s/reports/phpcs.xml %s',
$this->properties['vendor.dir'],
$this->properties['target.dir'],
$this->properties['src.dir']
)
);
}
/**
* Run's the PHPUnit tests.
*
* @return \Robo\Result The result
*/
public function runTests()
{
// run PHPUnit
return $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir']))
->configFile('phpunit.xml')
->run();
}
/**
* The complete build process.
*
* @return void
*/
public function build()
{
// stop the build on first failure of a task
$this->stopOnFail(true);
// process the build
$this->clean();
$this->prepare();
$this->runCs();
$this->runCpd();
$this->runMd();
$this->runTests();
}
}