forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsiteIcon.php
More file actions
171 lines (129 loc) · 5.16 KB
/
siteIcon.php
File metadata and controls
171 lines (129 loc) · 5.16 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
<?php
/**
* Tests for the WP_Site_Icon class.
*
* @group site_icon
*/
require_once ABSPATH . 'wp-admin/includes/class-wp-site-icon.php';
class Tests_WP_Site_Icon extends WP_UnitTestCase {
protected $wp_site_icon;
public $attachment_id = 0;
function setUp() {
parent::setUp();
$this->wp_site_icon = new WP_Site_Icon();
}
function tearDown() {
$this->_remove_custom_logo();
$this->remove_added_uploads();
parent::tearDown();
}
function _remove_custom_logo() {
remove_theme_mod( 'custom_logo' );
}
function test_intermediate_image_sizes() {
$image_sizes = $this->wp_site_icon->intermediate_image_sizes( array() );
$sizes = array();
foreach ( $this->wp_site_icon->site_icon_sizes as $size ) {
$sizes[] = 'site_icon-' . $size;
}
$this->assertSame( $sizes, $image_sizes );
}
function test_intermediate_image_sizes_with_filter() {
add_filter( 'site_icon_image_sizes', array( $this, '_custom_test_sizes' ) );
$image_sizes = $this->wp_site_icon->intermediate_image_sizes( array() );
$sizes = array();
foreach ( $this->wp_site_icon->site_icon_sizes as $size ) {
$sizes[] = 'site_icon-' . $size;
}
// Is our custom icon size there?
$this->assertContains( 'site_icon-321', $image_sizes );
// All icon sizes should be part of the array, including sizes added through the filter.
$this->assertSame( $sizes, $image_sizes );
// Remove custom size.
unset( $this->wp_site_icon->site_icon_sizes[ array_search( 321, $this->wp_site_icon->site_icon_sizes, true ) ] );
// Remove the filter we added.
remove_filter( 'site_icon_image_sizes', array( $this, '_custom_test_sizes' ) );
}
function test_additional_sizes() {
$image_sizes = $this->wp_site_icon->additional_sizes( array() );
$sizes = array();
foreach ( $this->wp_site_icon->site_icon_sizes as $size ) {
$sizes[ 'site_icon-' . $size ] = array(
'width ' => $size,
'height' => $size,
'crop' => true,
);
}
$this->assertSame( $sizes, $image_sizes );
}
function test_additional_sizes_with_filter() {
add_filter( 'site_icon_image_sizes', array( $this, '_custom_test_sizes' ) );
$image_sizes = $this->wp_site_icon->additional_sizes( array() );
$sizes = array();
foreach ( $this->wp_site_icon->site_icon_sizes as $size ) {
$sizes[ 'site_icon-' . $size ] = array(
'width ' => $size,
'height' => $size,
'crop' => true,
);
}
// Is our custom icon size there?
$this->assertArrayHasKey( 'site_icon-321', $image_sizes );
// All icon sizes should be part of the array, including sizes added through the filter.
$this->assertSame( $sizes, $image_sizes );
// Remove custom size.
unset( $this->wp_site_icon->site_icon_sizes[ array_search( 321, $this->wp_site_icon->site_icon_sizes, true ) ] );
}
function test_create_attachment_object() {
$attachment_id = $this->_insert_attachment();
$parent_url = get_post( $attachment_id )->guid;
$cropped = str_replace( wp_basename( $parent_url ), 'cropped-test-image.jpg', $parent_url );
$object = $this->wp_site_icon->create_attachment_object( $cropped, $attachment_id );
$this->assertSame( $object['post_title'], 'cropped-test-image.jpg' );
$this->assertSame( $object['context'], 'site-icon' );
$this->assertSame( $object['post_mime_type'], 'image/jpeg' );
$this->assertSame( $object['post_content'], $cropped );
$this->assertSame( $object['guid'], $cropped );
}
function test_insert_cropped_attachment() {
$attachment_id = $this->_insert_attachment();
$parent_url = get_post( $attachment_id )->guid;
$cropped = str_replace( wp_basename( $parent_url ), 'cropped-test-image.jpg', $parent_url );
$object = $this->wp_site_icon->create_attachment_object( $cropped, $attachment_id );
$cropped_id = $this->wp_site_icon->insert_attachment( $object, $cropped );
$this->assertIsInt( $cropped_id );
$this->assertGreaterThan( 0, $cropped_id );
}
function test_delete_attachment_data() {
$attachment_id = $this->_insert_attachment();
update_option( 'site_icon', $attachment_id );
wp_delete_attachment( $attachment_id, true );
$this->assertFalse( get_option( 'site_icon', false ) );
}
/**
* @ticket 34368
*/
function test_get_post_metadata() {
$attachment_id = $this->_insert_attachment();
update_option( 'site_icon', $attachment_id );
$this->wp_site_icon->get_post_metadata( '', $attachment_id, '_some_post_meta', true );
$this->assertFalse( has_filter( 'intermediate_image_sizes', array( $this->wp_site_icon, 'intermediate_image_sizes' ) ) );
$this->wp_site_icon->get_post_metadata( '', $attachment_id, '_wp_attachment_backup_sizes', true );
$this->assertSame( 10, has_filter( 'intermediate_image_sizes', array( $this->wp_site_icon, 'intermediate_image_sizes' ) ) );
wp_delete_attachment( $attachment_id, true );
}
function _custom_test_sizes( $sizes ) {
$sizes[] = 321;
return $sizes;
}
function _insert_attachment() {
if ( $this->attachment_id ) {
return $this->attachment_id;
}
$filename = DIR_TESTDATA . '/images/test-image.jpg';
$contents = file_get_contents( $filename );
$upload = wp_upload_bits( wp_basename( $filename ), null, $contents );
$this->attachment_id = $this->_make_attachment( $upload );
return $this->attachment_id;
}
}