test(phpunit): Disable RTMP tests because the video we used is not available anymore
This commit is contained in:
parent
e90b9e3439
commit
62b353046f
2 changed files with 4 additions and 4 deletions
|
@ -451,6 +451,8 @@ class FrontControllerTest extends TestCase
|
||||||
*/
|
*/
|
||||||
public function testRedirectWithRtmpStream()
|
public function testRedirectWithRtmpStream()
|
||||||
{
|
{
|
||||||
|
$this->markTestIncomplete('We need to find another RTMP video.');
|
||||||
|
|
||||||
$this->config->stream = true;
|
$this->config->stream = true;
|
||||||
$this->assertRequestIsOk(
|
$this->assertRequestIsOk(
|
||||||
'redirect',
|
'redirect',
|
||||||
|
|
|
@ -97,7 +97,6 @@ class VideoDownloadTest extends TestCase
|
||||||
* @return void
|
* @return void
|
||||||
* @dataProvider urlProvider
|
* @dataProvider urlProvider
|
||||||
* @dataProvider m3uUrlProvider
|
* @dataProvider m3uUrlProvider
|
||||||
* @dataProvider rtmpUrlProvider
|
|
||||||
* @dataProvider remuxUrlProvider
|
* @dataProvider remuxUrlProvider
|
||||||
*/
|
*/
|
||||||
public function testGetURL(
|
public function testGetURL(
|
||||||
|
@ -278,7 +277,6 @@ class VideoDownloadTest extends TestCase
|
||||||
* @return void
|
* @return void
|
||||||
* @dataProvider urlProvider
|
* @dataProvider urlProvider
|
||||||
* @dataProvider m3uUrlProvider
|
* @dataProvider m3uUrlProvider
|
||||||
* @dataProvider rtmpUrlProvider
|
|
||||||
*/
|
*/
|
||||||
public function testGetJSON($url, $format)
|
public function testGetJSON($url, $format)
|
||||||
{
|
{
|
||||||
|
@ -316,7 +314,6 @@ class VideoDownloadTest extends TestCase
|
||||||
* @return void
|
* @return void
|
||||||
* @dataProvider urlProvider
|
* @dataProvider urlProvider
|
||||||
* @dataProvider m3uUrlProvider
|
* @dataProvider m3uUrlProvider
|
||||||
* @dataProvider rtmpUrlProvider
|
|
||||||
* @dataProvider remuxUrlProvider
|
* @dataProvider remuxUrlProvider
|
||||||
*/
|
*/
|
||||||
public function testGetFilename($url, $format, $filename, $extension)
|
public function testGetFilename($url, $format, $filename, $extension)
|
||||||
|
@ -349,7 +346,6 @@ class VideoDownloadTest extends TestCase
|
||||||
* @return void
|
* @return void
|
||||||
* @dataProvider urlProvider
|
* @dataProvider urlProvider
|
||||||
* @dataProvider m3uUrlProvider
|
* @dataProvider m3uUrlProvider
|
||||||
* @dataProvider rtmpUrlProvider
|
|
||||||
* @dataProvider remuxUrlProvider
|
* @dataProvider remuxUrlProvider
|
||||||
*/
|
*/
|
||||||
public function testGetAudioFilename($url, $format, $filename)
|
public function testGetAudioFilename($url, $format, $filename)
|
||||||
|
@ -490,6 +486,8 @@ class VideoDownloadTest extends TestCase
|
||||||
*/
|
*/
|
||||||
public function testGetRtmpStream($url, $format)
|
public function testGetRtmpStream($url, $format)
|
||||||
{
|
{
|
||||||
|
$this->markTestIncomplete('We need to find another RTMP video.');
|
||||||
|
|
||||||
$this->assertStream(
|
$this->assertStream(
|
||||||
$this->download->getRtmpStream(
|
$this->download->getRtmpStream(
|
||||||
$this->download->getJSON($url, $format)
|
$this->download->getJSON($url, $format)
|
||||||
|
|
Loading…
Reference in a new issue