| 117 | /** |
| 118 | * @ticket 23149 |
| 119 | */ |
| 120 | function test_youtube_com_secure_embed() { |
| 121 | global $wp_embed; |
| 122 | |
| 123 | // Test secure youtube.com embeds |
| 124 | |
| 125 | $out = wp_oembed_get( 'https://www.youtube.com/watch?v=oHg5SJYRHA0' ); |
| 126 | $this->assertEquals( '<iframe width="474" height="356" src="https://www.youtube.com/embed/oHg5SJYRHA0?feature=oembed" frameborder="0" allowfullscreen></iframe>', $out ); |
| 127 | |
| 128 | $out = wp_oembed_get( 'https://youtu.be/zHjMoNQN7s0' ); |
| 129 | $this->assertEquals( '<iframe width="474" height="267" src="https://www.youtube.com/embed/zHjMoNQN7s0?feature=oembed" frameborder="0" allowfullscreen></iframe>', $out ); |
| 130 | |
| 131 | } |
| 132 | |