2019-08-06 22:44:38 +09:00
< ? php
namespace Tests\Unit\MetadataResolver ;
use App\MetadataResolver\XtubeResolver ;
use Tests\TestCase ;
class XtubeResolverTest extends TestCase
{
use CreateMockedResolver ;
2020-05-23 22:17:07 +09:00
public function setUp () : void
2019-08-06 22:44:38 +09:00
{
parent :: setUp ();
if ( ! $this -> shouldUseMock ()) {
sleep ( 1 );
}
}
public function test ()
{
2019-09-09 13:51:07 +09:00
$responseText = file_get_contents ( __DIR__ . '/../../fixture/Xtube/video.html' );
2019-08-06 22:44:38 +09:00
$this -> createResolver ( XtubeResolver :: class , $responseText );
$metadata = $this -> resolver -> resolve ( 'https://www.xtube.com/video-watch/homegrown-big-tits-18634762' );
$this -> assertEquals ( 'Homegrown Big Tits' , $metadata -> title );
$this -> assertEquals ( 'Dedicated to the fans of the beautiful amateur women with big natural tits. All user submitted - you can see big boob amateur hotties fucking and sucking as their tits bounce and sway.' , $metadata -> description );
2019-09-09 13:51:07 +09:00
$this -> assertRegExp ( '~https://cdn\d+-s-hw-e5\.xtube\.com/m=eaAaaEFb/videos/201302/07/RF4Nk-S774-/original/1\.jpg~' , $metadata -> image );
$this -> assertEquals ([ 'Amateur' , 'Blowjob' , 'Big Boobs' , 'bigtits' , 'homeg' ], $metadata -> tags );
if ( $this -> shouldUseMock ()) {
$this -> assertSame ( 'https://www.xtube.com/video-watch/homegrown-big-tits-18634762' , ( string ) $this -> handler -> getLastRequest () -> getUri ());
}
2019-08-06 22:44:38 +09:00
}
public function testNotMatch ()
{
$this -> expectException ( \RuntimeException :: class );
$this -> expectExceptionMessage ( 'Unmatched URL Pattern: https://www.xtube.com/gallery/black-celebs-free-7686657' );
$this -> createResolver ( XtubeResolver :: class , '' );
$this -> resolver -> resolve ( 'https://www.xtube.com/gallery/black-celebs-free-7686657' );
}
}