You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
3.1 KiB

  1. <?php
  2. /*
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage UnitTests
  7. * @since 2011-10-06
  8. *
  9. * Unit tests for CliLogger class
  10. */
  11. require_once dirname(__FILE__) . '/../../Registry.php';
  12. require_once dirname(__FILE__) . '/../../Config.php';
  13. require_once dirname(__FILE__) . '/../../exception/GeneralException.php';
  14. require_once dirname(__FILE__) . '/../../logger/Logger.php';
  15. require_once dirname(__FILE__) . '/../../logger/FileLogger.php';
  16. require_once 'vfsStream/vfsStream.php';
  17. class FileLoggerTest extends PHPUnit_Framework_TestCase
  18. {
  19. protected $conf;
  20. public function run(PHPUnit_Framework_TestResult $result = NULL)
  21. {
  22. $this->setPreserveGlobalState(false);
  23. return parent::run($result);
  24. }
  25. public function setUp()
  26. {
  27. vfsStreamWrapper::register();
  28. vfsStream::setup();
  29. $root = vfsStream::create(array());
  30. vfsStreamWrapper::setRoot($root);
  31. $this->conf = array('logger' => 'FileLogger', 'filepath' => vfsStream::url('root/log.txt'));
  32. Config::set('Logger', $this->conf);
  33. if ($root->hasChild('log.txt')) {
  34. $root->removeChild('log.txt');
  35. }
  36. }
  37. /**
  38. * @runInSeparateProcess
  39. */
  40. public function testGetInstance()
  41. {
  42. $logger = Logger::getInstance();
  43. $this->assertInstanceOf('FileLogger', $logger);
  44. }
  45. /**
  46. * @runInSeparateProcess
  47. */
  48. public function testCannotWrite()
  49. {
  50. Config::set('DEBUG', 1);
  51. $conf = array('logger' => 'FileLogger', 'filepath' => '/log.txt');
  52. Config::set('Logger', $conf);
  53. $this->setExpectedException('GeneralException', 'Could not open file /log.txt');
  54. $logger = Logger::getInstance()->log('new msg');
  55. $this->assertFileNotExists('log.txt');
  56. }
  57. /**
  58. * @runInSeparateProcess
  59. */
  60. public function testLog()
  61. {
  62. Config::set('DEBUG', 1);
  63. $this->assertFileNotExists($this->conf['filepath']);
  64. $logger = Logger::getInstance();
  65. $logger->setPid(123);
  66. $logger->log('new msg');
  67. $this->assertFileExists($this->conf['filepath']);
  68. }
  69. /**
  70. * @runInSeparateProcess
  71. */
  72. public function testDestruct()
  73. {
  74. Config::set('DEBUG', 1);
  75. $my_pid = posix_getpid();
  76. $fd_command = 'lsof -n -p ' . $my_pid . ' | wc -l';
  77. $fd_count_start = (int) `$fd_command`;
  78. $logger = Logger::getInstance();
  79. $logger->log('new msg');
  80. $logger->log('new msg');
  81. $logger->log('new msg');
  82. $logger->log('new msg');
  83. $logger->log('new msg');
  84. $logger->log('new msg');
  85. $logger->log('new msg');
  86. $logger->log('new msg');
  87. $logger->__destruct();
  88. $this->assertAttributeEquals(null, 'handler', $logger);
  89. $fd_count_end = (int) `$fd_command`;
  90. $this->assertSame($fd_count_start, $fd_count_end);
  91. }
  92. public function tearDown()
  93. {
  94. $conf = Config::getInstance();
  95. $conf->offsetUnset('Logger');
  96. if (file_exists($this->conf['filepath'])) {
  97. unlink($this->conf['filepath']);
  98. }
  99. }
  100. }