wordpress-develop/tests/phpunit/tests/filesystem/base.php
Gary Pendergast 8f95800d52 Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.



git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
2017-11-30 23:09:33 +00:00

44 lines
1.3 KiB
PHP

<?php
/**
* This class is designed to make use of MockFS, a Virtual in-memory filesystem compatible with WP_Filesystem
*/
abstract class WP_Filesystem_UnitTestCase extends WP_UnitTestCase {
function setUp() {
add_filter( 'filesystem_method_file', array( $this, 'filter_abstraction_file' ) );
add_filter( 'filesystem_method', array( $this, 'filter_fs_method' ) );
WP_Filesystem();
}
function tearDown() {
global $wp_filesystem;
remove_filter( 'filesystem_method_file', array( $this, 'filter_abstraction_file' ) );
remove_filter( 'filesystem_method', array( $this, 'filter_fs_method' ) );
unset( $wp_filesystem );
parent::tearDown();
}
function filter_fs_method( $method ) {
return 'MockFS';
}
function filter_abstraction_file( $file ) {
return dirname( dirname( dirname( __FILE__ ) ) ) . '/includes/mock-fs.php';
}
function test_is_MockFS_sane() {
global $wp_filesystem;
$this->assertTrue( is_a( $wp_filesystem, 'WP_Filesystem_MockFS' ) );
$wp_filesystem->init( '/' );
// Test creation/exists checks
$this->assertFalse( $wp_filesystem->is_dir( '/test/' ) );
$wp_filesystem->mkdir( '/test' );
$this->assertTrue( $wp_filesystem->exists( '/test' ) );
$this->assertTrue( $wp_filesystem->is_dir( '/test/' ) );
$this->assertFalse( $wp_filesystem->is_file( '/test' ) );
//$this->assertFalse( true );
}
}