alltube/tests/ConfigTest.php

58 lines
1.3 KiB
PHP
Raw Normal View History

2015-10-31 15:42:25 +01:00
<?php
/**
2016-09-08 00:28:28 +02:00
* ConfigTest class.
2016-08-01 13:29:13 +02:00
*/
2016-03-30 01:49:08 +02:00
namespace Alltube\Test;
2015-10-31 15:42:25 +01:00
use Alltube\Config;
/**
2016-09-08 00:28:28 +02:00
* Unit tests for the Config class.
2016-08-01 13:29:13 +02:00
*/
2016-03-30 01:49:08 +02:00
class ConfigTest extends \PHPUnit_Framework_TestCase
2015-10-31 15:42:25 +01:00
{
2016-09-06 00:36:47 +02:00
/**
2016-09-08 00:28:28 +02:00
* Config class instance.
*
2016-09-06 00:36:47 +02:00
* @var Config
*/
2016-08-19 01:07:51 +02:00
private $config;
2016-09-06 00:36:47 +02:00
/**
2016-09-08 00:28:28 +02:00
* Prepare tests.
2016-09-06 00:36:47 +02:00
*/
2016-08-19 01:07:51 +02:00
protected function setUp()
{
$this->config = Config::getInstance('config_test.yml');
2016-08-19 01:07:51 +02:00
}
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Test the getInstance function.
2016-02-28 23:04:53 +01:00
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2015-10-31 15:42:25 +01:00
public function testGetInstance()
2016-08-19 01:07:51 +02:00
{
$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);
}
2016-09-06 00:36:47 +02:00
/**
2016-09-08 00:28:28 +02:00
* Test the getInstance function with the CONVERT environment variable.
*
2016-09-06 00:36:47 +02:00
* @return void
*/
2016-08-19 01:07:51 +02:00
public function testGetInstanceWithEnv()
2015-10-31 15:42:25 +01:00
{
putenv('CONVERT=1');
2016-08-19 01:07:51 +02:00
Config::destroyInstance();
$config = Config::getInstance('config_test.yml');
2015-10-31 15:42:25 +01:00
$this->assertEquals($config->convert, true);
}
}