TestServiceKickstarter.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceKickstarter.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 TestServiceKickstarter extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien?ref=home_popular', |
| 20 | 'http://www.kickstarter.com/projects/yonder/dino-pet-a-living-bioluminescent-night-light-pet?ref=home_popular', |
| 21 | 'http://www.kickstarter.com/projects/762504755/apparitions-from-the-inferno?ref=home_location', |
| 22 | 'http://kickstarter.com/projects/1093644807/and-the-meek-shall-inherit', |
| 23 | 'http://www.kickstarter.com/projects/940737263/a-very-special-new-stripped-down-sea-wolf-album', |
| 24 | 'http://www.kickstarter.com/projects/DaveRyan/owlgirls', |
| 25 | 'http://www.kickstarter.com/projects/lenswithaview/standing-in-the-stars-the-peter-mayhew-story', |
| 26 | ), |
| 27 | 'invalid' => array( |
| 28 | 'http://www.kickstarter.com/discover', |
| 29 | 'http://www.kickstarter.com/start', |
| 30 | 'http://www.kickstarter.com/', |
| 31 | 'http://www.kickstarter.com/DaveRyan/owlgirls', |
| 32 | 'http://www.kickstarter.com/projects/DaveRyan', |
| 33 | ), |
| 34 | 'normalize' => array( |
| 35 | 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien?ref=home_popular' => 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien', |
| 36 | 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien?ref=home_popular&other=stuff-yeah' => 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien', |
| 37 | 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien' => 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien', |
| 38 | 'http://kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien' => 'http://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien', |
| 39 | 'https://kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien' => 'https://www.kickstarter.com/projects/1330686256/americas-candy-all-natural-vegan-and-allergy-frien', |
| 40 | ), |
| 41 | 'fake' => array( |
| 42 | 'type' => 'rich', |
| 43 | 'html' => '<iframe' |
| 44 | ) |
| 45 | ); |
| 46 | |
| 47 | /** |
| 48 | *@large |
| 49 | */ |
| 50 | public function testProvider() |
| 51 | { |
| 52 | if (getenv('TRAVIS')) { |
| 53 | $this->markTestSkipped('Travis-ci seems to have problems testing this provider. Test it locally instead! It usually works!'); |
| 54 | return ; |
| 55 | } |
| 56 | |
| 57 | $this->validateProvider('Kickstarter'); |
| 58 | } |
| 59 | } |
| 60 | ?> |
| 61 |