shouldUseMock()) { sleep(1); } } public function test() { $responseText = $this->fetchSnapshot(__DIR__ . '/../../fixture/Xtube/video.html'); $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); $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', 'tits', 'bigtits', 'homeg', 'big tits'], $metadata->tags); if ($this->shouldUseMock()) { $this->assertSame('https://www.xtube.com/video-watch/homegrown-big-tits-18634762', (string) $this->handler->getLastRequest()->getUri()); } } 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'); } }