1
|
|
|
<?php |
2
|
|
|
namespace Behapi\Context; |
3
|
|
|
|
4
|
|
|
use Behat\Behat\Context\Context; |
5
|
|
|
use Behat\Gherkin\Node\PyStringNode; |
6
|
|
|
|
7
|
|
|
use Coduo\PHPMatcher\Factory\SimpleFactory; |
8
|
|
|
|
9
|
|
|
use Behapi\Tools\HttpHistory; |
10
|
|
|
|
11
|
|
|
class PhpMatcher implements Context |
12
|
|
|
{ |
13
|
|
|
use ApiTrait; |
14
|
|
|
|
15
|
|
|
/** @var Factory */ |
16
|
|
|
private $factory; |
17
|
|
|
|
18
|
|
|
public function __construct(HttpHistory $history) |
19
|
|
|
{ |
20
|
|
|
$this->history = $history; |
21
|
|
|
|
22
|
|
|
$this->factory = new SimpleFactory; |
|
|
|
|
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
/** @Then the response content should match :pattern */ |
26
|
|
View Code Duplication |
public function response_content_should_match(string $pattern) |
|
|
|
|
27
|
|
|
{ |
28
|
|
|
$matcher = $this->factory->createMatcher(); |
29
|
|
|
$content = (string) $this->getResponse()->getBody(); |
30
|
|
|
|
31
|
|
|
if ($matcher->match($content, $pattern)) { |
32
|
|
|
return; |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
throw new InvalidArgumentException( |
36
|
|
|
sprintf( |
37
|
|
|
'The response does not match with the pattern "%s" (error : %s)', |
38
|
|
|
$pattern, |
39
|
|
|
$matcher->getError() |
40
|
|
|
) |
41
|
|
|
); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** @Then the response content should not match :pattern */ |
45
|
|
View Code Duplication |
public function response_content_should_not_match(string $pattern) |
|
|
|
|
46
|
|
|
{ |
47
|
|
|
$matcher = $this->factory->createMatcher(); |
48
|
|
|
$content = (string) $this->getResponse()->getBody(); |
49
|
|
|
|
50
|
|
|
if (!$matcher->match($content, $pattern)) { |
51
|
|
|
return; |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
throw new InvalidArgumentException( |
55
|
|
|
sprintf( |
56
|
|
|
'The response matches with the pattern "%s" (error : %s)', |
57
|
|
|
$pattern, |
58
|
|
|
$matcher->getError() |
59
|
|
|
) |
60
|
|
|
); |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** @Then the response content should match: */ |
64
|
|
View Code Duplication |
public function response_content_should_match_PyString(PyStringNode $pattern) |
|
|
|
|
65
|
|
|
{ |
66
|
|
|
$matcher = $this->factory->createMatcher(); |
67
|
|
|
$content = (string) $this->getResponse()->getBody(); |
68
|
|
|
|
69
|
|
|
if ($matcher->match($content, $pattern)) { |
70
|
|
|
return; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
throw new InvalidArgumentException($matcher->getError()); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** @Then the response content should match: */ |
77
|
|
View Code Duplication |
public function response_content_should_not_match_PyString(PyStringNode $pattern) |
|
|
|
|
78
|
|
|
{ |
79
|
|
|
$matcher = $this->factory->createMatcher(); |
80
|
|
|
$content = (string) $this->getResponse()->getBody(); |
81
|
|
|
|
82
|
|
|
if (!$matcher->match($content, $pattern)) { |
83
|
|
|
return; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
throw new InvalidArgumentException($matcher->getError()); |
87
|
|
|
} |
88
|
|
|
} |
89
|
|
|
|
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..