controller = new FrontController($this->container); } /** * Test the constructor. * * @return void */ public function testConstructor() { $this->assertInstanceOf(FrontController::class, new FrontController($this->container)); } /** * Test the constructor with streams enabled. * * @return void */ public function testConstructorWithStream() { Config::setOptions(['stream' => true]); $this->assertInstanceOf(FrontController::class, new FrontController($this->container)); } /** * Test the index() function. * * @return void */ public function testIndex() { $this->assertRequestIsOk('index'); } /** * Test the index() function with a custom URI. * * @return void */ public function testIndexWithCustomUri() { $result = $this->controller->index( Request::createFromEnvironment( Environment::mock(['REQUEST_URI' => '/foo', 'QUERY_STRING' => 'foo=bar']) ), $this->response ); $this->assertTrue($result->isOk()); } /** * Test the extractors() function. * * @return void */ public function testExtractors() { $this->assertRequestIsOk('extractors'); } /** * Test the password() function. * * @return void */ public function testPassword() { $this->assertRequestIsOk('password'); } /** * Test the info() function without the url parameter. * * @return void */ public function testInfoWithoutUrl() { $this->assertRequestIsRedirect('info'); } /** * Test the info() function. * * @return void */ public function testInfo() { $this->assertRequestIsOk('info', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU']); } /** * Test the info() function with audio conversion. * * @return void */ public function testInfoWithAudio() { Config::setOptions(['convert' => true]); $this->assertRequestIsRedirect( 'info', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio' => true] ); } /** * Test the info() function with audio conversion from a Vimeo video. * * @return void */ public function testInfoWithVimeoAudio() { if (getenv('CI')) { $this->markTestSkipped('Travis is blacklisted by Vimeo.'); } Config::setOptions(['convert' => true]); // So we can test the fallback to default format $this->assertRequestIsRedirect('info', ['url' => 'https://vimeo.com/251997032', 'audio' => true]); } /** * Test the info() function with audio enabled and an URL that doesn't need to be converted. * * @return void */ public function testInfoWithUnconvertedAudio() { Config::setOptions(['convert' => true]); $this->assertRequestIsRedirect( 'info', [ 'url' => 'https://2080.bandcamp.com/track/cygnus-x-the-orange-theme-2080-faulty-chip-cover', 'audio' => true, ] ); } /** * Test the info() function with a password. * * @return void */ public function testInfoWithPassword() { if (getenv('CI')) { $this->markTestSkipped('Travis is blacklisted by Vimeo.'); } $result = $this->controller->info( $this->request->withQueryParams(['url' => 'http://vimeo.com/68375962']) ->withParsedBody(['password' => 'youtube-dl']), $this->response ); $this->assertTrue($result->isOk()); } /** * Test the info() function with a missing password. * * @return void */ public function testInfoWithMissingPassword() { if (getenv('CI')) { $this->markTestSkipped('Travis is blacklisted by Vimeo.'); } $this->assertRequestIsOk('info', ['url' => 'http://vimeo.com/68375962']); $this->assertRequestIsOk('info', ['url' => 'http://vimeo.com/68375962', 'audio' => true]); } /** * Test the info() function with streams enabled. * * @return void */ public function testInfoWithStream() { Config::setOptions(['stream' => true]); $this->assertRequestIsOk('info', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU']); $this->assertRequestIsOk( 'info', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio' => true] ); } /** * Test the info() function with a playlist. * * @return void */ public function testInfoWithPlaylist() { $this->assertRequestIsOk( 'info', ['url' => 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC'] ); } /** * Test the error() function. * * @return void */ public function testError() { $result = $this->controller->error($this->request, $this->response, new Exception('foo')); $this->assertTrue($result->isServerError()); } /** * Test the locale() function. * * @return void */ public function testLocale() { $this->assertTrue( $this->controller->locale( $this->request, $this->response, ['locale' => 'fr_FR'] )->isRedirect() ); } }