Use separate config file for tests
This commit is contained in:
parent
78787512ab
commit
1400f3e86a
3 changed files with 28 additions and 12 deletions
|
@ -65,12 +65,14 @@ class Config
|
|||
*/
|
||||
public $curl_params = array();
|
||||
|
||||
private $configFile;
|
||||
|
||||
/**
|
||||
* Config constructor
|
||||
*/
|
||||
private function __construct()
|
||||
private function __construct($yamlfile)
|
||||
{
|
||||
$yamlfile = __DIR__.'/../config.yml';
|
||||
$this->file = $yamlfile;
|
||||
if (is_file($yamlfile)) {
|
||||
$yaml = Yaml::parse(file_get_contents($yamlfile));
|
||||
if (isset($yaml) && is_array($yaml)) {
|
||||
|
@ -91,10 +93,10 @@ class Config
|
|||
*
|
||||
* @return Config
|
||||
*/
|
||||
public static function getInstance()
|
||||
public static function getInstance($yamlfile = __DIR__.'/../config.yml')
|
||||
{
|
||||
if (is_null(self::$instance)) {
|
||||
self::$instance = new Config();
|
||||
if (is_null(self::$instance) || self::$instance->file != $yamlfile) {
|
||||
self::$instance = new Config($yamlfile);
|
||||
}
|
||||
return self::$instance;
|
||||
}
|
||||
|
|
1
config_test.yml
Normal file
1
config_test.yml
Normal file
|
@ -0,0 +1 @@
|
|||
convert: false
|
|
@ -12,21 +12,34 @@ use Alltube\Config;
|
|||
class ConfigTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
private $config;
|
||||
|
||||
protected function setUp()
|
||||
{
|
||||
$this->config = Config::getInstance(__DIR__.'/../config_test.yml');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the getInstance function
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testGetInstance()
|
||||
{
|
||||
$this->assertEquals($this->config->convert, false);
|
||||
$this->assertInternalType('array', $this->config->curl_params);
|
||||
$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);
|
||||
}
|
||||
|
||||
public function testGetInstanceWithEnv()
|
||||
{
|
||||
putenv('CONVERT=1');
|
||||
$config = Config::getInstance();
|
||||
Config::destroyInstance();
|
||||
$config = Config::getInstance(__DIR__.'/../config_test.yml');
|
||||
$this->assertEquals($config->convert, true);
|
||||
$this->assertInternalType('array', $config->curl_params);
|
||||
$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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue