forked from humbug/php-scoper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhpScoperTest.php
353 lines (272 loc) · 9.43 KB
/
PhpScoperTest.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<?php
declare(strict_types=1);
/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Humbug\PhpScoper\Scoper;
use Humbug\PhpScoper\Configuration\SymbolsConfiguration;
use Humbug\PhpScoper\PhpParser\FakeParser;
use Humbug\PhpScoper\PhpParser\FakePrinter;
use Humbug\PhpScoper\PhpParser\Printer\Printer;
use Humbug\PhpScoper\PhpParser\Printer\StandardPrinter;
use Humbug\PhpScoper\PhpParser\TraverserFactory;
use Humbug\PhpScoper\Symbol\EnrichedReflector;
use Humbug\PhpScoper\Symbol\Reflector;
use Humbug\PhpScoper\Symbol\SymbolsRegistry;
use Humbug\PhpScoper\Throwable\Exception\ParsingException;
use LogicException;
use PhpParser\Error as PhpParserError;
use PhpParser\Node\Name;
use PhpParser\NodeTraverserInterface;
use PhpParser\Parser;
use PhpParser\PrettyPrinter\Standard;
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\PhpUnit\ProphecyTrait;
use Prophecy\Prophecy\ObjectProphecy;
use function Humbug\PhpScoper\create_parser;
use function is_a;
use function str_replace;
/**
* @internal
*/
class PhpScoperTest extends TestCase
{
use ProphecyTrait;
private const PREFIX = 'Humbug';
private Scoper $scoper;
/**
* @var ObjectProphecy<Scoper>
*/
private ObjectProphecy $decoratedScoperProphecy;
private Scoper $decoratedScoper;
/**
* @var ObjectProphecy<TraverserFactory>
*/
private ObjectProphecy $traverserFactoryProphecy;
private TraverserFactory $traverserFactory;
/**
* @var ObjectProphecy<Parser>
*/
private ObjectProphecy $parserProphecy;
private Parser $parser;
private SymbolsRegistry $symbolsRegistry;
private Printer $printer;
protected function setUp(): void
{
$this->decoratedScoperProphecy = $this->prophesize(Scoper::class);
$this->decoratedScoper = $this->decoratedScoperProphecy->reveal();
$this->traverserFactoryProphecy = $this->prophesize(TraverserFactory::class);
$this->traverserFactory = $this->traverserFactoryProphecy->reveal();
$this->parserProphecy = $this->prophesize(Parser::class);
$this->parserProphecy->getTokens()->willReturn([]);
$this->parser = $this->parserProphecy->reveal();
$this->symbolsRegistry = new SymbolsRegistry();
$this->printer = new StandardPrinter(new Standard());
$this->scoper = new PhpScoper(
create_parser(),
new FakeScoper(),
new TraverserFactory(
new EnrichedReflector(
Reflector::createEmpty(),
SymbolsConfiguration::create(),
),
self::PREFIX,
$this->symbolsRegistry,
),
$this->printer,
);
}
public function test_is_a_scoper(): void
{
self::assertTrue(is_a(PhpScoper::class, Scoper::class, true));
}
public function test_can_scope_a_php_file(): void
{
$filePath = 'file.php';
$contents = <<<'PHP'
<?php
echo "Humbug!";
PHP;
$expected = <<<'PHP'
<?php
namespace Humbug;
echo "Humbug!";
PHP;
$actual = $this->scoper->scope($filePath, $contents);
self::assertSame($expected, $actual);
}
public function test_does_not_scope_file_if_is_not_a_php_file(): void
{
$filePath = 'file.yaml';
$fileContents = '';
$this->decoratedScoperProphecy
->scope($filePath, $fileContents)
->willReturn($expected = 'Scoped content');
$this->traverserFactoryProphecy
->create(Argument::cetera())
->willThrow(new LogicException('Unexpected call.'));
$scoper = new PhpScoper(
new FakeParser(),
$this->decoratedScoper,
$this->traverserFactory,
new FakePrinter(),
);
$actual = $scoper->scope($filePath, $fileContents);
self::assertSame($expected, $actual);
$this->decoratedScoperProphecy
->scope(Argument::cetera())
->shouldHaveBeenCalledTimes(1);
}
public function test_can_scope_a_php_file_with_the_wrong_extension(): void
{
$filePath = 'file';
$contents = <<<'PHP'
<?php
echo "Humbug!";
PHP;
$expected = <<<'PHP'
<?php
namespace Humbug;
echo "Humbug!";
PHP;
$actual = $this->scoper->scope($filePath, $contents);
self::assertSame($expected, $actual);
}
public function test_can_scope_php_executable_files(): void
{
$filePath = 'hello';
$contents = <<<'PHP'
#!/usr/bin/env php
<?php
echo "Hello world";
PHP;
$expected = <<<'PHP'
#!/usr/bin/env php
<?php
namespace Humbug;
echo "Hello world";
PHP;
$expected = str_replace('<?php', '<?php ', $expected);
$actual = $this->scoper->scope($filePath, $contents);
self::assertSame($expected, $actual);
}
public function test_does_not_scope_a_non_php_executable_files(): void
{
$filePath = 'hello';
$contents = <<<'PHP'
#!/usr/bin/env bash
<?php
echo "Hello world";
PHP;
$this->decoratedScoperProphecy
->scope($filePath, $contents)
->willReturn($expected = 'Scoped content');
$this->traverserFactoryProphecy
->create(Argument::cetera())
->willThrow(new LogicException('Unexpected call.'));
$scoper = new PhpScoper(
new FakeParser(),
$this->decoratedScoper,
$this->traverserFactory,
new FakePrinter(),
);
$actual = $scoper->scope($filePath, $contents);
self::assertSame($expected, $actual);
$this->decoratedScoperProphecy
->scope(Argument::cetera())
->shouldHaveBeenCalledTimes(1);
}
public function test_cannot_scope_an_invalid_php_file(): void
{
$filePath = 'invalid-file.php';
$contents = <<<'PHP'
<?php
$class = ;
PHP;
$this->expectExceptionObject(
new ParsingException(
'Could not parse the file "invalid-file.php".',
previous: new PhpParserError('Syntax error, unexpected \';\' on line 3'),
),
);
$this->scoper->scope($filePath, $contents);
}
public function test_creates_a_new_traverser_for_each_file(): void
{
$files = [
'file1.php' => 'file1',
'file2.php' => 'file2',
];
$this->decoratedScoperProphecy
->scope(Argument::any(), Argument::any())
->willReturn('Scoped content');
$this->parserProphecy
->parse('file1')
->willReturn($file1Stmts = [
new Name('file1'),
]);
$this->parserProphecy
->parse('file2')
->willReturn($file2Stmts = [
new Name('file2'),
]);
$firstTraverserProphecy = $this->prophesize(NodeTraverserInterface::class);
$firstTraverserProphecy->traverse($file1Stmts)->willReturn([]);
$secondTraverserProphecy = $this->prophesize(NodeTraverserInterface::class);
$secondTraverserProphecy->traverse($file2Stmts)->willReturn([]);
$i = 0;
$this->traverserFactoryProphecy
->create(
Argument::that(
static function () use (&$i): bool {
++$i;
return 1 === $i;
},
),
)
->willReturn($firstTraverserProphecy->reveal());
$this->traverserFactoryProphecy
->create(
Argument::that(
static function () use (&$i): bool {
++$i;
// It is 4 instead of 2 because Prophecy will check all
// registered calls even if the first one matches.
// So it will call this one too for the first file
// hence by the time it is the 2nd call for the 2nd file
// we are at the 4th call.
return 4 === $i;
},
),
)
->willReturn($secondTraverserProphecy->reveal());
$scoper = new PhpScoper(
$this->parser,
new FakeScoper(),
$this->traverserFactory,
$this->printer,
);
foreach ($files as $file => $contents) {
$scoper->scope($file, $contents);
}
$this->parserProphecy
->parse(Argument::cetera())
->shouldHaveBeenCalledTimes(2);
$this->traverserFactoryProphecy
->create(Argument::cetera())
->shouldHaveBeenCalledTimes(2);
$firstTraverserProphecy
->traverse(Argument::cetera())
->shouldHaveBeenCalledTimes(1);
$secondTraverserProphecy
->traverse(Argument::cetera())
->shouldHaveBeenCalledTimes(1);
}
}