Lint
This commit is contained in:
parent
f30582a7c3
commit
0a2971399b
7 changed files with 53 additions and 53 deletions
|
@ -162,7 +162,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testConstructorWithStream()
|
||||
{
|
||||
$controller = new FrontController($this->container, new Config(['stream'=>true]));
|
||||
$controller = new FrontController($this->container, new Config(['stream' => true]));
|
||||
$this->assertInstanceOf(FrontController::class, $controller);
|
||||
}
|
||||
|
||||
|
@ -185,7 +185,7 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$result = $this->controller->index(
|
||||
Request::createFromEnvironment(
|
||||
Environment::mock(['REQUEST_URI'=>'/foo', 'QUERY_STRING'=>'foo=bar'])
|
||||
Environment::mock(['REQUEST_URI' => '/foo', 'QUERY_STRING' => 'foo=bar'])
|
||||
),
|
||||
$this->response
|
||||
);
|
||||
|
@ -229,7 +229,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testVideo()
|
||||
{
|
||||
$this->assertRequestIsOk('video', ['url'=>'https://www.youtube.com/watch?v=M7IpKCZ47pU']);
|
||||
$this->assertRequestIsOk('video', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -240,7 +240,7 @@ class FrontControllerTest extends TestCase
|
|||
public function testVideoWithoutTitle()
|
||||
{
|
||||
$this->markTestSkipped('This URL triggers a curl SSL error on Travis');
|
||||
$this->assertRequestIsOk('video', ['url'=>'http://html5demos.com/video']);
|
||||
$this->assertRequestIsOk('video', ['url' => 'http://html5demos.com/video']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -250,7 +250,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testVideoWithAudio()
|
||||
{
|
||||
$this->assertRequestIsOk('video', ['url'=>'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio'=>true]);
|
||||
$this->assertRequestIsOk('video', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio' => true]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -262,7 +262,7 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsRedirect(
|
||||
'video',
|
||||
['url'=> 'https://2080.bandcamp.com/track/cygnus-x-the-orange-theme-2080-faulty-chip-cover', 'audio'=>true]
|
||||
['url' => 'https://2080.bandcamp.com/track/cygnus-x-the-orange-theme-2080-faulty-chip-cover', 'audio' => true]
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -274,8 +274,8 @@ class FrontControllerTest extends TestCase
|
|||
public function testVideoWithPassword()
|
||||
{
|
||||
$result = $this->controller->video(
|
||||
$this->request->withQueryParams(['url'=>'http://vimeo.com/68375962'])
|
||||
->withParsedBody(['password'=>'youtube-dl']),
|
||||
$this->request->withQueryParams(['url' => 'http://vimeo.com/68375962'])
|
||||
->withParsedBody(['password' => 'youtube-dl']),
|
||||
$this->response
|
||||
);
|
||||
$this->assertTrue($result->isOk());
|
||||
|
@ -288,8 +288,8 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testVideoWithMissingPassword()
|
||||
{
|
||||
$this->assertRequestIsOk('video', ['url'=>'http://vimeo.com/68375962']);
|
||||
$this->assertRequestIsOk('video', ['url'=>'http://vimeo.com/68375962', 'audio'=>true]);
|
||||
$this->assertRequestIsOk('video', ['url' => 'http://vimeo.com/68375962']);
|
||||
$this->assertRequestIsOk('video', ['url' => 'http://vimeo.com/68375962', 'audio' => true]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -299,11 +299,11 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testVideoWithStream()
|
||||
{
|
||||
$config = new Config(['stream'=>true]);
|
||||
$this->assertRequestIsOk('video', ['url'=>'https://www.youtube.com/watch?v=M7IpKCZ47pU'], $config);
|
||||
$config = new Config(['stream' => true]);
|
||||
$this->assertRequestIsOk('video', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU'], $config);
|
||||
$this->assertRequestIsOk(
|
||||
'video',
|
||||
['url'=> 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio'=>true],
|
||||
['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'audio' => true],
|
||||
$config
|
||||
);
|
||||
}
|
||||
|
@ -317,7 +317,7 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsOk(
|
||||
'video',
|
||||
['url'=> 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC']
|
||||
['url' => 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC']
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -349,7 +349,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testRedirect()
|
||||
{
|
||||
$this->assertRequestIsRedirect('redirect', ['url'=>'https://www.youtube.com/watch?v=M7IpKCZ47pU']);
|
||||
$this->assertRequestIsRedirect('redirect', ['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -361,7 +361,7 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsRedirect(
|
||||
'redirect',
|
||||
['url'=> 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'format'=>'worst']
|
||||
['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'format' => 'worst']
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -374,8 +374,8 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsOk(
|
||||
'redirect',
|
||||
['url'=> 'https://www.youtube.com/watch?v=M7IpKCZ47pU'],
|
||||
new Config(['stream'=>true])
|
||||
['url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU'],
|
||||
new Config(['stream' => true])
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -388,8 +388,8 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsOk(
|
||||
'redirect',
|
||||
['url'=> 'https://twitter.com/verge/status/813055465324056576/video/1'],
|
||||
new Config(['stream'=>true])
|
||||
['url' => 'https://twitter.com/verge/status/813055465324056576/video/1'],
|
||||
new Config(['stream' => true])
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -402,8 +402,8 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsOk(
|
||||
'redirect',
|
||||
['url'=> 'http://www.canalc2.tv/video/12163', 'format'=>'rtmp'],
|
||||
new Config(['stream'=>true])
|
||||
['url' => 'http://www.canalc2.tv/video/12163', 'format' => 'rtmp'],
|
||||
new Config(['stream' => true])
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -417,10 +417,10 @@ class FrontControllerTest extends TestCase
|
|||
$this->assertRequestIsOk(
|
||||
'redirect',
|
||||
[
|
||||
'url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU',
|
||||
'format'=> 'bestvideo+bestaudio',
|
||||
'url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU',
|
||||
'format' => 'bestvideo+bestaudio',
|
||||
],
|
||||
new Config(['remux'=>true])
|
||||
new Config(['remux' => true])
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -434,8 +434,8 @@ class FrontControllerTest extends TestCase
|
|||
$this->assertRequestIsServerError(
|
||||
'redirect',
|
||||
[
|
||||
'url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU',
|
||||
'format'=> 'bestvideo+bestaudio',
|
||||
'url' => 'https://www.youtube.com/watch?v=M7IpKCZ47pU',
|
||||
'format' => 'bestvideo+bestaudio',
|
||||
]
|
||||
);
|
||||
}
|
||||
|
@ -447,7 +447,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testRedirectWithMissingPassword()
|
||||
{
|
||||
$this->assertRequestIsRedirect('redirect', ['url'=>'http://vimeo.com/68375962']);
|
||||
$this->assertRequestIsRedirect('redirect', ['url' => 'http://vimeo.com/68375962']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -457,7 +457,7 @@ class FrontControllerTest extends TestCase
|
|||
*/
|
||||
public function testRedirectWithError()
|
||||
{
|
||||
$this->assertRequestIsServerError('redirect', ['url'=>'http://example.com/foo']);
|
||||
$this->assertRequestIsServerError('redirect', ['url' => 'http://example.com/foo']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -470,7 +470,7 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsServerError(
|
||||
'redirect',
|
||||
['url'=> 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC']
|
||||
['url' => 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC']
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -483,8 +483,8 @@ class FrontControllerTest extends TestCase
|
|||
{
|
||||
$this->assertRequestIsOk(
|
||||
'redirect',
|
||||
['url'=> 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC'],
|
||||
new Config(['stream'=>true])
|
||||
['url' => 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC'],
|
||||
new Config(['stream' => true])
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -499,7 +499,7 @@ class FrontControllerTest extends TestCase
|
|||
$this->controller->locale(
|
||||
$this->request,
|
||||
$this->response,
|
||||
['locale'=> 'fr_FR']
|
||||
['locale' => 'fr_FR']
|
||||
)->isRedirect()
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue