forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultisite.php
More file actions
82 lines (71 loc) · 1.9 KB
/
multisite.php
File metadata and controls
82 lines (71 loc) · 1.9 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
<?php
if ( is_multisite() ) :
/**
* A set of unit tests for WordPress Multisite
*
* @group multisite
*/
class Tests_Multisite extends WP_UnitTestCase {
public function test_wpmu_log_new_registrations() {
global $wpdb;
$user = new WP_User( 1 );
$ip = preg_replace( '/[^0-9., ]/', '', $_SERVER['REMOTE_ADDR'] );
wpmu_log_new_registrations( 1, 1 );
// Currently there is no wrapper function for the registration_log.
$reg_blog = $wpdb->get_col( $wpdb->prepare( "SELECT email FROM {$wpdb->registration_log} WHERE {$wpdb->registration_log}.blog_id = 1 AND IP LIKE %s", $ip ) );
$this->assertSame( $user->user_email, $reg_blog[ count( $reg_blog ) - 1 ] );
}
/**
* @ticket 37392
*/
public function test_wp_count_sites() {
// Create a random number of sites with each status.
$site_ids = array(
'public' => self::factory()->blog->create_many(
random_int( 0, 5 ),
array(
'public' => 1,
)
),
'archived' => self::factory()->blog->create_many(
random_int( 0, 5 ),
array(
'public' => 0,
'archived' => 1,
)
),
'mature' => self::factory()->blog->create_many(
random_int( 0, 5 ),
array(
'public' => 0,
'mature' => 1,
)
),
'spam' => self::factory()->blog->create_many(
random_int( 0, 5 ),
array(
'public' => 0,
'spam' => 1,
)
),
'deleted' => self::factory()->blog->create_many(
random_int( 0, 5 ),
array(
'public' => 0,
'deleted' => 1,
)
),
);
$counts = wp_count_sites();
$counts_by_status = array_map( 'count', $site_ids );
$expected = array_merge(
array( 'all' => array_sum( $counts_by_status ) ),
$counts_by_status
);
// Add 1 to all & public for the main site.
$expected['all'] += 1;
$expected['public'] += 1;
$this->assertSame( $expected, $counts );
}
}
endif;