alltube/tests/ConfigTest.php

112 lines
2.6 KiB
PHP
Raw Normal View History

2015-10-31 14:42:25 +00:00
<?php
/**
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;
2017-10-26 08:46:22 +00:00
use PHPUnit\Framework\TestCase;
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
*/
2017-10-26 08:46:22 +00:00
class ConfigTest extends TestCase
2015-10-31 14:42:25 +00:00
{
2016-09-05 22:36:47 +00:00
/**
2016-09-07 22:28:28 +00:00
* Config class instance.
*
2016-09-05 22:36:47 +00:00
* @var Config
*/
2016-08-18 23:07:51 +00:00
private $config;
2016-09-05 22:36:47 +00:00
/**
2016-09-07 22:28:28 +00:00
* Prepare tests.
2016-09-05 22:36:47 +00:00
*/
2016-08-18 23:07:51 +00:00
protected function setUp()
{
2017-05-15 05:25:14 +00:00
$this->config = Config::getInstance('config/config_test.yml');
2016-08-18 23:07:51 +00:00
}
2016-12-26 14:55:55 +00:00
/**
* Destroy variables created by setUp().
2016-12-26 14:58:36 +00:00
*
2016-12-26 14:55:55 +00:00
* @return void
*/
2016-12-26 13:04:18 +00:00
protected function tearDown()
{
Config::destroyInstance();
}
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
{
$this->assertEquals($this->config->convert, false);
$this->assertConfig($this->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)
{
$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);
$this->assertInternalType('int', $config->audioBitrate);
2016-08-18 23:07:51 +00:00
}
/**
* Test the getInstance function with a missing config file.
*
* @return void
* @expectedException Exception
*/
public function testGetInstanceWithMissingFile()
{
Config::getInstance('foo');
}
/**
* Test the getInstance function with an empty filename.
*
* @return void
*/
public function testGetInstanceWithEmptyFile()
{
$config = Config::getInstance('');
$this->assertConfig($config);
}
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
*/
2016-08-18 23:07:51 +00:00
public function testGetInstanceWithEnv()
2015-10-31 14:42:25 +00:00
{
2016-08-18 23:07:51 +00:00
Config::destroyInstance();
2016-12-26 13:04:18 +00:00
putenv('CONVERT=1');
putenv('PYTHON=foo');
2017-05-15 05:25:14 +00:00
$config = Config::getInstance('config/config_test.yml');
2015-10-31 14:42:25 +00:00
$this->assertEquals($config->convert, true);
2016-12-26 13:04:18 +00:00
$this->assertEquals($config->python, 'foo');
putenv('CONVERT');
putenv('PYTHON');
2015-10-31 14:42:25 +00:00
}
}