forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwpSendUserRequest.php
More file actions
396 lines (327 loc) · 12.6 KB
/
wpSendUserRequest.php
File metadata and controls
396 lines (327 loc) · 12.6 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?php
/**
* Test cases for the `wp_send_user_request()` function.
*
* @package WordPress
* @since 4.9.9
*
* @group privacy
* @group user
* @covers ::wp_send_user_request
*/
class Tests_User_wpSendUserRequest extends WP_UnitTestCase {
/**
* Test administrator user.
*
* @since 4.9.9
*
* @var WP_User $admin_user
*/
protected static $admin_user;
/**
* Test subscriber user.
*
* @since 4.9.9
*
* @var WP_User $test_user
*/
protected static $test_user;
/**
* Create users for tests.
*
* @since 4.9.9
*
* @param WP_UnitTest_Factory $factory Test fixture factory.
*/
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
self::$admin_user = $factory->user->create_and_get(
array(
'user_email' => 'admin@local.dev',
'role' => 'administrator',
)
);
self::$test_user = $factory->user->create_and_get(
array(
'user_email' => 'export-user@local.dev',
'role' => 'subscriber',
)
);
}
/**
* Reset the mocked phpmailer instance before each test method.
*
* @since 4.9.9
*/
public function set_up() {
parent::set_up();
set_current_screen( 'dashboard' );
reset_phpmailer_instance();
}
/**
* Reset the mocked phpmailer instance after each test method.
*
* @since 4.9.9
*/
public function tear_down() {
reset_phpmailer_instance();
unset( $GLOBALS['locale'] );
restore_previous_locale();
parent::tear_down();
}
/**
* The function should error when the request ID is invalid.
*
* @ticket 43985
*/
public function test_should_error_when_invalid_request_id() {
$result = wp_send_user_request( null );
$this->assertWPError( $result );
$this->assertSame( 'invalid_request', $result->get_error_code() );
}
/**
* The function should send a user request export email when the requester is a registered user.
*
* @ticket 43985
*/
public function test_should_send_user_request_export_email_when_requester_registered_user() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'export_personal_data' );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertSame( self::$test_user->user_email, $mailer->get_recipient( 'to' )->address );
$this->assertStringContainsString( 'Confirm Action: Export Personal Data', $mailer->get_sent()->subject );
$this->assertStringContainsString( 'action=confirmaction&request_id=', $mailer->get_sent()->body );
$this->assertStringContainsString( 'Export Personal Data', $mailer->get_sent()->body );
}
/**
* The function should send a user request erase email when the requester is a registered user.
*
* @ticket 43985
*/
public function test_should_send_user_request_erase_email_when_requester_registered_user() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertSame( self::$test_user->user_email, $mailer->get_recipient( 'to' )->address );
$this->assertStringContainsString( 'Confirm Action: Erase Personal Data', $mailer->get_sent()->subject );
$this->assertStringContainsString( 'action=confirmaction&request_id=', $mailer->get_sent()->body );
$this->assertStringContainsString( 'Erase Personal Data', $mailer->get_sent()->body );
}
/**
* The function should send a user request export email when the requester is an un-registered user.
*
* @ticket 43985
*/
public function test_should_send_user_request_export_email_when_user_not_registered() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'export_personal_data' );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertSame( self::$test_user->user_email, $mailer->get_recipient( 'to' )->address );
$this->assertStringContainsString( 'Confirm Action: Export Personal Data', $mailer->get_sent()->subject );
$this->assertStringContainsString( 'action=confirmaction&request_id=', $mailer->get_sent()->body );
$this->assertStringContainsString( 'Export Personal Data', $mailer->get_sent()->body );
}
/**
* The function should send a user request erase email when the requester is an un-registered user.
*
* @ticket 43985
*/
public function test_should_send_user_request_erase_email_when_user_not_registered() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertSame( self::$test_user->user_email, $mailer->get_recipient( 'to' )->address );
$this->assertStringContainsString( 'Confirm Action: Erase Personal Data', $mailer->get_sent()->subject );
$this->assertStringContainsString( 'action=confirmaction&request_id=', $mailer->get_sent()->body );
$this->assertStringContainsString( 'Erase Personal Data', $mailer->get_sent()->body );
}
/**
* The email subject should be filterable.
*
* @ticket 43985
*/
public function test_email_subject_should_be_filterable() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
add_filter( 'user_request_action_email_subject', array( $this, 'modify_email_subject' ) );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertSame( 'Custom Email Subject', $mailer->get_sent()->subject );
}
/**
* Filter callback to modify the subject of the email sent when an account action is attempted.
*
* @since 4.9.9
*
* @param string $subject The email subject.
* @return string Filtered email subject.
*/
public function modify_email_subject( $subject ) {
return 'Custom Email Subject';
}
/**
* The email content should be filterable.
*
* @ticket 43985
*/
public function test_email_content_should_be_filterable() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
add_filter( 'user_request_action_email_content', array( $this, 'modify_email_content' ), 10, 2 );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertTrue( $result );
$this->assertStringContainsString( 'Custom Email Content.', $mailer->get_sent()->body );
}
/**
* Filter callback to modify the content of the email sent when an account action is attempted.
*
* @since 4.9.9
*
* @param string $email_text Confirmation email text.
* @return string Filtered email text.
*/
public function modify_email_content( $email_text ) {
return 'Custom Email Content.';
}
/**
* The email headers should be filterable.
*
* @since 5.4.0
*
* @ticket 44501
*/
public function test_email_headers_should_be_filterable() {
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
add_filter( 'user_request_action_email_headers', array( $this, 'modify_email_headers' ) );
$result = wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'From: Tester <tester@example.com>', $mailer->get_sent()->header );
}
/**
* Filter callback to modify the headers of the email sent when an account action is attempted.
*
* @since 5.4.0
*
* @param string|array $headers The email headers.
* @return array The new email headers.
*/
public function modify_email_headers( $headers ) {
$headers = array(
'From: Tester <tester@example.com>',
);
return $headers;
}
/**
* The function should error when the email was not sent.
*
* @ticket 43985
*/
public function test_return_wp_error_when_sending_fails() {
$request_id = wp_create_user_request( 'erase.request.from.unregistered.user@example.com', 'remove_personal_data' );
add_filter( 'wp_mail_from', '__return_empty_string' ); // Cause `wp_mail()` to return false.
$result = wp_send_user_request( $request_id );
$this->assertWPError( $result );
$this->assertSame( 'privacy_email_error', $result->get_error_code() );
}
/**
* The function should respect the user locale settings when the site uses the default locale.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_user_locale() {
update_user_meta( self::$test_user->ID, 'locale', 'es_ES' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( self::$test_user->user_email, 'export_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Confirmar la', $mailer->get_sent()->subject );
}
/**
* The function should respect the user locale settings when the site does not use en_US, the administrator
* uses the site's default locale, and the user has a different locale.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_user_locale_when_site_is_not_en_us() {
update_option( 'WPLANG', 'es_ES' );
switch_to_locale( 'es_ES' );
update_user_meta( self::$test_user->ID, 'locale', 'de_DE' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( self::$test_user->user_email, 'remove_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Aktion bestätigen', $mailer->get_sent()->subject );
}
/**
* The function should respect the user locale settings when the site is not en_US, the administrator
* has a different selected locale, and the user uses the site's default locale.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_user_locale_when_admin_and_site_have_different_locales() {
update_option( 'WPLANG', 'es_ES' );
switch_to_locale( 'es_ES' );
update_user_meta( self::$admin_user->ID, 'locale', 'de_DE' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( self::$test_user->user_email, 'export_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Confirmar la', $mailer->get_sent()->subject );
}
/**
* The function should respect the user locale settings when the site is not en_US and both the
* administrator and the user use different locales.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_user_locale_when_both_have_different_locales_than_site() {
update_option( 'WPLANG', 'es_ES' );
switch_to_locale( 'es_ES' );
update_user_meta( self::$admin_user->ID, 'locale', 'de_DE' );
update_user_meta( self::$test_user->ID, 'locale', 'en_US' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( self::$test_user->user_email, 'export_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Confirm Action', $mailer->get_sent()->subject );
}
/**
* The function should respect the site's locale when the request is for an unregistered user and the
* administrator does not use the site's locale.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_site_locale() {
update_user_meta( self::$admin_user->ID, 'locale', 'es_ES' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( 'erase-user-not-registered@example.com', 'remove_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Confirm Action', $mailer->get_sent()->subject );
}
/**
* The function should respect the site's locale when it is not en_US, the request is for an
* unregistered user, and the administrator does not use the site's default locale.
*
* @ticket 43985
* @group l10n
*/
public function test_should_send_user_request_email_in_site_locale_when_not_en_us_and_admin_has_different_locale() {
update_option( 'WPLANG', 'es_ES' );
switch_to_locale( 'es_ES' );
update_user_meta( self::$admin_user->ID, 'locale', 'de_DE' );
wp_set_current_user( self::$admin_user->ID );
$request_id = wp_create_user_request( 'export-user-not-registered@example.com', 'remove_personal_data' );
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertStringContainsString( 'Confirmar la', $mailer->get_sent()->subject );
}
}