TestServiceDipity.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceDipity.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 TestServiceDipity extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | //'http://www.dipity.com/BIRN/Albania-Local-Elections-2011/', |
| 20 | 'http://www.dipity.com/StevePro/Skype-from-startup-to-8-5-billion-sale', |
| 21 | 'http://www.dipity.com/ibmzrl/Nanotechnology-at-IBM-Research/', |
| 22 | 'http://dipity.com/StevePro/2010-in-Review/', |
| 23 | 'http://www.dipity.com/timeline/Nba-Finals/', |
| 24 | ), |
| 25 | 'invalid' => array( |
| 26 | 'http://www.dipity.com/timeline/Nba-Finals/other/stuff', |
| 27 | 'http://www.dipity.com/', |
| 28 | 'http://www.dipity.com/premium', |
| 29 | 'http://www.dipity.com/timetube', |
| 30 | 'http://www.dipity.com/join', |
| 31 | ), |
| 32 | 'normalize' => array( |
| 33 | 'http://dipity.com/StevePro/2010-in-Review/' => 'http://dipity.com/StevePro/2010-in-Review/', |
| 34 | 'http://dipity.com/StevePro/2010-in-Review/?cuaccuac=cuac' => 'http://dipity.com/StevePro/2010-in-Review/', |
| 35 | ), |
| 36 | 'fake' => array( |
| 37 | 'type' => 'rich', |
| 38 | 'html' => '<iframe' |
| 39 | ) |
| 40 | ); |
| 41 | |
| 42 | public function testProvider() { $this->validateProvider('Dipity'); } |
| 43 | } |
| 44 | ?> |
| 45 |