| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2018-07-18 05:31:24 +01:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * OembedPlugin implementation for GNU social | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Mikael Nordfeldth | 
					
						
							|  |  |  |  * @author    Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |  * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  | // namespace Tests\Unit;
 | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  | use PHPUnit\Framework\TestCase; | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-18 05:31:24 +01:00
										 |  |  | define('INSTALLDIR', realpath(__DIR__ . '/../../..')); | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { | 
					
						
							|  |  |  |     define('GNUSOCIAL', true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { // Compatibility
 | 
					
						
							|  |  |  |     define('STATUSNET', true); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | require_once INSTALLDIR . '/lib/common.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  | final class oEmbedTest extends TestCase | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-11-15 12:32:29 -08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |      * Run tests | 
					
						
							| 
									
										
										
										
											2010-11-15 12:32:29 -08:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param string $url | 
					
						
							|  |  |  |      * @param string $expectedType | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |      * @dataProvider sources | 
					
						
							| 
									
										
										
										
											2010-11-15 12:32:29 -08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |     public function testEmbed($url, $expectedType) | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         try { | 
					
						
							| 
									
										
										
										
											2019-07-07 13:26:10 +01:00
										 |  |  |             $data = EmbedHelper::getObject($url); | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  |             $this->assertEquals($expectedType, $data->type); | 
					
						
							| 
									
										
										
										
											2010-11-15 12:58:00 -08:00
										 |  |  |             if ($data->type == 'photo') { | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |                 $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.'); | 
					
						
							| 
									
										
										
										
											2018-07-18 05:31:24 +01:00
										 |  |  |             } elseif ($data->type == 'video') { | 
					
						
							| 
									
										
										
										
											2010-11-15 12:58:00 -08:00
										 |  |  |                 $this->assertTrue(!empty($data->html), 'Video must have embedding HTML.'); | 
					
						
							|  |  |  |                 $this->assertTrue(!empty($data->thumbnail_url), 'Video should have a thumbnail.'); | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 $this->assertTrue(!empty($data->title), 'Page must have a title'); | 
					
						
							|  |  |  |                 $this->assertTrue(!empty($data->url), 'Page must have a URL'); | 
					
						
							| 
									
										
										
										
											2010-11-15 12:58:00 -08:00
										 |  |  |             } | 
					
						
							|  |  |  |             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.'); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  |         } catch (Exception $e) { | 
					
						
							|  |  |  |             if ($expectedType == 'none') { | 
					
						
							|  |  |  |                 $this->assertEquals($expectedType, 'none', 'Should not have data for this URL.'); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 throw $e; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-12 22:55:01 +01:00
										 |  |  |     public static function sources() { | 
					
						
							|  |  |  |         return [ | 
					
						
							|  |  |  |             ['https://notabug.org/', 'link'], | 
					
						
							|  |  |  |             ['http://www.youtube.com/watch?v=eUgLR232Cnw', 'video'], | 
					
						
							|  |  |  |             ['https://gnu.io/', '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'] | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2010-11-15 12:25:44 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-11-15 11:55:28 -08:00
										 |  |  | } |