Add missing assertions to testGetInstanceWithEmptyFile

This commit is contained in:
Pierre Rudloff 2017-11-10 11:47:23 +01:00
parent 528c9eedf2
commit c994f8ac9a
1 changed files with 24 additions and 7 deletions

View File

@ -46,11 +46,27 @@ class ConfigTest extends TestCase
public function testGetInstance()
{
$this->assertEquals($this->config->convert, false);
$this->assertInternalType('array', $this->config->params);
$this->assertInternalType('string', $this->config->youtubedl);
$this->assertInternalType('string', $this->config->python);
$this->assertInternalType('string', $this->config->avconv);
$this->assertInternalType('string', $this->config->rtmpdump);
$this->assertConfig($this->config);
}
/**
* Assert that a Config object is correctly instantiated.
*
* @param Config $config Config class instance.
*
* @return void
*/
private function assertConfig(Config $config)
{
$this->assertInternalType('array', $config->params);
$this->assertInternalType('string', $config->youtubedl);
$this->assertInternalType('string', $config->python);
$this->assertInternalType('string', $config->avconv);
$this->assertInternalType('string', $config->rtmpdump);
$this->assertInternalType('bool', $config->convert);
$this->assertInternalType('bool', $config->uglyUrls);
$this->assertInternalType('bool', $config->stream);
$this->assertInternalType('bool', $config->remux);
}
/**
@ -65,13 +81,14 @@ class ConfigTest extends TestCase
}
/**
* Test the getInstance function with aen empty filename.
* Test the getInstance function with an empty filename.
*
* @return void
*/
public function testGetInstanceWithEmptyFile()
{
Config::getInstance('');
$config = Config::getInstance('');
$this->assertConfig($config);
}
/**