123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- <?php
- /**
- * @group oembed
- */
- class Tests_WP_Embed extends WP_UnitTestCase {
- /**
- * @var WP_Embed
- */
- protected $wp_embed;
- public function setUp() {
- parent::setUp();
- $this->wp_embed = new WP_Embed();
- }
- public function _embed_handler_callback( $matches, $attr, $url, $rawattr ) {
- return sprintf( 'Embedded %s', $url );
- }
- public function _pre_oembed_result_callback() {
- return '<b>Embedded content</b>';
- }
- public function test_maybe_run_ajax_cache_should_return_nothing_if_there_is_no_post() {
- $this->expectOutputString( '' );
- $this->wp_embed->maybe_run_ajax_cache();
- }
- public function test_maybe_run_ajax_cache_should_return_nothing_if_there_is_no_message() {
- $GLOBALS['post'] = $this->factory()->post->create_and_get(
- array(
- 'post_title' => 'Hello World',
- )
- );
- $this->expectOutputString( '' );
- $this->wp_embed->maybe_run_ajax_cache();
- unset( $GLOBALS['post'] );
- }
- public function test_maybe_run_ajax_cache_should_return_javascript() {
- $GLOBALS['post'] = $this->factory()->post->create_and_get(
- array(
- 'post_title' => 'Hello World',
- )
- );
- $_GET['message'] = 'foo';
- $url = admin_url( 'admin-ajax.php?action=oembed-cache&post=' . $GLOBALS['post']->ID, 'relative' );
- $actual = get_echo( array( $this->wp_embed, 'maybe_run_ajax_cache' ) );
- unset( $GLOBALS['post'] );
- unset( $GLOBALS['message'] );
- $this->assertContains( $url, $actual );
- }
- public function test_wp_maybe_load_embeds() {
- $this->assertSameSets( array( 10, 9999 ), array_keys( $GLOBALS['wp_embed']->handlers ) );
- $this->assertSameSets(
- array(
- 'youtube_embed_url',
- ),
- array_keys( $GLOBALS['wp_embed']->handlers[10] )
- );
- $this->assertSameSets(
- array(
- 'audio',
- 'video',
- ),
- array_keys( $GLOBALS['wp_embed']->handlers[9999] )
- );
- }
- public function test_wp_embed_register_handler() {
- $handle = __FUNCTION__;
- $regex = '#https?://example\.com/embed/([^/]+)#i';
- $callback = array( $this, '_embed_handler_callback' );
- wp_embed_register_handler( $handle, $regex, $callback );
- $expected = array(
- 'regex' => $regex,
- 'callback' => $callback,
- );
- $actual = $GLOBALS['wp_embed']->handlers[10];
- wp_embed_unregister_handler( $handle );
- $this->assertContains( $expected, $actual );
- }
- public function test_wp_embed_unregister_handler() {
- $this->assertArrayHasKey( 'youtube_embed_url', $GLOBALS['wp_embed']->handlers[10] );
- wp_embed_unregister_handler( 'youtube_embed_url' );
- $handlers = $GLOBALS['wp_embed']->handlers[10];
- // Restore.
- wp_embed_register_handler( 'youtube_embed_url', '#https?://(www.)?youtube\.com/(?:v|embed)/([^/]+)#i', 'wp_embed_handler_youtube' );
- $this->assertArrayNotHasKey( 'youtube_embed_url', $handlers );
- }
- /**
- * @group external-http
- */
- public function test_autoembed_should_do_nothing_without_matching_handler() {
- $content = "\nhttp://example.com/embed/foo\n";
- $actual = $this->wp_embed->autoembed( $content );
- $this->assertSame( $content, $actual );
- }
- /**
- * @group external-http
- */
- public function test_autoembed_should_return_modified_content() {
- $handle = __FUNCTION__;
- $regex = '#https?://example\.com/embed/([^/]+)#i';
- $callback = array( $this, '_embed_handler_callback' );
- wp_embed_register_handler( $handle, $regex, $callback );
- $content = "\nhttp://example.com/embed/foo\n";
- $actual = $GLOBALS['wp_embed']->autoembed( $content );
- wp_embed_unregister_handler( $handle );
- $this->assertSame( "\nEmbedded http://example.com/embed/foo\n", $actual );
- }
- public function test_delete_oembed_caches() {
- $post_id = $this->factory()->post->create();
- add_post_meta( $post_id, '_oembed_foo', 'bar' );
- add_post_meta( $post_id, '_oembed_foo', 'baz' );
- add_post_meta( $post_id, '_oembed_baz', 'foobar', true );
- $this->wp_embed->delete_oembed_caches( $post_id );
- $this->assertSame( array(), get_post_meta( $post_id, '_oembed_foo' ) );
- $this->assertSame( array(), get_post_meta( $post_id, '_oembed_baz' ) );
- }
- public function test_cache_oembed_invalid_post_type() {
- $post_id = $this->factory()->post->create( array( 'post_type' => 'nav_menu_item' ) );
- $this->wp_embed->cache_oembed( $post_id );
- $this->assertNotSame( $post_id, $this->wp_embed->post_ID );
- }
- public function test_cache_oembed_empty_content() {
- $post_id = $this->factory()->post->create( array( 'post_content' => '' ) );
- $this->wp_embed->cache_oembed( $post_id );
- $this->assertNotSame( $post_id, $this->wp_embed->post_ID );
- }
- public function test_cache_oembed_for_post() {
- $url = 'https://example.com/';
- $expected = '<b>Embedded content</b>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- $cachekey = '_oembed_' . $key_suffix;
- $cachekey_time = '_oembed_time_' . $key_suffix;
- $post_id = $this->factory()->post->create( array( 'post_content' => 'https://example.com/' ) );
- add_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $this->wp_embed->cache_oembed( $post_id );
- remove_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $this->assertSame( $post_id, $this->wp_embed->post_ID );
- $this->assertSame( $expected, get_post_meta( $post_id, $cachekey, true ) );
- $this->assertNotEmpty( get_post_meta( $post_id, $cachekey_time, true ) );
- }
- public function test_shortcode_should_get_cached_data_from_post_meta_for_known_post() {
- global $post;
- $post = $this->factory()->post->create_and_get();
- $url = 'https://example.com/';
- $expected = '<b>Embedded content</b>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- $cachekey = '_oembed_' . $key_suffix;
- add_post_meta( $post->ID, $cachekey, $expected );
- add_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $actual = $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $actual_2 = $this->wp_embed->shortcode( array(), $url );
- $cached = get_post_meta( $post->ID, $cachekey, true );
- // Cleanup.
- unset( $post );
- $this->assertSame( $expected, $actual );
- $this->assertSame( $expected, $actual_2 );
- $this->assertSame( $expected, $cached );
- }
- public function test_shortcode_should_get_cached_failure_from_post_meta_for_known_post() {
- global $post;
- $post = $this->factory()->post->create_and_get();
- $url = 'https://example.com/';
- $expected = '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- $cachekey = '_oembed_' . $key_suffix;
- $cachekey_time = '_oembed_time_' . $key_suffix;
- add_post_meta( $post->ID, $cachekey, '{{unknown}}' );
- add_post_meta( $post->ID, $cachekey_time, 0 );
- add_filter( 'pre_oembed_result', '__return_empty_string' );
- $actual = $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', '__return_empty_string' );
- // Result should be cached.
- $actual_2 = $this->wp_embed->shortcode( array(), $url );
- $cached = get_post_meta( $post->ID, $cachekey, true );
- $cached_time = get_post_meta( $post->ID, $cachekey_time, true );
- // Cleanup.
- unset( $post );
- $this->assertSame( $expected, $actual );
- $this->assertSame( '{{unknown}}', $cached );
- $this->assertEmpty( $cached_time );
- $this->assertSame( $expected, $actual_2 );
- }
- /**
- * @ticket 34115
- */
- public function test_shortcode_should_cache_data_in_custom_post() {
- $url = 'https://example.com/';
- $expected = '<b>Embedded content</b>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- add_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $actual = $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $oembed_post_id = $this->wp_embed->find_oembed_post_id( $key_suffix );
- $post_content = get_post( $oembed_post_id )->post_content;
- // Result should be cached.
- $actual_2 = $this->wp_embed->shortcode( array(), $url );
- wp_delete_post( $oembed_post_id );
- $this->assertNotNull( $oembed_post_id );
- $this->assertSame( $expected, $post_content );
- $this->assertSame( $expected, $actual );
- $this->assertSame( $expected, $actual_2 );
- }
- /**
- * @ticket 34115
- */
- public function test_shortcode_should_cache_failure_in_custom_post() {
- $url = 'https://example.com/';
- $expected = '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- add_filter( 'pre_oembed_result', '__return_empty_string' );
- $actual = $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', '__return_empty_string' );
- $oembed_post_id = $this->wp_embed->find_oembed_post_id( $key_suffix );
- $post_content = get_post( $oembed_post_id )->post_content;
- // Result should be cached.
- $actual_2 = $this->wp_embed->shortcode( array(), $url );
- wp_delete_post( $oembed_post_id );
- $this->assertSame( $expected, $actual );
- $this->assertSame( $expected, $actual_2 );
- $this->assertNotNull( $oembed_post_id );
- $this->assertSame( '{{unknown}}', $post_content );
- }
- /**
- * Test that parsing an embed shortcode should cause oembed_cache to be updated.
- *
- * @ticket 42310
- */
- public function test_shortcode_should_update_custom_post() {
- add_filter( 'oembed_ttl', '__return_zero' );
- $url = 'https://example.com/';
- $embedded = '<b>Embedded content</b>';
- $key_suffix = md5( $url . serialize( wp_embed_defaults( $url ) ) );
- add_filter( 'pre_oembed_result', '__return_empty_string' );
- $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', '__return_empty_string' );
- $oembed_post_id = $this->wp_embed->find_oembed_post_id( $key_suffix );
- $this->assertSame( '{{unknown}}', get_post( $oembed_post_id )->post_content );
- $previous_usecache = $this->wp_embed->usecache;
- $this->wp_embed->usecache = false;
- // The update cannot be empty because empty responses won't overwrite the cache.
- add_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $this->wp_embed->shortcode( array(), $url );
- remove_filter( 'pre_oembed_result', array( $this, '_pre_oembed_result_callback' ) );
- $this->assertSame( $embedded, get_post( $oembed_post_id )->post_content );
- $this->wp_embed->usecache = $previous_usecache;
- remove_filter( 'oembed_ttl', '__return_zero' );
- }
- /**
- * @group external-http
- */
- public function test_shortcode_should_get_url_from_src_attribute() {
- $url = 'http://example.com/embed/foo';
- $actual = $this->wp_embed->shortcode( array( 'src' => $url ) );
- $this->assertSame( '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>', $actual );
- }
- /**
- * @group external-http
- */
- public function test_shortcode_should_return_empty_string_for_missing_url() {
- $this->assertEmpty( $this->wp_embed->shortcode( array() ) );
- }
- /**
- * @group external-http
- */
- public function test_shortcode_should_make_link_for_unknown_url() {
- $url = 'http://example.com/embed/foo';
- $actual = $this->wp_embed->shortcode( array(), $url );
- $this->assertSame( '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>', $actual );
- }
- /**
- * @group external-http
- */
- public function test_run_shortcode_url_only() {
- $url = 'http://example.com/embed/foo';
- $actual = $this->wp_embed->run_shortcode( '[embed]' . $url . '[/embed]' );
- $this->assertSame( '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>', $actual );
- }
- public function test_maybe_make_link() {
- $url = 'http://example.com/embed/foo';
- $actual = $this->wp_embed->maybe_make_link( $url );
- $this->assertSame( '<a href="' . esc_url( $url ) . '">' . esc_html( $url ) . '</a>', $actual );
- }
- public function test_maybe_make_link_return_false_on_fail() {
- $this->wp_embed->return_false_on_fail = true;
- $this->assertFalse( $this->wp_embed->maybe_make_link( 'http://example.com/' ) );
- }
- public function test_maybe_make_link_do_not_link_if_unknown() {
- $url = 'http://example.com/';
- $this->wp_embed->linkifunknown = false;
- $this->assertSame( $url, $this->wp_embed->maybe_make_link( $url ) );
- }
- }
|