TestServiceDailyMotion.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceDailyMotion.php |
| 4 | * |
| 5 | * @package Tests |
| 6 | * @author Michael Pratt <pratt@hablarmierda.net> |
| 7 | * @link http://www.michael-pratt.com/ |
| 8 | * |
| 9 | * For the full copyright and license information, please view the LICENSE |
| 10 | * file that was distributed with this source code. |
| 11 | */ |
| 12 | |
| 13 | require_once 'TestProviders.php'; |
| 14 | |
| 15 | class TestServiceDailyMotion extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'http://www.dailymotion.com/video/xxwxe1_harlem-shake-de-los-simpsons_fun', |
| 20 | 'http://dailymotion.com/video/xp30q9_bmw-serie3-2012-en-mexico_auto', |
| 21 | 'http://www.dailymotion.com/video/xzva95_jacob-jones-and-the-bigfoot-mystery-launch-trailer_videogames', |
| 22 | 'http://www.dailymotion.com/video/xzx4m4_balotelli-au-prochain-cri-raciste-je-quitte-le-terrain_sport?from=rss', |
| 23 | 'http://www.dailymotion.com/video/xzse1m_casanova-tout-reste-possible-pour-l-om_sport/stuff/here/', |
| 24 | 'http://www.dailymotion.com/embed/video/xzv0cd/', |
| 25 | 'http://dai.ly/xzse1m', |
| 26 | 'http://games.dailymotion.com/video/xq3p3u', |
| 27 | 'http://games.dailymotion.com/video/x2gfjhs', |
| 28 | 'http://games.dailymotion.com/live/x15gjhi', |
| 29 | ), |
| 30 | 'invalid' => array( |
| 31 | 'http://www.dailymotion.com', |
| 32 | 'http://dailymotion.com', |
| 33 | 'http://www.dailymotion.com/channel/stuff/', |
| 34 | 'http://www.dailymotion.com/stuff/', |
| 35 | 'http://www.dailymotion.com/video/' |
| 36 | ), |
| 37 | 'normalize' => array( |
| 38 | 'http://www.dailymotion.com/video/xxwxe1_harlem-shake-de-los-simpsons_fun' => 'http://www.dailymotion.com/video/xxwxe1_harlem-shake-de-los-simpsons_fun', |
| 39 | 'http://dailymotion.com/video/xp30q9_bmw-serie3-2012-en-mexico_auto' => 'http://www.dailymotion.com/video/xp30q9_bmw-serie3-2012-en-mexico_auto', |
| 40 | 'http://www.dailymotion.com/video/xzxtaf_red-bull-400-alic-y-stadlober-ganan-en-eslovenia_sport/' => 'http://www.dailymotion.com/video/xzxtaf_red-bull-400-alic-y-stadlober-ganan-en-eslovenia_sport', |
| 41 | 'http://www.dailymotion.com/embed/video/xzxfpu' => 'http://www.dailymotion.com/video/xzxfpu', |
| 42 | 'http://www.dailymotion.com/video/xzx4m4_balotelli-au-prochain-cri-raciste-je-quitte-le-terrain_sport?from=rss' => 'http://www.dailymotion.com/video/xzx4m4_balotelli-au-prochain-cri-raciste-je-quitte-le-terrain_sport', |
| 43 | 'http://www.dailymotion.com/embed/video/xzv0cd/' => 'http://www.dailymotion.com/video/xzv0cd', |
| 44 | 'http://www.dailymotion.com/video/xzse1m_casanova-tout-reste-possible-pour-l-om_sport/stuff/here/' => 'http://www.dailymotion.com/video/xzse1m_casanova-tout-reste-possible-pour-l-om_sport', |
| 45 | 'http://dai.ly/xzv0cd/' => 'http://www.dailymotion.com/video/xzv0cd', |
| 46 | 'http://dai.ly/xzv0cd' => 'http://www.dailymotion.com/video/xzv0cd', |
| 47 | 'http://games.dailymotion.com/live/xq3p3u' => 'http://www.dailymotion.com/video/xq3p3u', |
| 48 | ), |
| 49 | 'fake' => array( |
| 50 | 'type' => 'video', |
| 51 | 'html' => '<iframe' |
| 52 | ) |
| 53 | ); |
| 54 | |
| 55 | public function testProvider() { $this->validateProvider('DailyMotion'); } |
| 56 | } |
| 57 | ?> |
| 58 |