1
|
|
|
<?php |
2
|
|
|
namespace Behapi\Context; |
3
|
|
|
|
4
|
|
|
use InvalidArgumentException; |
5
|
|
|
|
6
|
|
|
use Behat\Behat\Context\Context; |
7
|
|
|
use Behat\Gherkin\Node\PyStringNode; |
8
|
|
|
|
9
|
|
|
use Symfony\Component\PropertyAccessor\PropertyAccess; |
10
|
|
|
|
11
|
|
|
use Behapi\Tools\HttpHistory; |
12
|
|
|
use Behapi\Tools\BehapiFactory; |
13
|
|
|
|
14
|
|
|
class JsonMatcher extends Json |
15
|
|
|
{ |
16
|
|
|
/** @var JsonFactory */ |
17
|
|
|
private $factory; |
18
|
|
|
|
19
|
|
|
public function __construct(HttpHistory $history) |
20
|
|
|
{ |
21
|
|
|
parent::__construct($history); |
22
|
|
|
|
23
|
|
|
$this->factory = new BehapiFactory; |
|
|
|
|
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
/** @Then the root should match: */ |
27
|
|
View Code Duplication |
public function root_should_match(PyStringNode $pattern) |
|
|
|
|
28
|
|
|
{ |
29
|
|
|
$matcher = $this->factory->createMatcher(); |
30
|
|
|
$body = (string) $this->getResponse()->getBody(); |
31
|
|
|
|
32
|
|
|
if ($matcher->match($body, $pattern->getRaw())) { |
33
|
|
|
return; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
throw new InvalidArgumentException( |
37
|
|
|
sprintf( |
38
|
|
|
'The json root does not match with the given pattern (error : %s)', |
39
|
|
|
$matcher->getError() |
40
|
|
|
) |
41
|
|
|
); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** @Then in the json, :path should match: */ |
45
|
|
View Code Duplication |
public function path_should_match(string $path, PyStringNode $pattern) |
|
|
|
|
46
|
|
|
{ |
47
|
|
|
$value = $this->getValue($path); |
48
|
|
|
$matcher = $this->factory->createMatcher(); |
49
|
|
|
|
50
|
|
|
$json = json_encode($value); |
|
|
|
|
51
|
|
|
|
52
|
|
|
if ($matcher->match($value, $pattern->getRaw())) { |
53
|
|
|
return; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
throw new InvalidArgumentException( |
57
|
|
|
sprintf( |
58
|
|
|
'The json path "%s" does not match with the given pattern (error : %s)', |
59
|
|
|
$path, |
60
|
|
|
$matcher->getError() |
61
|
|
|
) |
62
|
|
|
); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** @Then in the json, :path should not match: */ |
66
|
|
View Code Duplication |
public function path_should_not_match(string $path, PyStringNode $pattern) |
|
|
|
|
67
|
|
|
{ |
68
|
|
|
$value = $this->getValue($path); |
69
|
|
|
$matcher = $this->factory->createMatcher(); |
70
|
|
|
|
71
|
|
|
$json = json_encode($value); |
|
|
|
|
72
|
|
|
|
73
|
|
|
if (!$matcher->match($value, $pattern->getRaw())) { |
74
|
|
|
return; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
throw new InvalidArgumentException( |
78
|
|
|
sprintf( |
79
|
|
|
'The json path "%s" matches with the given pattern (error : %s)', |
80
|
|
|
$path, |
81
|
|
|
$matcher->getError() |
82
|
|
|
) |
83
|
|
|
); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** @Then in the json, :path should match :pattern */ |
87
|
|
View Code Duplication |
public function path_should_match_pattern(string $path, string $pattern) |
|
|
|
|
88
|
|
|
{ |
89
|
|
|
$value = $this->getValue($path); |
90
|
|
|
$matcher = $this->factory->createMatcher(); |
91
|
|
|
|
92
|
|
|
$json = json_encode($value); |
|
|
|
|
93
|
|
|
|
94
|
|
|
if ($matcher->match($value, $pattern)) { |
95
|
|
|
return; |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
throw new InvalidArgumentException( |
99
|
|
|
sprintf( |
100
|
|
|
'The json path "%s" does not match with the pattern "%s" (error : %s)', |
101
|
|
|
$path, |
102
|
|
|
$pattern, |
103
|
|
|
$matcher->getError() |
104
|
|
|
) |
105
|
|
|
); |
106
|
|
|
} |
107
|
|
|
|
108
|
|
|
/** @Then in the json, :path should not match :pattern */ |
109
|
|
View Code Duplication |
public function path_should_not_match_pattern(string $path, PyStringNode $pattern) |
|
|
|
|
110
|
|
|
{ |
111
|
|
|
$value = $this->getValue($path); |
112
|
|
|
$matcher = $this->factory->createMatcher(); |
113
|
|
|
|
114
|
|
|
$json = json_encode($value); |
|
|
|
|
115
|
|
|
|
116
|
|
|
if (!$matcher->match($value, $pattern)) { |
117
|
|
|
return; |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
throw new InvalidArgumentException( |
121
|
|
|
sprintf( |
122
|
|
|
'The json path "%s" matches with the pattern "%s" (error : %s)', |
123
|
|
|
$path, |
124
|
|
|
$pattern, |
125
|
|
|
$matcher->getError() |
126
|
|
|
) |
127
|
|
|
); |
128
|
|
|
} |
129
|
|
|
} |
130
|
|
|
|
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..