test(phpunit): Disable RTMP tests because the video we used is not available anymore

This commit is contained in:
Pierre Rudloff 2019-01-15 11:25:49 +01:00
parent e90b9e3439
commit 62b353046f
2 changed files with 4 additions and 4 deletions

View File

@ -451,6 +451,8 @@ class FrontControllerTest extends TestCase
*/
public function testRedirectWithRtmpStream()
{
$this->markTestIncomplete('We need to find another RTMP video.');
$this->config->stream = true;
$this->assertRequestIsOk(
'redirect',

View File

@ -97,7 +97,6 @@ class VideoDownloadTest extends TestCase
* @return void
* @dataProvider urlProvider
* @dataProvider m3uUrlProvider
* @dataProvider rtmpUrlProvider
* @dataProvider remuxUrlProvider
*/
public function testGetURL(
@ -278,7 +277,6 @@ class VideoDownloadTest extends TestCase
* @return void
* @dataProvider urlProvider
* @dataProvider m3uUrlProvider
* @dataProvider rtmpUrlProvider
*/
public function testGetJSON($url, $format)
{
@ -316,7 +314,6 @@ class VideoDownloadTest extends TestCase
* @return void
* @dataProvider urlProvider
* @dataProvider m3uUrlProvider
* @dataProvider rtmpUrlProvider
* @dataProvider remuxUrlProvider
*/
public function testGetFilename($url, $format, $filename, $extension)
@ -349,7 +346,6 @@ class VideoDownloadTest extends TestCase
* @return void
* @dataProvider urlProvider
* @dataProvider m3uUrlProvider
* @dataProvider rtmpUrlProvider
* @dataProvider remuxUrlProvider
*/
public function testGetAudioFilename($url, $format, $filename)
@ -490,6 +486,8 @@ class VideoDownloadTest extends TestCase
*/
public function testGetRtmpStream($url, $format)
{
$this->markTestIncomplete('We need to find another RTMP video.');
$this->assertStream(
$this->download->getRtmpStream(
$this->download->getJSON($url, $format)