forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.php
More file actions
784 lines (622 loc) · 22.8 KB
/
user.php
File metadata and controls
784 lines (622 loc) · 22.8 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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
<?php
// test functions in wp-includes/user.php
/**
* @group user
*/
class Tests_User extends WP_UnitTestCase {
protected $user_data;
function setUp() {
parent::setUp();
$this->user_data = array(
'user_login' => 'user1',
'user_nicename' => 'userone',
'user_pass' => 'password',
'first_name' => 'John',
'last_name' => 'Doe',
'display_name' => 'John Doe',
'user_email' => 'blackburn@battlefield3.com',
'user_url' => 'http://tacos.com'
);
}
function test_get_users_of_blog() {
// add one of each user role
$nusers = array();
foreach ( array('administrator', 'editor', 'author', 'contributor', 'subscriber' ) as $role ) {
$id = $this->factory->user->create( array( 'role' => $role ) );
$nusers[ $id ] = $id;
}
$user_list = get_users();
// find the role of each user as returned by get_users_of_blog
$found = array();
foreach ( $user_list as $user ) {
// only include the users we just created - there might be some others that existed previously
if ( isset( $nusers[$user->ID] ) ) {
$found[ $user->ID] = $user->ID;
}
}
// make sure every user we created was returned
$this->assertEquals($nusers, $found);
}
// simple get/set tests for user_option functions
function test_user_option() {
$key = rand_str();
$val = rand_str();
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
// get an option that doesn't exist
$this->assertFalse(get_user_option($key, $user_id));
// set and get
update_user_option( $user_id, $key, $val );
$this->assertEquals( $val, get_user_option($key, $user_id) );
// change and get again
$val2 = rand_str();
update_user_option( $user_id, $key, $val2 );
$this->assertEquals( $val2, get_user_option($key, $user_id) );
}
// simple tests for usermeta functions
function test_usermeta() {
$key = rand_str();
$val = rand_str();
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
// get a meta key that doesn't exist
$this->assertEquals( '', get_user_meta($user_id, $key, true));
// set and get
update_user_meta( $user_id, $key, $val );
$this->assertEquals( $val, get_user_meta($user_id, $key, true) );
// change and get again
$val2 = rand_str();
update_user_meta( $user_id, $key, $val2 );
$this->assertEquals( $val2, get_user_meta($user_id, $key, true) );
// delete and get
delete_user_meta( $user_id, $key );
$this->assertEquals( '', get_user_meta($user_id, $key, true) );
// delete by key AND value
update_user_meta( $user_id, $key, $val );
// incorrect key: key still exists
delete_user_meta( $user_id, $key, rand_str() );
$this->assertEquals( $val, get_user_meta($user_id, $key, true) );
// correct key: deleted
delete_user_meta( $user_id, $key, $val );
$this->assertEquals( '', get_user_meta($user_id, $key, true) );
}
// test usermeta functions in array mode
function test_usermeta_array() {
// some values to set
$vals = array(
rand_str() => 'val-'.rand_str(),
rand_str() => 'val-'.rand_str(),
rand_str() => 'val-'.rand_str(),
);
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
// there is already some stuff in the array
$this->assertTrue(is_array(get_user_meta($user_id)));
foreach ($vals as $k=>$v)
update_user_meta( $user_id, $k, $v );
// get the complete usermeta array
$out = get_user_meta($user_id);
// for reasons unclear, the resulting array is indexed numerically; meta keys are not included anywhere.
// so we'll just check to make sure our values are included somewhere.
foreach ($vals as $k=>$v)
$this->assertTrue(isset($out[$k]) && $out[$k][0] == $v);
// delete one key and check again
$keys = array_keys( $vals );
$key_to_delete = array_pop( $keys );
delete_user_meta($user_id, $key_to_delete);
$out = get_user_meta($user_id);
// make sure that key is excluded from the results
foreach ($vals as $k=>$v) {
if ($k == $key_to_delete)
$this->assertFalse(isset($out[$k]));
else
$this->assertTrue(isset($out[$k]) && $out[$k][0] == $v);
}
}
// Test property magic functions for property get/set/isset.
function test_user_properties() {
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
foreach ( $user->data as $key => $data ) {
$this->assertEquals( $data, $user->$key );
}
$this->assertTrue( isset( $user->$key ) );
$this->assertFalse( isset( $user->fooooooooo ) );
$user->$key = 'foo';
$this->assertEquals( 'foo', $user->$key );
$this->assertEquals( 'foo', $user->data->$key ); // This will fail with WP < 3.3
foreach ( (array) $user as $key => $value ) {
$this->assertEquals( $value, $user->$key );
}
}
// Test meta property magic functions for property get/set/isset.
function test_user_meta_properties() {
global $wpdb;
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
update_user_option( $user_id, 'foo', 'foo', true );
$this->assertTrue( isset( $user->foo ) );
$this->assertEquals( 'foo', $user->foo );
}
/**
* @expectedDeprecated WP_User->id
*/
function test_id_property_back_compat() {
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
$this->assertTrue( isset( $user->id ) );
$this->assertEquals( $user->ID, $user->id );
$user->id = 1234;
$this->assertEquals( $user->ID, $user->id );
}
/**
* ticket 19265
*/
function test_user_level_property_back_compat() {
$roles = array(
'administrator' => 10,
'editor' => 7,
'author' => 2,
'contributor' => 1,
'subscriber' => 0,
);
foreach ( $roles as $role => $level ) {
$user_id = $this->factory->user->create( array( 'role' => $role ) );
$user = new WP_User( $user_id );
$this->assertTrue( isset( $user->user_level ) );
$this->assertEquals( $level, $user->user_level );
}
}
function test_construction() {
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
$this->assertInstanceOf( 'WP_User', $user );
$this->assertEquals( $user_id, $user->ID );
$user2 = new WP_User( 0, $user->user_login );
$this->assertInstanceOf( 'WP_User', $user2 );
$this->assertEquals( $user_id, $user2->ID );
$this->assertEquals( $user->user_login, $user2->user_login );
$user3 = new WP_User();
$this->assertInstanceOf( 'WP_User', $user3 );
$this->assertEquals( 0, $user3->ID );
$this->assertFalse( isset( $user3->user_login ) );
$user3->init( $user->data );
$this->assertEquals( $user_id, $user3->ID );
$user4 = new WP_User( $user->user_login );
$this->assertInstanceOf( 'WP_User', $user4 );
$this->assertEquals( $user_id, $user4->ID );
$this->assertEquals( $user->user_login, $user4->user_login );
$user5 = new WP_User( null, $user->user_login );
$this->assertInstanceOf( 'WP_User', $user5 );
$this->assertEquals( $user_id, $user5->ID );
$this->assertEquals( $user->user_login, $user5->user_login );
$user6 = new WP_User( $user );
$this->assertInstanceOf( 'WP_User', $user6 );
$this->assertEquals( $user_id, $user6->ID );
$this->assertEquals( $user->user_login, $user6->user_login );
$user7 = new WP_User( $user->data );
$this->assertInstanceOf( 'WP_User', $user7 );
$this->assertEquals( $user_id, $user7->ID );
$this->assertEquals( $user->user_login, $user7->user_login );
}
function test_get() {
$user_id = $this->factory->user->create( array(
'role' => 'author',
'user_login' => 'test_wp_user_get',
'user_pass' => 'password',
'user_email' => 'test@test.com',
) );
$user = new WP_User( $user_id );
$this->assertEquals( 'test_wp_user_get', $user->get( 'user_login' ) );
$this->assertEquals( 'test@test.com', $user->get( 'user_email' ) );
$this->assertEquals( 0, $user->get( 'use_ssl' ) );
$this->assertEquals( '', $user->get( 'field_that_does_not_exist' ) );
update_user_meta( $user_id, 'dashed-key', 'abcdefg' );
$this->assertEquals( 'abcdefg', $user->get( 'dashed-key' ) );
}
function test_has_prop() {
$user_id = $this->factory->user->create( array(
'role' => 'author',
'user_login' => 'test_wp_user_has_prop',
'user_pass' => 'password',
'user_email' => 'test2@test.com',
) );
$user = new WP_User( $user_id );
$this->assertTrue( $user->has_prop( 'user_email') );
$this->assertTrue( $user->has_prop( 'use_ssl' ) );
$this->assertFalse( $user->has_prop( 'field_that_does_not_exist' ) );
update_user_meta( $user_id, 'dashed-key', 'abcdefg' );
$this->assertTrue( $user->has_prop( 'dashed-key' ) );
}
function test_update_user() {
$user_id = $this->factory->user->create( array(
'role' => 'author',
'user_login' => 'test_wp_update_user',
'user_pass' => 'password',
'user_email' => 'test3@test.com',
) );
$user = new WP_User( $user_id );
update_user_meta( $user_id, 'description', 'about me' );
$this->assertEquals( 'about me', $user->get( 'description' ) );
$user_data = array( 'ID' => $user_id, 'display_name' => 'test user' );
wp_update_user( $user_data );
$user = new WP_User( $user_id );
$this->assertEquals( 'test user', $user->get( 'display_name' ) );
// Make sure there is no collateral damage to fields not in $user_data
$this->assertEquals( 'about me', $user->get( 'description' ) );
// Pass as stdClass
$user_data = array( 'ID' => $user_id, 'display_name' => 'a test user' );
wp_update_user( (object) $user_data );
$user = new WP_User( $user_id );
$this->assertEquals( 'a test user', $user->get( 'display_name' ) );
// Pass as WP_User
$user = new WP_User( $user_id );
$user->display_name = 'some test user';
wp_update_user( $user );
$user = new WP_User( $user_id );
$this->assertEquals( 'some test user', $user->get( 'display_name' ) );
// Test update of fields in _get_additional_user_keys()
$user_data = array( 'ID' => $user_id, 'use_ssl' => 1, 'show_admin_bar_front' => 1,
'rich_editing' => 1, 'first_name' => 'first', 'last_name' => 'last',
'nickname' => 'nick', 'comment_shortcuts' => 'true', 'admin_color' => 'classic',
'description' => 'describe' );
wp_update_user( $user_data );
$user = new WP_User( $user_id );
foreach ( $user_data as $key => $value )
$this->assertEquals( $value, $user->get( $key ), $key );
}
/**
* ticket 19595
*/
function test_global_userdata() {
global $userdata, $wpdb;
$user_id = $this->factory->user->create( array( 'role' => 'subscriber' ) );
wp_set_current_user( $user_id );
$this->assertNotEmpty( $userdata );
$this->assertInstanceOf( 'WP_User', $userdata );
$this->assertEquals( $userdata->ID, $user_id );
$prefix = $wpdb->get_blog_prefix();
$cap_key = $prefix . 'capabilities';
$this->assertTrue( isset( $userdata->$cap_key ) );
}
/**
* ticket 19769
*/
function test_global_userdata_is_null_when_logged_out() {
global $userdata;
wp_set_current_user(0);
$this->assertNull( $userdata );
}
function test_exists() {
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
$this->assertTrue( $user->exists() );
$user = new WP_User( 123456789 );
$this->assertFalse( $user->exists() );
$user = new WP_User( 0 );
$this->assertFalse( $user->exists() );
}
function test_global_authordata() {
global $authordata, $id;
$old_post_id = $id;
$user_id = $this->factory->user->create( array( 'role' => 'author' ) );
$user = new WP_User( $user_id );
$post = array(
'post_author' => $user_id,
'post_status' => 'publish',
'post_content' => rand_str(),
'post_title' => rand_str(),
'post_type' => 'post'
);
// insert a post and make sure the ID is ok
$post_id = wp_insert_post( $post );
$this->assertTrue( is_numeric( $post_id ) );
setup_postdata( get_post( $post_id ) );
$this->assertNotEmpty( $authordata );
$this->assertInstanceOf( 'WP_User', $authordata );
$this->assertEquals( $authordata->ID, $user_id );
if ( $old_post_id )
setup_postdata( get_post( $old_post_id ) );
}
/**
* @ticket 13317
*/
function test_get_userdata() {
$this->assertFalse( get_userdata( 0 ) );
$this->assertFalse( get_userdata( '0' ) );
$this->assertFalse( get_userdata( 'string' ) );
$this->assertFalse( get_userdata( array( 'array' ) ) );
}
function test_user_get_data_by_id() {
$user_id = $this->factory->user->create();
$user = WP_User::get_data_by( 'id', $user_id );
$this->assertInstanceOf( 'stdClass', $user );
$this->assertEquals( $user_id, $user->ID );
// @ticket 23480
$user = WP_User::get_data_by( 'id', -1 );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', 0 );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', null );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', '' );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', false );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', @$user->user_nicename );
$this->assertEquals( false, $user );
$user = WP_User::get_data_by( 'id', 99999 );
$this->assertEquals( false, $user );
}
/**
* @ticket 21431
*/
function test_count_many_users_posts() {
$user_id_a = $this->factory->user->create( array( 'role' => 'author' ) );
$user_id_b = $this->factory->user->create( array( 'role' => 'author' ) );
$post_id_a = $this->factory->post->create( array( 'post_author' => $user_id_a ) );
$post_id_b = $this->factory->post->create( array( 'post_author' => $user_id_b ) );
$post_id_c = $this->factory->post->create( array( 'post_author' => $user_id_b, 'post_status' => 'private' ) );
wp_set_current_user( $user_id_a );
$counts = count_many_users_posts( array( $user_id_a, $user_id_b), 'post', false );
$this->assertEquals( 1, $counts[$user_id_a] );
$this->assertEquals( 1, $counts[$user_id_b] );
$counts = count_many_users_posts( array( $user_id_a, $user_id_b), 'post', true );
$this->assertEquals( 1, $counts[$user_id_a] );
$this->assertEquals( 1, $counts[$user_id_b] );
wp_set_current_user( $user_id_b );
$counts = count_many_users_posts( array( $user_id_a, $user_id_b), 'post', false );
$this->assertEquals( 1, $counts[$user_id_a] );
$this->assertEquals( 2, $counts[$user_id_b] );
$counts = count_many_users_posts( array( $user_id_a, $user_id_b), 'post', true );
$this->assertEquals( 1, $counts[$user_id_a] );
$this->assertEquals( 1, $counts[$user_id_b] );
}
/**
* @ticket 22858
*/
function test_wp_update_user_on_nonexistent_users() {
$user_id = 1;
// Find me a non-existent user ID.
while ( get_userdata( $user_id ) )
++$user_id;
// If this test fails, it will error out for calling the to_array() method on a non-object.
$this->assertInstanceOf( 'WP_Error', wp_update_user( array( 'ID' => $user_id ) ) );
}
/**
* @ticket 28315
*/
function test_user_meta_error() {
$id1 = wp_insert_user( array(
'user_login' => rand_str(),
'user_pass' => 'password',
'user_email' => 'taco@burrito.com',
) );
$this->assertEquals( $id1, email_exists( 'taco@burrito.com' ) );
$id2 = wp_insert_user( array(
'user_login' => rand_str(),
'user_pass' => 'password',
'user_email' => 'taco@burrito.com',
) );
if ( ! defined( 'WP_IMPORTING' ) ) {
$this->assertWPError( $id2 );
}
@update_user_meta( $id2, 'key', 'value' );
$metas = array_keys( get_user_meta( 1 ) );
$this->assertNotContains( 'key', $metas );
}
/**
* @ticket 30647
*/
function test_user_update_email_error() {
$id1 = wp_insert_user( array(
'user_login' => rand_str(),
'user_pass' => 'password',
'user_email' => 'blackburn@battlefield3.com',
) );
$this->assertEquals( $id1, email_exists( 'blackburn@battlefield3.com' ) );
$id2 = wp_insert_user( array(
'user_login' => rand_str(),
'user_pass' => 'password',
'user_email' => 'miller@battlefield3.com',
) );
$this->assertEquals( $id2, email_exists( 'miller@battlefield3.com' ) );
if( ! is_wp_error( $id2 ) ){
$return = wp_update_user( array(
'ID' => $id2,
'user_email' => 'david@battlefield3.com',
) );
$this->assertEquals( $id2, email_exists( 'david@battlefield3.com' ) );
$return = wp_update_user( array(
'ID' => $id2,
'user_email' => 'blackburn@battlefield3.com',
) );
if ( ! defined( 'WP_IMPORTING' ) ) {
$this->assertWPError( $return );
}
}
}
/**
* @ticket 29696
*/
public function test_wp_insert_user_should_sanitize_user_nicename_parameter() {
$user = $this->factory->user->create_and_get();
$userdata = $user->to_array();
$userdata['user_nicename'] = str_replace( '-', '.', $user->user_nicename );
wp_insert_user( $userdata );
$updated_user = new WP_User( $user->ID );
$this->assertSame( $user->user_nicename, $updated_user->user_nicename );
}
public function test_changing_email_invalidates_password_reset_key() {
global $wpdb;
$user = $this->factory->user->create_and_get();
$wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) );
clean_user_cache( $user );
$user = get_userdata( $user->ID );
$this->assertEquals( 'key', $user->user_activation_key );
// Check that changing something other than the email doesn't remove the key.
$userdata = array(
'ID' => $user->ID,
'user_nicename' => 'wat',
);
wp_update_user( $userdata );
$user = get_userdata( $user->ID );
$this->assertEquals( 'key', $user->user_activation_key );
// Now check that changing the email does remove it.
$userdata = array(
'ID' => $user->ID,
'user_nicename' => 'cat',
'user_email' => 'foo@bar.dev',
);
wp_update_user( $userdata );
$user = get_userdata( $user->ID );
$this->assertEmpty( $user->user_activation_key );
}
public function test_changing_password_invalidates_password_reset_key() {
global $wpdb;
$user = $this->factory->user->create_and_get();
$wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) );
clean_user_cache( $user );
$user = get_userdata( $user->ID );
$this->assertEquals( 'key', $user->user_activation_key );
$userdata = array(
'ID' => $user->ID,
'user_pass' => 'password',
);
wp_update_user( $userdata );
$user = get_userdata( $user->ID );
$this->assertEmpty( $user->user_activation_key );
}
public function test_search_users_login() {
$id = $this->factory->user->create( $this->user_data );
$users = get_users( array( 'search' => 'user1', 'fields' => 'ID' ) );
$this->assertTrue( in_array( $id, $users ) );
}
public function test_search_users_url() {
$id = $this->factory->user->create( $this->user_data );
$users = get_users( array( 'search' => '*tacos*', 'fields' => 'ID' ) );
$this->assertTrue( in_array( $id, $users ) );
}
public function test_search_users_email() {
$id = $this->factory->user->create( $this->user_data );
$users = get_users( array( 'search' => '*battle*', 'fields' => 'ID' ) );
$this->assertTrue( in_array( $id, $users ) );
}
public function test_search_users_nicename() {
$id = $this->factory->user->create( $this->user_data );
$users = get_users( array( 'search' => '*one*', 'fields' => 'ID' ) );
$this->assertTrue( in_array( $id, $users ) );
}
public function test_search_users_display_name() {
$id = $this->factory->user->create( $this->user_data );
$users = get_users( array( 'search' => '*Doe*', 'fields' => 'ID' ) );
$this->assertTrue( in_array( $id, $users ) );
}
/**
* @ticket 32158
*/
function test_email_case() {
// Create a test user with a lower-case email address.
$user_id = $this->factory->user->create( array(
'user_email' => 'test@test.com',
) );
// Alter the case of the email address (which stays the same).
$userdata = array(
'ID' => $user_id,
'user_email' => 'test@TEST.com',
);
$update = wp_update_user( $userdata );
$this->assertEquals( $user_id, $update );
}
/**
* @ticket 32158
*/
function test_email_change() {
// Create a test user.
$user_id = $this->factory->user->create( array(
'user_email' => 'test@test.com',
) );
// Change the email address.
$userdata = array(
'ID' => $user_id,
'user_email' => 'test2@test.com',
);
$update = wp_update_user( $userdata );
// Was this successful?
$this->assertEquals( $user_id, $update );
// Verify that the email address has been updated.
$user = get_userdata( $user_id );
$this->assertEquals( $user->user_email, 'test2@test.com' );
}
/**
* Testing wp_new_user_notification email statuses.
*
* @dataProvider data_wp_new_user_notifications
* @ticket 33654
*/
function test_wp_new_user_notification( $notify, $admin_email_sent_expected, $user_email_sent_expected ) {
unset( $GLOBALS['phpmailer']->mock_sent );
$was_admin_email_sent = false;
$was_user_email_sent = false;
$user = $this->factory->user->create( $this->user_data );
wp_new_user_notification( $user, null, $notify );
/*
* Check to see if a notification email was sent to the
* post author `blackburn@battlefield3.com` and and site admin `admin@example.org`.
*/
if ( ! empty( $GLOBALS['phpmailer']->mock_sent ) ) {
$was_admin_email_sent = ( isset( $GLOBALS['phpmailer']->mock_sent[0] ) && WP_TESTS_EMAIL == $GLOBALS['phpmailer']->mock_sent[0]['to'][0][0] );
$was_user_email_sent = ( isset( $GLOBALS['phpmailer']->mock_sent[1] ) && 'blackburn@battlefield3.com' == $GLOBALS['phpmailer']->mock_sent[1]['to'][0][0] );
}
$this->assertSame( $admin_email_sent_expected, $was_admin_email_sent, 'Admin email result was not as expected in test_wp_new_user_notification' );
$this->assertSame( $user_email_sent_expected , $was_user_email_sent, 'User email result was not as expected in test_wp_new_user_notification' );
}
/**
* Data provider for test_wp_new_user_notification().
*
* Passes the three available options for the $notify parameter and the expected email
* emails sent status as a bool.
*
* @return array {
* @type array {
* @type string $post_args The arguments that will merged with the $_POST array.
* @type bool $admin_email_sent_expected The expected result of whether an email was sent to the admin.
* @type bool $user_email_sent_expected The expected result of whether an email was sent to the user.
* }
* }
*/
function data_wp_new_user_notifications() {
return array(
array(
'',
true,
false,
),
array(
'admin',
true,
false,
),
array(
'both',
true,
true,
),
);
}
/**
* Set up a user and try sending a notification using the old, deprecated
* function signature `wp_new_user_notification( $user, 'plaintext_password' );`.
*
* @ticket 33654
* @expectedDeprecated wp_new_user_notification
*/
function test_wp_new_user_notification_old_signature_throws_deprecated_warning() {
$user = $this->factory->user->create(
array(
'role' => 'author',
'user_login' => 'test_wp_new_user_notification',
'user_pass' => 'password',
'user_email' => 'test@test.com',
)
);
wp_new_user_notification( $user, 'this_is_deprecated' );
}
}