1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- use PHPUnit\Framework\TestCase;
- define('INSTALLDIR', realpath(__DIR__ . '/../../..'));
- if (!defined('GNUSOCIAL')) {
- define('GNUSOCIAL', true);
- }
- if (!defined('STATUSNET')) {
- define('STATUSNET', true);
- }
- require_once INSTALLDIR . '/lib/util/common.php';
- final class oEmbedTest extends TestCase
- {
-
- public function testEmbed($url, $expectedType)
- {
- try {
- $data = EmbedHelper::getObject($url);
- $this->assertEquals($expectedType, $data->type);
- if ($data->type == 'photo') {
- $this->assertTrue(!empty($data->thumbnail_url), 'Photo must have a URL.');
- $this->assertTrue(!empty($data->thumbnail_width), 'Photo must have a width.');
- $this->assertTrue(!empty($data->thumbnail_height), 'Photo must have a height.');
- } elseif ($data->type == 'video') {
- $this->assertTrue(!empty($data->html), 'Video must have embedding HTML.');
- $this->assertTrue(!empty($data->thumbnail_url), 'Video should have a thumbnail.');
- } else {
- $this->assertTrue(!empty($data->title), 'Page must have a title');
- $this->assertTrue(!empty($data->url), 'Page must have a URL');
- }
- if (!empty($data->thumbnail_url)) {
- $this->assertTrue(!empty($data->thumbnail_width), 'Thumbnail must list a width.');
- $this->assertTrue(!empty($data->thumbnail_height), 'Thumbnail must list a height.');
- }
- } catch (Exception $e) {
- if ($expectedType == 'none') {
- $this->assertEquals($expectedType, 'none', 'Should not have data for this URL.');
- } else {
- throw $e;
- }
- }
- }
- public static function sources() {
- return [
- ['https://notabug.org/', 'link'],
- ['http://www.youtube.com/watch?v=eUgLR232Cnw', 'video'],
- [GNUSOCIAL_ENGINE_URL, 'link'],
- ['https://www.gnu.org/graphics/heckert_gnu.transp.small.png', 'photo'],
- ['http://vimeo.com/9283184', 'video'],
- ['http://leuksman.com/log/2010/10/29/statusnet-0-9-6-release/', 'none'],
- ['https://github.com/git/git/commit/85e9c7e1d42849c5c3084a9da748608468310c0e', 'link']
- ];
- }
- }
|