5
5
namespace Codeception \Module \Symfony ;
6
6
7
7
use PHPUnit \Framework \Constraint \Constraint ;
8
- use PHPUnit \Framework \Constraint \LogicalAnd ;
9
8
use PHPUnit \Framework \Constraint \LogicalNot ;
10
9
use Symfony \Component \BrowserKit \Test \Constraint \BrowserCookieValueSame ;
11
10
use Symfony \Component \BrowserKit \Test \Constraint \BrowserHasCookie ;
25
24
trait BrowserAssertionsTrait
26
25
{
27
26
/**
28
- * Asserts the given cookie in the test Client is set to the expected value.
27
+ * Asserts that the given cookie in the test client is set to the expected value.
29
28
*/
30
29
public function assertBrowserCookieValueSame (string $ name , string $ expectedValue , bool $ raw = false , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
31
30
{
32
- $ this ->assertThatForClient (LogicalAnd::fromConstraints (
33
- new BrowserHasCookie ($ name , $ path , $ domain ),
34
- new BrowserCookieValueSame ($ name , $ expectedValue , $ raw , $ path , $ domain )
35
- ), $ message );
31
+ $ this ->assertThatForClient (new BrowserHasCookie ($ name , $ path , $ domain ), $ message );
32
+ $ this ->assertThatForClient (new BrowserCookieValueSame ($ name , $ expectedValue , $ raw , $ path , $ domain ), $ message );
36
33
}
37
34
38
35
/**
39
- * Asserts that the test Client does have the given cookie set (meaning, the cookie was set by any response in the test).
36
+ * Asserts that the test client has the specified cookie set.
37
+ * This indicates that the cookie was set by any response during the test.
40
38
*/
41
39
public function assertBrowserHasCookie (string $ name , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
42
40
{
43
41
$ this ->assertThatForClient (new BrowserHasCookie ($ name , $ path , $ domain ), $ message );
44
42
}
45
43
46
44
/**
47
- * Asserts that the test Client does not have the given cookie set (meaning, the cookie was set by any response in the test).
45
+ * Asserts that the test client does not have the specified cookie set.
46
+ * This indicates that the cookie was not set by any response during the test.
48
47
*/
49
48
public function assertBrowserNotHasCookie (string $ name , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
50
49
{
51
50
$ this ->assertThatForClient (new LogicalNot (new BrowserHasCookie ($ name , $ path , $ domain )), $ message );
52
51
}
53
52
54
53
/**
55
- * Asserts the given request attribute is set to the expected value.
54
+ * Asserts that the specified request attribute matches the expected value.
56
55
*/
57
56
public function assertRequestAttributeValueSame (string $ name , string $ expectedValue , string $ message = '' ): void
58
57
{
59
58
$ this ->assertThat ($ this ->getClient ()->getRequest (), new RequestAttributeValueSame ($ name , $ expectedValue ), $ message );
60
59
}
61
60
62
61
/**
63
- * Asserts the given cookie is present and set to the expected value.
62
+ * Asserts that the specified response cookie is present and matches the expected value.
64
63
*/
65
64
public function assertResponseCookieValueSame (string $ name , string $ expectedValue , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
66
65
{
67
- $ this ->assertThatForResponse (LogicalAnd::fromConstraints (
68
- new ResponseHasCookie ($ name , $ path , $ domain ),
69
- new ResponseCookieValueSame ($ name , $ expectedValue , $ path , $ domain )
70
- ), $ message );
66
+ $ this ->assertThatForResponse (new ResponseHasCookie ($ name , $ path , $ domain ), $ message );
67
+ $ this ->assertThatForResponse (new ResponseCookieValueSame ($ name , $ expectedValue , $ path , $ domain ), $ message );
71
68
}
72
69
73
70
/**
74
- * Asserts the response format returned by the `Response::getFormat()` method is the same as the expected value .
71
+ * Asserts that the response format matches the expected format. This checks the format returned by the `Response::getFormat()` method.
75
72
*/
76
73
public function assertResponseFormatSame (?string $ expectedFormat , string $ message = '' ): void
77
74
{
78
75
$ this ->assertThatForResponse (new ResponseFormatSame ($ this ->getClient ()->getRequest (), $ expectedFormat ), $ message );
79
76
}
80
77
81
78
/**
82
- * Asserts the given cookie is present in the response (optionally checking for a specific cookie path or domain) .
79
+ * Asserts that the specified cookie is present in the response. Optionally, it can check for a specific cookie path or domain.
83
80
*/
84
81
public function assertResponseHasCookie (string $ name , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
85
82
{
86
83
$ this ->assertThatForResponse (new ResponseHasCookie ($ name , $ path , $ domain ), $ message );
87
84
}
88
85
89
86
/**
90
- * Asserts the given header is available on the response, e.g. assertResponseHasHeader('content-type');.
87
+ * Asserts that the specified header is available in the response.
88
+ * For example, use `assertResponseHasHeader('content-type');`.
91
89
*/
92
90
public function assertResponseHasHeader (string $ headerName , string $ message = '' ): void
93
91
{
94
92
$ this ->assertThatForResponse (new ResponseHasHeader ($ headerName ), $ message );
95
93
}
96
94
97
95
/**
98
- * Asserts the given header does not contain the expected value on the response,
99
- * e.g. assertResponseHeaderNotSame('content-type', 'application/octet-stream');.
96
+ * Asserts that the specified header does not contain the expected value in the response.
97
+ * For example, use ` assertResponseHeaderNotSame('content-type', 'application/octet-stream');` .
100
98
*/
101
99
public function assertResponseHeaderNotSame (string $ headerName , string $ expectedValue , string $ message = '' ): void
102
100
{
103
101
$ this ->assertThatForResponse (new LogicalNot (new ResponseHeaderSame ($ headerName , $ expectedValue )), $ message );
104
102
}
105
103
106
104
/**
107
- * Asserts the given header does contain the expected value on the response,
108
- * e.g. assertResponseHeaderSame('content-type', 'application/octet-stream');.
105
+ * Asserts that the specified header contains the expected value in the response.
106
+ * For example, use ` assertResponseHeaderSame('content-type', 'application/octet-stream');` .
109
107
*/
110
108
public function assertResponseHeaderSame (string $ headerName , string $ expectedValue , string $ message = '' ): void
111
109
{
112
110
$ this ->assertThatForResponse (new ResponseHeaderSame ($ headerName , $ expectedValue ), $ message );
113
111
}
114
112
115
113
/**
116
- * Asserts that the response was successful (HTTP status is 2xx).
114
+ * Asserts that the response was successful (HTTP status code is in the 2xx range ).
117
115
*/
118
116
public function assertResponseIsSuccessful (string $ message = '' , bool $ verbose = true ): void
119
117
{
120
118
$ this ->assertThatForResponse (new ResponseIsSuccessful ($ verbose ), $ message );
121
119
}
122
120
123
121
/**
124
- * Asserts the response is unprocessable (HTTP status is 422)
122
+ * Asserts that the response is unprocessable (HTTP status code is 422).
125
123
*/
126
124
public function assertResponseIsUnprocessable (string $ message = '' , bool $ verbose = true ): void
127
125
{
128
126
$ this ->assertThatForResponse (new ResponseIsUnprocessable ($ verbose ), $ message );
129
127
}
130
128
131
129
/**
132
- * Asserts the given cookie is not present in the response (optionally checking for a specific cookie path or domain) .
130
+ * Asserts that the specified cookie is not present in the response. Optionally, it can check for a specific cookie path or domain.
133
131
*/
134
132
public function assertResponseNotHasCookie (string $ name , string $ path = '/ ' , ?string $ domain = null , string $ message = '' ): void
135
133
{
136
134
$ this ->assertThatForResponse (new LogicalNot (new ResponseHasCookie ($ name , $ path , $ domain )), $ message );
137
135
}
138
136
139
137
/**
140
- * Asserts the given header is not available on the response, e.g. assertResponseNotHasHeader('content-type');.
138
+ * Asserts that the specified header is not available in the response.
139
+ * For example, use `assertResponseNotHasHeader('content-type');`.
141
140
*/
142
141
public function assertResponseNotHasHeader (string $ headerName , string $ message = '' ): void
143
142
{
144
143
$ this ->assertThatForResponse (new LogicalNot (new ResponseHasHeader ($ headerName )), $ message );
145
144
}
146
145
147
146
/**
148
- * Asserts the response is a redirect response (optionally , you can check the target location and status code) .
149
- * The excepted location can be either an absolute or a relative path.
147
+ * Asserts that the response is a redirect. Optionally , you can check the target location and status code.
148
+ * The expected location can be either an absolute or a relative path.
150
149
*/
151
150
public function assertResponseRedirects (?string $ expectedLocation = null , ?int $ expectedCode = null , string $ message = '' , bool $ verbose = true ): void
152
151
{
153
- $ constraint = new ResponseIsRedirected ($ verbose );
154
- if ($ expectedLocation ) {
155
- if (class_exists (ResponseHeaderLocationSame::class)) {
156
- $ locationConstraint = new ResponseHeaderLocationSame ($ this ->getClient ()->getRequest (), $ expectedLocation );
157
- } else {
158
- $ locationConstraint = new ResponseHeaderSame ('Location ' , $ expectedLocation );
159
- }
152
+ $ this ->assertThatForResponse (new ResponseIsRedirected ($ verbose ), $ message );
160
153
161
- $ constraint = LogicalAnd::fromConstraints ($ constraint , $ locationConstraint );
154
+ if ($ expectedLocation ) {
155
+ $ constraint = class_exists (ResponseHeaderLocationSame::class)
156
+ ? new ResponseHeaderLocationSame ($ this ->getClient ()->getRequest (), $ expectedLocation )
157
+ : new ResponseHeaderSame ('Location ' , $ expectedLocation );
158
+ $ this ->assertThatForResponse ($ constraint , $ message );
162
159
}
160
+
163
161
if ($ expectedCode ) {
164
- $ constraint = LogicalAnd:: fromConstraints ( $ constraint , new ResponseStatusCodeSame ($ expectedCode ));
162
+ $ this -> assertThatForResponse ( new ResponseStatusCodeSame ($ expectedCode ), $ message );
165
163
}
166
-
167
- $ this ->assertThatForResponse ($ constraint , $ message );
168
164
}
169
165
170
166
/**
171
- * Asserts a specific HTTP status code.
167
+ * Asserts that the response status code matches the expected code.
172
168
*/
173
169
public function assertResponseStatusCodeSame (int $ expectedCode , string $ message = '' , bool $ verbose = true ): void
174
170
{
@@ -178,23 +174,18 @@ public function assertResponseStatusCodeSame(int $expectedCode, string $message
178
174
/**
179
175
* Asserts the request matches the given route and optionally route parameters.
180
176
*/
181
- public function assertRouteSame (string $ expectedRoute , array $ parameters = [], string $ message = '' ): void
182
- {
183
- $ constraint = new RequestAttributeValueSame ('_route ' , $ expectedRoute );
184
- $ constraints = [];
177
+ public function assertRouteSame (string $ expectedRoute , array $ parameters = [], string $ message = '' ): void {
178
+ $ request = $ this -> getClient ()-> getRequest ();
179
+ $ this -> assertThat ( $ request , new RequestAttributeValueSame ('_route ' , $ expectedRoute) );
180
+
185
181
foreach ($ parameters as $ key => $ value ) {
186
- $ constraints [] = new RequestAttributeValueSame ($ key , $ value );
187
- }
188
- if ($ constraints ) {
189
- $ constraint = LogicalAnd::fromConstraints ($ constraint , ...$ constraints );
182
+ $ this ->assertThat ($ request , new RequestAttributeValueSame ($ key , $ value ), $ message );
190
183
}
191
-
192
- $ this ->assertThat ($ this ->getClient ()->getRequest (), $ constraint , $ message );
193
184
}
194
185
195
186
/**
196
- * Reboot client's kernel.
197
- * Can be used to manually reboot kernel when 'rebootable_client' => false
187
+ * Reboots the client's kernel.
188
+ * Can be used to manually reboot the kernel when 'rebootable_client' is set to false.
198
189
*
199
190
* ```php
200
191
* <?php
@@ -214,7 +205,7 @@ public function rebootClientKernel(): void
214
205
215
206
/**
216
207
* Verifies that a page is available.
217
- * By default, it checks the current page, specify the `$url` parameter to change it .
208
+ * By default, it checks the current page. Specify the `$url` parameter to change the page being checked .
218
209
*
219
210
* ```php
220
211
* <?php
@@ -224,7 +215,7 @@ public function rebootClientKernel(): void
224
215
* $I->seePageIsAvailable('/dashboard'); // Same as above
225
216
* ```
226
217
*
227
- * @param string|null $url
218
+ * @param string|null $url The URL of the page to check. If null, the current page is checked.
228
219
*/
229
220
public function seePageIsAvailable (?string $ url = null ): void
230
221
{
@@ -237,7 +228,7 @@ public function seePageIsAvailable(?string $url = null): void
237
228
}
238
229
239
230
/**
240
- * Goes to a page and check that it redirects to another.
231
+ * Navigates to a page and verifies that it redirects to another page .
241
232
*
242
233
* ```php
243
234
* <?php
@@ -246,21 +237,24 @@ public function seePageIsAvailable(?string $url = null): void
246
237
*/
247
238
public function seePageRedirectsTo (string $ page , string $ redirectsTo ): void
248
239
{
249
- $ this ->getClient ()->followRedirects (false );
240
+ $ client = $ this ->getClient ();
241
+ $ client ->followRedirects (false );
250
242
$ this ->amOnPage ($ page );
251
- $ response = $ this -> getClient ()-> getResponse ();
243
+
252
244
$ this ->assertTrue (
253
- $ response ->isRedirection ()
245
+ $ client ->getResponse ()->isRedirection (),
246
+ 'The response is not a redirection. '
254
247
);
255
- $ this ->getClient ()->followRedirect ();
248
+
249
+ $ client ->followRedirect ();
256
250
$ this ->seeInCurrentUrl ($ redirectsTo );
257
251
}
258
252
259
253
/**
260
- * Submit a form specifying the form name only once.
254
+ * Submits a form by specifying the form name only once.
261
255
*
262
256
* Use this function instead of [`$I->submitForm()`](#submitForm) to avoid repeating the form name in the field selectors.
263
- * If you customized the names of the field selectors use `$I->submitForm()` for full control.
257
+ * If you have customized the names of the field selectors, use `$I->submitForm()` for full control.
264
258
*
265
259
* ```php
266
260
* <?php
@@ -270,8 +264,8 @@ public function seePageRedirectsTo(string $page, string $redirectsTo): void
270
264
* ]);
271
265
* ```
272
266
*
273
- * @param string $name The `name` attribute of the `<form>` (you cannot use an array as selector here)
274
- * @param string[] $fields
267
+ * @param string $name The `name` attribute of the `<form>`. You cannot use an array as a selector here.
268
+ * @param array< string, mixed> $fields The form fields to submit.
275
269
*/
276
270
public function submitSymfonyForm (string $ name , array $ fields ): void
277
271
{
0 commit comments