TestServiceMixCloud.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceMixCloud.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 TestServiceMixCloud extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'http://www.mixcloud.com/quietmusic/quietmusic-august-18-hour-1-excerpt/', |
| 20 | 'http://www.mixcloud.com/sub88/mental-place-25/', |
| 21 | 'http://www.mixcloud.com/FluidRadio/casual-curses-a-mixtape-by-cooper-cult/', |
| 22 | 'http://mixcloud.com/aboveandbeyond/above-beyond-abgt-041/', |
| 23 | 'http://www.mixcloud.com/CarlCox/carl-cox-ibiza-the-revolution-unites-week-6', |
| 24 | 'http://www.mixcloud.com/TechnoLiveSets/josephcapriati-live-aquasella-festival-2013-spain-02-08-2013/', |
| 25 | 'http://www.mixcloud.com/truthoughts/tru-thoughts-presents-unfold-180813/', |
| 26 | ), |
| 27 | 'invalid' => array( |
| 28 | 'http://www.mixcloud.com/truthoughts/', |
| 29 | 'http://www.mixcloud.com/categories/ambient-chillout/', |
| 30 | 'http://www.mixcloud.com/categories/comedy/', |
| 31 | 'http://www.mixcloud.com/about/', |
| 32 | 'http://www.mixcloud.com/upload/', |
| 33 | 'http://www.mixcloud.com/advertise/create/', |
| 34 | 'http://www.mixcloud.com/developers/documentation/', |
| 35 | ), |
| 36 | ); |
| 37 | |
| 38 | public function testProvider() { $this->validateProvider('MixCloud'); } |
| 39 | } |
| 40 | ?> |
| 41 |