| | 236 | |
| | 237 | /** |
| | 238 | * @ticket 12922 |
| | 239 | */ |
| | 240 | function test__wp_preview_post_thumbnail_filter() { |
| | 241 | $old_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null; |
| | 242 | |
| | 243 | $GLOBALS['post'] = self::$post; |
| | 244 | $_REQUEST['_thumbnail_id'] = self::$attachment_id; |
| | 245 | |
| | 246 | $result = _wp_preview_post_thumbnail_filter( '', self::$post->ID, '_thumbnail_id' ); |
| | 247 | $this->assertEquals( self::$attachment_id, $result ); |
| | 248 | |
| | 249 | unset( $_REQUEST['_thumbnail_id'] ); |
| | 250 | if ( null === $old_post ) { |
| | 251 | unset( $GLOBALS['post'] ); |
| | 252 | } else { |
| | 253 | $GLOBALS['post'] = $old_post; |
| | 254 | } |
| | 255 | } |
| | 256 | |
| | 257 | /** |
| | 258 | * @ticket 12922 |
| | 259 | */ |
| | 260 | function test_insert_post_with_post_thumbnail() { |
| | 261 | $post_id = wp_insert_post( array( |
| | 262 | 'ID' => self::$post->ID, |
| | 263 | 'post_status' => 'publish', |
| | 264 | 'post_content' => rand_str(), |
| | 265 | 'post_title' => rand_str(), |
| | 266 | '_thumbnail_id' => self::$attachment_id, |
| | 267 | ) ); |
| | 268 | |
| | 269 | $thumbnail_id = get_post_thumbnail_id( $post_id ); |
| | 270 | $this->assertEquals( self::$attachment_id, $thumbnail_id ); |
| | 271 | |
| | 272 | $post_id = wp_insert_post( array( |
| | 273 | 'ID' => $post_id, |
| | 274 | 'post_status' => 'publish', |
| | 275 | 'post_content' => rand_str(), |
| | 276 | 'post_title' => rand_str(), |
| | 277 | '_thumbnail_id' => -1, // -1 removes post thumbnail. |
| | 278 | ) ); |
| | 279 | |
| | 280 | $thumbnail_id = get_post_thumbnail_id( $post_id ); |
| | 281 | $this->assertEmpty( $thumbnail_id ); |
| | 282 | } |
| | 283 | |
| | 284 | /** |
| | 285 | * @ticket 37658 |
| | 286 | */ |
| | 287 | function test_insert_attachment_with_post_thumbnail() { |
| | 288 | // Audio files support featured images. |
| | 289 | $post_id = wp_insert_post( array( |
| | 290 | 'post_type' => 'attachment', |
| | 291 | 'post_status' => 'inherit', |
| | 292 | 'post_content' => rand_str(), |
| | 293 | 'post_title' => rand_str(), |
| | 294 | 'post_mime_type' => 'audio/mpeg', |
| | 295 | 'post_parent' => 0, |
| | 296 | 'file' => DIR_TESTDATA . '/images/canola.jpg', |
| | 297 | '_thumbnail_id' => self::$attachment_id, |
| | 298 | ) ); |
| | 299 | |
| | 300 | $thumbnail_id = get_post_thumbnail_id( $post_id ); |
| | 301 | $this->assertEquals( self::$attachment_id, $thumbnail_id ); |
| | 302 | |
| | 303 | // Images do not support featured images. |
| | 304 | $post_id = wp_insert_post( array( |
| | 305 | 'post_type' => 'attachment', |
| | 306 | 'post_status' => 'inherit', |
| | 307 | 'post_content' => rand_str(), |
| | 308 | 'post_title' => rand_str(), |
| | 309 | 'post_mime_type' => 'image/jpeg', |
| | 310 | 'post_parent' => 0, |
| | 311 | 'file' => DIR_TESTDATA . '/images/canola.jpg', |
| | 312 | '_thumbnail_id' => self::$attachment_id, |
| | 313 | ) ); |
| | 314 | |
| | 315 | $thumbnail_id = get_post_thumbnail_id( $post_id ); |
| | 316 | $this->assertEmpty( $thumbnail_id ); |
| | 317 | } |