TestServiceAolOn.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceAolOn.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 TestServiceAolOn extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'http://on.aol.com/video/plans-to-clone-john-lennon-using-one-of-his-teeth-517906689?icid=OnHomepageL1_Tag', |
| 20 | 'http://on.aol.com/video/three-good-news-stories-to-brighten-your-day-517906768', |
| 21 | 'https://on.aol.com/video/kid-president-meets-beyonc--517906781/', |
| 22 | 'http://on.aol.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316/', |
| 23 | 'http://on.aol.com/video/colo--lawmakers-ousted-over-gun-control-support-517929948?icid=OnHomepageC3_New_Img', |
| 24 | 'http://www.5min.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316', |
| 25 | 'http://5min.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316', |
| 26 | ), |
| 27 | 'invalid' => array( |
| 28 | 'http://5min.com/obama-comes-out-against-dog-breed-specific-legislation-517905316', |
| 29 | 'http://on.aol.com/video/', |
| 30 | 'http://on.aol.com/channel/parenting', |
| 31 | 'http://on.aol.com/originals', |
| 32 | 'http://on.aol.com/show/CandidlyNicole-517742769', |
| 33 | 'http://on.aol.com/bubble/omg/1', |
| 34 | 'http://on.aol.com', |
| 35 | ), |
| 36 | 'normalize' => array( |
| 37 | 'http://5min.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316' => 'http://on.aol.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316', |
| 38 | 'https://5min.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316' => 'http://on.aol.com/video/obama-comes-out-against-dog-breed-specific-legislation-517905316', |
| 39 | 'http://on.aol.com/video/plans-to-clone-john-lennon-using-one-of-his-teeth-517906689?icid=OnHomepageL1_Tag' => 'http://on.aol.com/video/plans-to-clone-john-lennon-using-one-of-his-teeth-517906689', |
| 40 | 'http://on.aol.com/video/plans-to-clone-john-lennon-using-one-of-his-teeth-517906689/' => 'http://on.aol.com/video/plans-to-clone-john-lennon-using-one-of-his-teeth-517906689', |
| 41 | ), |
| 42 | 'fake' => array( |
| 43 | 'type' => 'video', |
| 44 | 'html' => '<iframe' |
| 45 | ) |
| 46 | ); |
| 47 | |
| 48 | public function testProvider() { $this->validateProvider('AolOn'); } |
| 49 | } |
| 50 | ?> |
| 51 |