1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<?php
/**
* @copyright Copyright 2012-2014 Rackspace US, Inc.
See COPYING for licensing information.
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache 2.0
* @version 1.5.9
* @author Glen Campbell <glen.campbell@rackspace.com>
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud\Tests\Common\Log;
use PHPUnit_Framework_TestCase;
use OpenCloud\Common\Log\Logger;
class LoggerTest extends PHPUnit_Framework_TestCase
{
public function __construct()
{
$this->logger = new Logger;
$this->logger->setEnabled(false);
}
public function testUrgency()
{
$this->logger->emergency('Emergency');
$this->expectOutputRegex('/Emergency/');
$this->logger->alert('Alert');
$this->expectOutputRegex('/Alert/');
$this->logger->critical('Critical');
$this->expectOutputRegex('/Critical/');
}
public function testLogLevels()
{
$this->assertNull($this->logger->warning('Warning'));
$this->assertNull($this->logger->error('Error'));
$this->assertNull($this->logger->debug('Debug'));
$this->logger->setEnabled(true);
$this->logger->notice('Notice: {string}', array('string' => 'Hello world'));
$this->expectOutputRegex('/Notice: Hello world/');
}
public function testSettingOptions()
{
$file = __DIR__ . '/test.log';
$fp = fopen($file, 'w');
$this->logger->setOptions(array(
'outputToFile' => true,
'logFile' => $file,
'foo' => 'bar'
));
$this->assertNull($this->logger->getOption('foo'));
$this->logger->emergency('This is an emergency!');
$this->assertRegExp('#This is an emergency!#', file_get_contents($file));
fclose($fp);
unlink($file);
}
/**
* @expectedException OpenCloud\Common\Exceptions\LoggingException
*/
public function testOutputFailsWithIncorrectFile()
{
$this->logger->setOptions(array(
'outputToFile' => true,
'logFile' => __DIR__ . '/fakeFile'
));
$this->logger->emergency('Can anyone see this?');
}
}
|