1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php
declare(strict_types = 1);
namespace Embed\Tests;
use PHPUnit\Framework\Attributes\Group;
class PagesTest extends PagesTestCase
{
/**
* -1 = Read from cache (throws an exception if the cache doesn't exist)
* 0 = Read from cache (generate the files the first time)
* 1 = Read from net without override the cache files
* 2 = Read from net and override the cache files
*/
const CACHE = -1;
/**
* 0 = Do not override the fixtures
* 1 = Override the fixtures
*/
const FIXTURES = 0;
public function urlDataProvider(): array
{
return [
['https://www.abanca.com/gl'],
['https://animoto.com/play/GjsJ1gu0WDRfr4pGw12xZQ'],
['http://live.amcharts.com/czNjJ'],
['https://www.aol.com/video/view/pile-of-recovering-foster-kittens-is-purrfect/595fe75985eb42109b69bedb/'],
['http://jeanjean.bandcamp.com/track/coquin-l-l-phant'],
['http://chirb.it/7A9L9B'],
['http://codepen.io/Zhouzi/pen/JoRazP'],
['http://www.dailymotion.com/video/xy0wd'],
['http://www.deviantart.com/art/Misty-510056679'],
['http://pachunka.deviantart.com/art/Cope-145564099'],
['http://www.hookem.com/story/texas-shortstop-joe-baker-arrested-public-intoxication/'],
['http://i.imgur.com/X6rkCc5.jpg'],
['https://infogr.am/7743c36a-f3ca-4465-9a80-a8abbd5d8dc4'],
['http://output.jsbin.com/vonesu/10'],
['http://jsfiddle.net/zhm5rjnz/'],
['https://www.kickstarter.com/projects/1452363698/good-seed-craft-veggie-burgers'],
['http://www.23hq.com/Zzleeper/photo/16600737'],
['https://500px.com/photo/138251239/taganay-park-by-daniel-kordan'],
['https://pastebin.com/d4biUtRm'],
['http://media.photobucket.com/user/Ignwar/media/Album%20Deserts/MoonriseMonumentValleyUtah.jpg.html?filters[term]=sunsets&filters[primary]=images'],
['http://www.politico.com/story/2013/12/presidents-barack-obama-george-w-bush-second-term-101314.html'],
['http://polldaddy.com/poll/7012505/'],
['https://www.reddit.com/r/investing/comments/7pfpeq/buffett_on_cyrptocurrencies_i_can_say_almost_with/'],
['http://www.scribd.com/doc/110799637/Synthesis-of-Knowledge-Effects-of-Fire-and-Thinning-Treatments-on-Understory-Vegetation-in-Dry-U-S-Forests'],
['http://www.spreaker.com/user/angelclark/angel-clark-ice-cream-tocos'],
['http://www.ted.com/talks/george_monbiot_for_more_wonder_rewild_the_world?language=en#t-689901'],
['http://he-who-photographs-rather-ok.tumblr.com/post/165326273724'],
['http://www.ustream.tv/channel/red-shoes-billiards-60803-camera-1'],
['http://www.viddler.com/v/bdce8c7'],
['http://www.wired.com/?p=2064839'],
['https://www.itmedia.co.jp/news/articles/2410/28/news159.html'],
['https://4pda.to/2022/12/04/406834/sostoyalsya_reliz_clown_of_duty_parodii_na_call_of_duty/'],
];
}
public function testArchiveOrg()
{
$this->assertEmbed('https://archive.org/details/librivoxaudio');
}
#[Group('network')]
public function testWikipedia()
{
$this->assertEmbed('https://en.wikipedia.org/wiki/Albert_Einstein');
}
public function testWordPress()
{
$this->assertEmbed('http://wordpress.tv/2013/09/06/dave-ross-optimize-image-files-like-a-pro/');
}
}
|