2009-11-06 00:41:43 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* FileLogTest file
|
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2009-11-06 00:41:43 +00:00
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 00:41:43 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 16:31:21 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2009-11-06 00:41:43 +00:00
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Log.Engine
|
2009-11-06 00:41:43 +00:00
|
|
|
* @since CakePHP(tm) v 1.3
|
2010-10-03 16:27:27 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2009-11-06 00:41:43 +00:00
|
|
|
*/
|
2010-12-09 05:55:24 +00:00
|
|
|
App::uses('FileLog', 'Log/Engine');
|
2009-11-06 00:41:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CakeLogTest class
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Log.Engine
|
2009-11-06 00:41:43 +00:00
|
|
|
*/
|
|
|
|
class FileLogTest extends CakeTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testLogFileWriting method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testLogFileWriting() {
|
2011-05-28 21:08:22 +00:00
|
|
|
if (file_exists(LOGS . 'error.log')) {
|
|
|
|
unlink(LOGS . 'error.log');
|
|
|
|
}
|
2010-11-13 04:05:44 +00:00
|
|
|
$log = new FileLog();
|
2009-11-06 00:41:43 +00:00
|
|
|
$log->write('warning', 'Test warning');
|
|
|
|
$this->assertTrue(file_exists(LOGS . 'error.log'));
|
|
|
|
|
|
|
|
$result = file_get_contents(LOGS . 'error.log');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/^2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Warning: Test warning/', $result);
|
2009-11-06 00:41:43 +00:00
|
|
|
unlink(LOGS . 'error.log');
|
|
|
|
|
2011-05-28 21:08:22 +00:00
|
|
|
if (file_exists(LOGS . 'debug.log')) {
|
|
|
|
unlink(LOGS . 'debug.log');
|
|
|
|
}
|
2009-11-06 00:41:43 +00:00
|
|
|
$log->write('debug', 'Test warning');
|
|
|
|
$this->assertTrue(file_exists(LOGS . 'debug.log'));
|
|
|
|
|
|
|
|
$result = file_get_contents(LOGS . 'debug.log');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/^2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Debug: Test warning/', $result);
|
2009-11-06 00:41:43 +00:00
|
|
|
unlink(LOGS . 'debug.log');
|
|
|
|
|
2011-05-28 21:08:22 +00:00
|
|
|
if (file_exists(LOGS . 'random.log')) {
|
|
|
|
unlink(LOGS . 'random.log');
|
|
|
|
}
|
2009-11-06 00:41:43 +00:00
|
|
|
$log->write('random', 'Test warning');
|
|
|
|
$this->assertTrue(file_exists(LOGS . 'random.log'));
|
|
|
|
|
|
|
|
$result = file_get_contents(LOGS . 'random.log');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/^2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Random: Test warning/', $result);
|
2009-11-06 00:41:43 +00:00
|
|
|
unlink(LOGS . 'random.log');
|
|
|
|
}
|
|
|
|
|
2009-11-06 00:44:50 +00:00
|
|
|
/**
|
|
|
|
* test using the path setting to write logs in other places.
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testPathSetting() {
|
2009-11-06 00:44:50 +00:00
|
|
|
$path = TMP . 'tests' . DS;
|
2011-05-28 21:08:22 +00:00
|
|
|
if (file_exists(LOGS . 'error.log')) {
|
|
|
|
unlink(LOGS . 'error.log');
|
|
|
|
}
|
2009-11-06 00:44:50 +00:00
|
|
|
|
2010-11-13 04:05:44 +00:00
|
|
|
$log = new FileLog(compact('path'));
|
2009-11-06 00:44:50 +00:00
|
|
|
$log->write('warning', 'Test warning');
|
|
|
|
$this->assertTrue(file_exists($path . 'error.log'));
|
|
|
|
unlink($path . 'error.log');
|
|
|
|
}
|
|
|
|
|
2009-11-06 00:41:43 +00:00
|
|
|
}
|