alltube/tests/ConfigTest.php

126 lines
2.9 KiB
PHP
Raw Normal View History

2015-10-31 14:42:25 +00:00
<?php
2015-10-31 14:42:25 +00:00
/**
2016-09-07 22:28:28 +00:00
* ConfigTest class.
2016-08-01 11:29:13 +00:00
*/
2016-12-05 12:12:27 +00:00
2016-03-29 23:49:08 +00:00
namespace Alltube\Test;
2015-10-31 14:42:25 +00:00
use Alltube\Config;
use Alltube\Exception\ConfigException;
2015-10-31 14:42:25 +00:00
/**
2016-09-07 22:28:28 +00:00
* Unit tests for the Config class.
2016-08-01 11:29:13 +00:00
*/
class ConfigTest extends BaseTest
2015-10-31 14:42:25 +00:00
{
2016-12-26 13:04:18 +00:00
2015-10-31 14:50:32 +00:00
/**
2016-09-07 22:28:28 +00:00
* Test the getInstance function.
2016-02-28 22:04:53 +00:00
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2015-10-31 14:42:25 +00:00
public function testGetInstance()
2016-08-18 23:07:51 +00:00
{
$config = new Config();
2020-05-13 19:33:05 +00:00
$this->assertEquals(false, $config->convert);
$this->assertConfig($config);
}
/**
* Assert that a Config object is correctly instantiated.
*
2017-11-10 11:19:04 +00:00
* @param Config $config Config class instance.
*
* @return void
*/
private function assertConfig(Config $config)
{
2019-11-30 13:08:18 +00:00
$this->assertIsArray($config->params);
$this->assertIsString($config->youtubedl);
$this->assertIsString($config->python);
$this->assertIsString($config->ffmpeg);
2019-11-30 13:08:18 +00:00
$this->assertIsBool($config->convert);
$this->assertIsBool($config->uglyUrls);
$this->assertIsBool($config->stream);
$this->assertIsBool($config->remux);
$this->assertIsBool($config->defaultAudio);
$this->assertIsBool($config->convertSeek);
2019-11-30 13:08:18 +00:00
$this->assertIsInt($config->audioBitrate);
2016-08-18 23:07:51 +00:00
}
/**
* Test the setFile function.
*
* @return void
* @throws ConfigException
*/
public function testSetFile()
{
$config = Config::fromFile($this->getConfigFile());
$this->assertConfig($config);
}
/**
* Test the setFile function with a missing config file.
*
* @return void
*/
public function testSetFileWithMissingFile()
{
$this->expectException(ConfigException::class);
Config::fromFile('foo');
}
/**
* Test the setOptions function.
*
* @return void
* @throws ConfigException
*/
public function testSetOptions()
{
$config = new Config();
$config->setOptions(['appName' => 'foo']);
2020-05-13 19:33:05 +00:00
$this->assertEquals('foo', $config->appName);
}
/**
* Test the setOptions function.
*
* @return void
*/
public function testSetOptionsWithBadYoutubedl()
{
$this->expectException(ConfigException::class);
$config = new Config();
$config->setOptions(['youtubedl' => 'foo']);
}
/**
* Test the setOptions function.
*
* @return void
*/
public function testSetOptionsWithBadPython()
{
$this->expectException(ConfigException::class);
$config = new Config();
$config->setOptions(['python' => 'foo']);
}
2016-09-05 22:36:47 +00:00
/**
2016-12-26 13:04:18 +00:00
* Test the getInstance function with the CONVERT and PYTHON environment variables.
2016-09-07 22:28:28 +00:00
*
2016-09-05 22:36:47 +00:00
* @return void
* @throws ConfigException
2016-09-05 22:36:47 +00:00
*/
2016-08-18 23:07:51 +00:00
public function testGetInstanceWithEnv()
2015-10-31 14:42:25 +00:00
{
2016-12-26 13:04:18 +00:00
putenv('CONVERT=1');
$config = Config::fromFile($this->getConfigFile());
2020-05-13 19:33:05 +00:00
$this->assertEquals(true, $config->convert);
2016-12-26 13:04:18 +00:00
putenv('CONVERT');
2015-10-31 14:42:25 +00:00
}
}