From f843b6b538fe6ea461f5dabdf304917836fd4440 Mon Sep 17 00:00:00 2001 From: mmtr Date: Wed, 23 Nov 2022 10:50:13 +0100 Subject: [PATCH] Remove `test_global_styles_user_cpt_change_invalidates_cached_stylesheet` --- phpunit/wp-get-global-stylesheet-test.php | 98 ----------------------- 1 file changed, 98 deletions(-) delete mode 100644 phpunit/wp-get-global-stylesheet-test.php diff --git a/phpunit/wp-get-global-stylesheet-test.php b/phpunit/wp-get-global-stylesheet-test.php deleted file mode 100644 index cb4d0242ce3e3a..00000000000000 --- a/phpunit/wp-get-global-stylesheet-test.php +++ /dev/null @@ -1,98 +0,0 @@ -user->create( - array( - 'role' => 'administrator', - 'user_email' => 'administrator@example.com', - ) - ); - } - - public function set_up() { - parent::set_up(); - - $this->orig_theme_dir = $GLOBALS['wp_theme_directories']; - $this->theme_root = realpath( DIR_TESTDATA . '/themedir1' ); - - // /themes is necessary as theme.php functions assume /themes is the root if there is only one root. - $GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', $this->theme_root ); - - // Set up the new root. - add_filter( 'theme_root', array( $this, 'filter_set_theme_root' ) ); - add_filter( 'stylesheet_root', array( $this, 'filter_set_theme_root' ) ); - add_filter( 'template_root', array( $this, 'filter_set_theme_root' ) ); - - // Clear caches. - wp_clean_themes_cache(); - unset( $GLOBALS['wp_themes'] ); - } - - public function tear_down() { - $GLOBALS['wp_theme_directories'] = $this->orig_theme_dir; - - // Clear up the filters to modify the theme root. - remove_filter( 'theme_root', array( $this, 'filter_set_theme_root' ) ); - remove_filter( 'stylesheet_root', array( $this, 'filter_set_theme_root' ) ); - remove_filter( 'template_root', array( $this, 'filter_set_theme_root' ) ); - - wp_clean_themes_cache(); - unset( $GLOBALS['wp_themes'] ); - - parent::tear_down(); - } - - public function filter_set_theme_root() { - return $this->theme_root; - } - - public function test_global_styles_user_cpt_change_invalidates_cached_stylesheet() { - add_filter( 'wp_get_global_stylesheet_can_use_cache', '__return_true' ); - switch_theme( 'block-theme' ); - wp_set_current_user( self::$administrator_id ); - - $styles = gutenberg_get_global_stylesheet(); - $this->assertStringNotContainsString( 'background-color: hotpink;', $styles ); - - $user_cpt = WP_Theme_JSON_Resolver_Gutenberg::get_user_data_from_wp_global_styles( wp_get_theme(), true ); - $config = json_decode( $user_cpt['post_content'], true ); - $config['styles']['color']['background'] = 'hotpink'; - $user_cpt['post_content'] = wp_json_encode( $config ); - - wp_update_post( $user_cpt, true, false ); - - $styles = gutenberg_get_global_stylesheet(); - $this->assertStringContainsString( 'background-color: hotpink;', $styles ); - remove_filter( 'wp_get_global_stylesheet_can_use_cache', '__return_true' ); - } -}