Changeset 38433 for trunk/tests/phpunit/tests/post/thumbnails.php
- Timestamp:
- 08/29/2016 12:24:09 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/thumbnails.php
r38398 r38433 238 238 $GLOBALS['post'] = self::$post; 239 239 $_REQUEST['_thumbnail_id'] = self::$attachment_id; 240 $_REQUEST['preview_id'] = self::$post->ID; 240 241 241 242 $result = _wp_preview_post_thumbnail_filter( '', self::$post->ID, '_thumbnail_id' ); 243 244 // Clean up. 245 $GLOBALS['post'] = $old_post; 246 unset( $_REQUEST['_thumbnail_id'] ); 247 unset( $_REQUEST['preview_id'] ); 248 242 249 $this->assertEquals( self::$attachment_id, $result ); 243 250 } 251 252 /** 253 * @ticket 37697 254 */ 255 function test__wp_preview_post_thumbnail_filter_secondary_post() { 256 $old_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null; 257 258 $secondary_post = self::factory()->post->create( array( 259 'post_stauts' => 'publish', 260 ) 261 ); 262 263 $GLOBALS['post'] = self::$post; 264 $_REQUEST['_thumbnail_id'] = self::$attachment_id; 265 $_REQUEST['preview_id'] = $secondary_post; 266 267 $result = _wp_preview_post_thumbnail_filter( '', self::$post->ID, '_thumbnail_id' ); 268 269 // Clean up. 270 $GLOBALS['post'] = $old_post; 244 271 unset( $_REQUEST['_thumbnail_id'] ); 245 if ( null === $old_post ) { 246 unset( $GLOBALS['post'] ); 247 } else { 248 $GLOBALS['post'] = $old_post; 249 } 272 unset( $_REQUEST['preview_id'] ); 273 274 $this->assertEmpty( $result ); 250 275 } 251 276
Note: See TracChangeset
for help on using the changeset viewer.