This repository was archived by the owner on Dec 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathConverterTest.php
executable file
·96 lines (85 loc) · 2.65 KB
/
ConverterTest.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
<?php
/*
* This file is part of the PHPDoc to Type Hint package.
*
* (c) Kévin Dunglas <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Dunglas\PhpDocToTypeHint\Tests;
use phpDocumentor\Reflection\Php\ProjectFactory;
use Dunglas\PhpDocToTypeHint\Converter;
use PHPUnit\Framework\TestCase;
/**
* @covers Converter
*/
final class ConverterTest extends TestCase
{
/**
* @var Converter
*/
private static $converter;
public static function setUpBeforeClass()
{
self::$converter = new Converter();
}
/**
* @dataProvider filesProvider
*/
public function testSingleFiles(string $projectName, string $fileName, bool $nullableTypes = null)
{
$projectFactory = ProjectFactory::createInstance();
$project = $projectFactory->create(
$projectName,
[__DIR__.'/Fixtures/'.$fileName]
);
foreach ($project->getFiles() as $file) {
$this->assertStringEqualsFile(
__DIR__.'/Results/'.$fileName,
self::$converter->convert($project, $file, $nullableTypes !== null ? $nullableTypes : false)
);
}
}
public function testInheritance()
{
$projectFactory = ProjectFactory::createInstance();
$childPath = __DIR__.'/Fixtures/Child.php';
$project = $projectFactory->create(
'inheritance',
[
$childPath,
__DIR__.'/Fixtures/Foo.php',
__DIR__.'/Fixtures/BarInterface.php'
]
);
foreach ($project->getFiles() as $path => $file) {
if ($childPath === $path) {
$this->assertStringEqualsFile(
__DIR__.'/Results/Child.php',
self::$converter->convert($project, $file, false)
);
}
}
}
/**
* @return array[]
*/
public function filesProvider(): array
{
return [
['functions1', 'functions1.php'],
['functions2', 'functions2.php'],
['functions3', 'functions3.php'],
['classFoo', 'Foo.php'],
['interfaceBar', 'BarInterface.php'],
['traitBaz', 'BazTrait.php'],
['paramNoType', 'param_no_type.php'],
['arrayNoTypes', 'array_no_types.php'],
['typeAliasesWhitelisting', 'type_aliases_and_whitelisting.php'],
['passByReference', 'pass_by_reference.php'],
['nullableTypes', 'nullable_types.php', true],
];
}
}