mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
> PHPUnit 8.0.0 introduced a `void` return type declaration to the "fixture" methods – `setUpBeforeClass()`, `setUp()`, `tearDown()` and `tearDownAfterClass()`. As the `void` return type was not introduced until PHP 7.1, this makes it more difficult to create cross-version compatible tests when using fixtures, due to signature mismatches. > > The `Yoast\PHPUnitPolyfills\TestCases\TestCase` overcomes the signature mismatch by having two versions. The correct one will be loaded depending on the PHPUnit version being used. > > When using this TestCase, if an individual test, or another TestCase which extends this TestCase, needs to overload any of the "fixture" methods, it should do so by using a snake_case variant of the original fixture method name, i.e. `set_up_before_class()`, `set_up()`, `assert_pre_conditions()`, `assert_post_conditions()`, `tear_down()`, and `tear_down_after_class()`. > > The snake_case methods will automatically be called by PHPUnit. > > > IMPORTANT: The snake_case methods should not call the PHPUnit parent, i.e. do not use `parent::setUp()` from within an overloaded `set_up()` method. If necessary, DO call `parent::set_up()`. Reference: https://github.com/Yoast/PHPUnit-Polyfills#testcases This commit renames all declared fixture methods, and calls to parent versions of those fixture methods, from camelCase to snake_case. Follow-up to [51559-51567]. Props jrf, hellofromTonya, johnbillion, netweb, dd32, pputzer, SergeyBiryukov. See #46149. git-svn-id: https://develop.svn.wordpress.org/trunk@51568 602fd350-edb4-49c9-b593-d223f7449a82
241 lines
7.2 KiB
PHP
241 lines
7.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group oembed
|
|
*/
|
|
class Tests_WP_oEmbed extends WP_UnitTestCase {
|
|
/**
|
|
* @var WP_oEmbed
|
|
*/
|
|
protected $oembed;
|
|
|
|
public $pre_oembed_result_filtered = false;
|
|
|
|
public function set_up() {
|
|
parent::set_up();
|
|
|
|
require_once ABSPATH . WPINC . '/class-wp-oembed.php';
|
|
$this->oembed = _wp_oembed_get_object();
|
|
|
|
$this->pre_oembed_result_filtered = false;
|
|
|
|
// `get_post_embed_html()` assumes `wp-includes/js/wp-embed.js` is present:
|
|
self::touch( ABSPATH . WPINC . '/js/wp-embed.js' );
|
|
}
|
|
|
|
public function _filter_pre_oembed_result( $result ) {
|
|
// If this is not null, the oEmbed result has been filtered before any HTTP requests were made.
|
|
$this->pre_oembed_result_filtered = $result;
|
|
|
|
// Return false to prevent HTTP requests during tests.
|
|
return $result ? $result : false;
|
|
}
|
|
|
|
public function test_wp_filter_pre_oembed_result_prevents_http_request_for_internal_permalinks() {
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$this->assertNotFalse( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
public function test_wp_filter_pre_oembed_result_prevents_http_request_when_viewing_the_post() {
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
$this->go_to( $permalink );
|
|
$this->assertQueryTrue( 'is_single', 'is_singular' );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$this->assertNotFalse( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
public function test_wp_filter_pre_oembed_result_non_existent_post() {
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
$this->go_to( $permalink );
|
|
$this->assertQueryTrue( 'is_single', 'is_singular' );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( 'https://example.com/' );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$this->assertNotFalse( $this->pre_oembed_result_filtered );
|
|
$this->assertFalse( $actual );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_root_root() {
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$this->assertNotNull( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_sub_samesub() {
|
|
$user_id = self::factory()->user->create();
|
|
|
|
$blog_id = self::factory()->blog->create(
|
|
array(
|
|
'user_id' => $user_id,
|
|
)
|
|
);
|
|
|
|
switch_to_blog( $blog_id );
|
|
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
restore_current_blog();
|
|
|
|
$this->assertNotNull( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_sub_othersub() {
|
|
$user_id = self::factory()->user->create();
|
|
|
|
$blog_id = self::factory()->blog->create(
|
|
array(
|
|
'user_id' => $user_id,
|
|
)
|
|
);
|
|
|
|
switch_to_blog( $blog_id );
|
|
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
$blog_id = self::factory()->blog->create(
|
|
array(
|
|
'user_id' => $user_id,
|
|
)
|
|
);
|
|
|
|
switch_to_blog( $blog_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
restore_current_blog();
|
|
|
|
$this->assertNotNull( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_sub_main() {
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
$user_id = self::factory()->user->create();
|
|
$blog_id = self::factory()->blog->create(
|
|
array(
|
|
'user_id' => $user_id,
|
|
)
|
|
);
|
|
|
|
switch_to_blog( $blog_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
restore_current_blog();
|
|
|
|
$this->assertNotNull( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_preserves_switched_state() {
|
|
$user_id = self::factory()->user->create();
|
|
|
|
$blog_id = self::factory()->blog->create( array( 'user_id' => $user_id ) );
|
|
switch_to_blog( $blog_id );
|
|
|
|
$expected_stack = $GLOBALS['_wp_switched_stack'];
|
|
|
|
$post_id = self::factory()->post->create();
|
|
$permalink = get_permalink( $post_id );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$actual_stack = $GLOBALS['_wp_switched_stack'];
|
|
|
|
restore_current_blog();
|
|
|
|
$this->assertNotNull( $this->pre_oembed_result_filtered );
|
|
$this->assertSame( $this->pre_oembed_result_filtered, $actual );
|
|
$this->assertSame( $expected_stack, $actual_stack );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40673
|
|
* @group multisite
|
|
* @group ms-required
|
|
*/
|
|
public function test_wp_filter_pre_oembed_result_multisite_restores_state_if_no_post_is_found() {
|
|
$current_blog_id = get_current_blog_id();
|
|
|
|
$user_id = self::factory()->user->create();
|
|
$blog_id = self::factory()->blog->create(
|
|
array(
|
|
'user_id' => $user_id,
|
|
)
|
|
);
|
|
|
|
$permalink = get_home_url( $blog_id, '/foo/' );
|
|
|
|
add_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
$actual = $this->oembed->get_html( $permalink );
|
|
remove_filter( 'pre_oembed_result', array( $this, '_filter_pre_oembed_result' ) );
|
|
|
|
$this->assertNull( $this->pre_oembed_result_filtered );
|
|
$this->assertFalse( $actual );
|
|
$this->assertSame( $current_blog_id, get_current_blog_id() );
|
|
}
|
|
}
|