Changeset 46979 for branches/5.3/tests/phpunit/tests/functions.php
- Timestamp:
- 12/17/2019 09:10:14 PM (5 years ago)
- Location:
- branches/5.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
-
branches/5.3/tests/phpunit/tests/functions.php
r46836 r46979 202 202 $testdir = DIR_TESTDATA . '/images/'; 203 203 204 add_filter( 'upload_dir', array( $this, 'upload_dir_patch_basedir' ) ); 205 204 206 // Test collision with "dimension-like" original filename. 205 207 $this->assertEquals( 'one-blue-pixel-100x100-1.png', wp_unique_filename( $testdir, 'one-blue-pixel-100x100.png' ) ); … … 207 209 // Existing files: one-blue-pixel-100x100.png, one-blue-pixel-1-100x100.png. 208 210 $this->assertEquals( 'one-blue-pixel-2.png', wp_unique_filename( $testdir, 'one-blue-pixel.png' ) ); 211 212 remove_filter( 'upload_dir', array( $this, 'upload_dir_patch_basedir' ) ); 213 } 214 215 // Callback to patch "basedir" when used in `wp_unique_filename()`. 216 function upload_dir_patch_basedir( $upload_dir ) { 217 $upload_dir['basedir'] = DIR_TESTDATA . '/images/'; 218 return $upload_dir; 209 219 } 210 220 … … 229 239 ), 230 240 ); 241 231 242 foreach ( $cases as $case ) { 232 243 $this->assertTrue( is_serialized( $case ), "Serialized data: $case" ); … … 238 249 's:4:test;', 239 250 ); 251 240 252 foreach ( $not_serialized as $case ) { 241 253 $this->assertFalse( is_serialized( $case ), "Test data: $case" );
Note: See TracChangeset
for help on using the changeset viewer.