PluginProbe
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 1.6.2
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v1.6.2
4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 189 releases
embedpress / library / ostraining / embera / Tests / TestServiceKickstarter.php
TestServiceKickstarter.php
61 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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