Files
yii/tests/framework/base/CLoggerTest.php
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

50 lines
1.5 KiB
PHP

<?php
class CLoggerTest extends CTestCase
{
public function testLog()
{
$logger=new CLogger;
$logger->log('something','debug','application.test');
}
public function testGetLogs()
{
$logger=new CLogger();
$logs=array(
array('message1','debug','application.pages'),
array('message2','info','application.config'),
array('message3','info','application.pages'),
);
foreach($logs as $log)
$logger->log($log[0],$log[1],$log[2]);
$l=$logger->getLogs('debug');
$this->assertTrue($logs[0]===array_slice($l[0],0,3));
$l=$logger->getLogs('debug , Info');
$this->assertTrue($logs[0]===array_slice($l[0],0,3));
$this->assertTrue($logs[1]===array_slice($l[1],0,3));
$this->assertTrue($logs[2]===array_slice($l[2],0,3));
$l=$logger->getLogs('','application.config');
$this->assertTrue($logs[1]===array_slice($l[0],0,3));
$l=$logger->getLogs('','application.*');
$this->assertTrue($logs[0]===array_slice($l[0],0,3));
$this->assertTrue($logs[1]===array_slice($l[1],0,3));
$this->assertTrue($logs[2]===array_slice($l[2],0,3));
$l=$logger->getLogs('','application.config , Application.pages');
$this->assertTrue($logs[0]===array_slice($l[0],0,3));
$this->assertTrue($logs[1]===array_slice($l[1],0,3));
$this->assertTrue($logs[2]===array_slice($l[2],0,3));
$l=$logger->getLogs('info','application.config');
$this->assertTrue($logs[1]===array_slice($l[0],0,3));
$l=$logger->getLogs('info,debug','application.config');
$this->assertTrue($logs[1]===array_slice($l[0],0,3));
}
}