1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\cases\analysis\logger\adapter;
- use lithium\core\Libraries;
- use lithium\util\collection\Filters;
- use lithium\analysis\logger\adapter\File;
- class FileTest extends \lithium\test\Unit {
- public $subject;
- public function skip() {
- $path = realpath(Libraries::get(true, 'resources') . '/tmp/logs');
- $this->skipIf(!is_writable($path), "Path `{$path}` is not writable.");
- }
- public function setUp() {
- $this->path = Libraries::get(true, 'resources') . '/tmp/logs';
- $this->tearDown();
- }
- public function tearDown() {
- if (file_exists("{$this->path}/debug.log")) {
- unlink("{$this->path}/debug.log");
- }
- }
- public function testWriting() {
- $this->subject = new File(array('path' => $this->path));
- $priority = 'debug';
- $message = 'This is a debug message';
- $function = $this->subject->write($priority, $message);
- $now = date('Y-m-d H:i:s');
- $function('lithium\analysis\Logger', compact('priority', 'message'), new Filters());
- $log = file_get_contents("{$this->path}/debug.log");
- $this->assertEqual("{$now} This is a debug message\n", $log);
- }
- public function testWithoutTimestamp() {
- $this->subject = new File(array(
- 'path' => $this->path, 'timestamp' => false, 'format' => "{:message}\n"
- ));
- $priority = 'debug';
- $message = 'This is a debug message';
- $function = $this->subject->write($priority, $message);
- $now = date('Y-m-d H:i:s');
- $function('lithium\analysis\Logger', compact('priority', 'message'), new Filters());
- $log = file_get_contents("{$this->path}/debug.log");
- $this->assertEqual("This is a debug message\n", $log);
- }
- }
- ?>
|