-
Notifications
You must be signed in to change notification settings - Fork 2
/
WithArgumentsMethodCallRector.php
99 lines (84 loc) · 2.31 KB
/
WithArgumentsMethodCallRector.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
<?php
declare(strict_types=1);
namespace Rector\PhpSpecToPHPUnit\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Param;
use Rector\PhpSpecToPHPUnit\Enum\PhpSpecMethodName;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\PhpSpecToPHPUnit\Tests\Rector\MethodCall\WithArgumentsMethodCallRector\WithArgumentsMethodCallRectorTest
*/
final class WithArgumentsMethodCallRector extends AbstractRector
{
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [MethodCall::class];
}
/**
* @param MethodCall $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->isName($node->name, PhpSpecMethodName::WITH)) {
return null;
}
$args = $node->getArgs();
if (count($args) !== 1) {
return null;
}
$firstArg = $args[0];
if (! $firstArg->value instanceof StaticCall) {
return null;
}
$staticCall = $firstArg->value;
if (! $this->isName($staticCall->class, 'Prophecy\Argument')) {
return null;
}
if (! $this->isName($staticCall->name, 'cetera')) {
return null;
}
$thisAnyMethodCall = new MethodCall(new Variable('this'), 'any');
$firstArg->value = $thisAnyMethodCall;
return $node;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Migrate ->with(Arguments::*()) call to PHPUnit',
[
new CodeSample(
<<<'CODE_SAMPLE'
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
class ResultSpec extends ObjectBehavior
{
public function it_is_initializable()
{
$this->run()->with(Arguments::cetera());
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use PhpSpec\ObjectBehavior;
class ResultSpec extends ObjectBehavior
{
public function it_is_initializable()
{
$this->run()->with($this->any());
}
}
CODE_SAMPLE
),
]
);
}
}