123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699 |
- <?php
- /**
- * CakeLogTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @package Cake.Test.Case.Log
- * @since CakePHP(tm) v 1.2.0.5432
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('CakeLog', 'Log');
- App::uses('FileLog', 'Log/Engine');
- /**
- * CakeLogTest class
- *
- * @package Cake.Test.Case.Log
- */
- class CakeLogTest extends CakeTestCase {
- /**
- * Start test callback, clears all streams enabled.
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $streams = CakeLog::configured();
- foreach ($streams as $stream) {
- CakeLog::drop($stream);
- }
- }
- /**
- * test importing loggers from app/libs and plugins.
- *
- * @return void
- */
- public function testImportingLoggers() {
- App::build(array(
- 'Lib' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Lib' . DS),
- 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ), App::RESET);
- CakePlugin::load('TestPlugin');
- $result = CakeLog::config('libtest', array(
- 'engine' => 'TestAppLog'
- ));
- $this->assertTrue($result);
- $this->assertEquals(CakeLog::configured(), array('libtest'));
- $result = CakeLog::config('plugintest', array(
- 'engine' => 'TestPlugin.TestPluginLog'
- ));
- $this->assertTrue($result);
- $this->assertEquals(CakeLog::configured(), array('libtest', 'plugintest'));
- CakeLog::write(LOG_INFO, 'TestPluginLog is not a BaseLog descendant');
- App::build();
- CakePlugin::unload();
- }
- /**
- * test all the errors from failed logger imports
- *
- * @expectedException CakeLogException
- * @return void
- */
- public function testImportingLoggerFailure() {
- CakeLog::config('fail', array());
- }
- /**
- * test config() with valid key name
- *
- * @return void
- */
- public function testValidKeyName() {
- CakeLog::config('valid', array('engine' => 'FileLog'));
- $stream = CakeLog::stream('valid');
- $this->assertInstanceOf('FileLog', $stream);
- CakeLog::drop('valid');
- }
- /**
- * test config() with invalid key name
- *
- * @expectedException CakeLogException
- * @return void
- */
- public function testInvalidKeyName() {
- CakeLog::config('1nv', array('engine' => 'FileLog'));
- }
- /**
- * test that loggers have to implement the correct interface.
- *
- * @expectedException CakeLogException
- * @return void
- */
- public function testNotImplementingInterface() {
- CakeLog::config('fail', array('engine' => 'stdClass'));
- }
- /**
- * Test that CakeLog autoconfigures itself to use a FileLogger with the LOGS dir.
- * When no streams are there.
- *
- * @return void
- */
- public function testAutoConfig() {
- if (file_exists(LOGS . 'error.log')) {
- unlink(LOGS . 'error.log');
- }
- CakeLog::write(LOG_WARNING, 'Test warning');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $result = CakeLog::configured();
- $this->assertEquals(array('default'), $result);
- $testMessage = 'custom message';
- CakeLog::write('custom', $testMessage);
- $content = file_get_contents(LOGS . 'custom.log');
- $this->assertContains($testMessage, $content);
- unlink(LOGS . 'error.log');
- unlink(LOGS . 'custom.log');
- }
- /**
- * test configuring log streams
- *
- * @return void
- */
- public function testConfig() {
- CakeLog::config('file', array(
- 'engine' => 'FileLog',
- 'path' => LOGS
- ));
- $result = CakeLog::configured();
- $this->assertEquals(array('file'), $result);
- if (file_exists(LOGS . 'error.log')) {
- unlink(LOGS . 'error.log');
- }
- CakeLog::write(LOG_WARNING, 'Test warning');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $result = file_get_contents(LOGS . 'error.log');
- $this->assertRegExp('/^2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Warning: Test warning/', $result);
- unlink(LOGS . 'error.log');
- }
- /**
- * explicit tests for drop()
- *
- * @return void
- */
- public function testDrop() {
- CakeLog::config('file', array(
- 'engine' => 'FileLog',
- 'path' => LOGS
- ));
- $result = CakeLog::configured();
- $this->assertEquals(array('file'), $result);
- CakeLog::drop('file');
- $result = CakeLog::configured();
- $this->assertSame(array(), $result);
- }
- /**
- * testLogFileWriting method
- *
- * @return void
- */
- public function testLogFileWriting() {
- if (file_exists(LOGS . 'error.log')) {
- unlink(LOGS . 'error.log');
- }
- $result = CakeLog::write(LOG_WARNING, 'Test warning');
- $this->assertTrue($result);
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- unlink(LOGS . 'error.log');
- CakeLog::write(LOG_WARNING, 'Test warning 1');
- CakeLog::write(LOG_WARNING, 'Test warning 2');
- $result = file_get_contents(LOGS . 'error.log');
- $this->assertRegExp('/^2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Warning: Test warning 1/', $result);
- $this->assertRegExp('/2[0-9]{3}-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+ Warning: Test warning 2$/', $result);
- unlink(LOGS . 'error.log');
- }
- /**
- * test selective logging by level/type
- *
- * @return void
- */
- public function testSelectiveLoggingByLevel() {
- if (file_exists(LOGS . 'spam.log')) {
- unlink(LOGS . 'spam.log');
- }
- if (file_exists(LOGS . 'eggs.log')) {
- unlink(LOGS . 'eggs.log');
- }
- CakeLog::config('spam', array(
- 'engine' => 'FileLog',
- 'types' => 'debug',
- 'file' => 'spam',
- ));
- CakeLog::config('eggs', array(
- 'engine' => 'FileLog',
- 'types' => array('eggs', 'debug', 'error', 'warning'),
- 'file' => 'eggs',
- ));
- $testMessage = 'selective logging';
- CakeLog::write(LOG_WARNING, $testMessage);
- $this->assertTrue(file_exists(LOGS . 'eggs.log'));
- $this->assertFalse(file_exists(LOGS . 'spam.log'));
- CakeLog::write(LOG_DEBUG, $testMessage);
- $this->assertTrue(file_exists(LOGS . 'spam.log'));
- $contents = file_get_contents(LOGS . 'spam.log');
- $this->assertContains('Debug: ' . $testMessage, $contents);
- $contents = file_get_contents(LOGS . 'eggs.log');
- $this->assertContains('Debug: ' . $testMessage, $contents);
- if (file_exists(LOGS . 'spam.log')) {
- unlink(LOGS . 'spam.log');
- }
- if (file_exists(LOGS . 'eggs.log')) {
- unlink(LOGS . 'eggs.log');
- }
- }
- /**
- * test enable
- *
- * @expectedException CakeLogException
- */
- public function testStreamEnable() {
- CakeLog::config('spam', array(
- 'engine' => 'FileLog',
- 'file' => 'spam',
- ));
- $this->assertTrue(CakeLog::enabled('spam'));
- CakeLog::drop('spam');
- CakeLog::enable('bogus_stream');
- }
- /**
- * test disable
- *
- * @expectedException CakeLogException
- */
- public function testStreamDisable() {
- CakeLog::config('spam', array(
- 'engine' => 'FileLog',
- 'file' => 'spam',
- ));
- $this->assertTrue(CakeLog::enabled('spam'));
- CakeLog::disable('spam');
- $this->assertFalse(CakeLog::enabled('spam'));
- CakeLog::drop('spam');
- CakeLog::enable('bogus_stream');
- }
- /**
- * test enabled() invalid stream
- *
- * @expectedException CakeLogException
- */
- public function testStreamEnabledInvalid() {
- CakeLog::enabled('bogus_stream');
- }
- /**
- * test disable invalid stream
- *
- * @expectedException CakeLogException
- */
- public function testStreamDisableInvalid() {
- CakeLog::disable('bogus_stream');
- }
- protected function _resetLogConfig() {
- CakeLog::config('debug', array(
- 'engine' => 'FileLog',
- 'types' => array('notice', 'info', 'debug'),
- 'file' => 'debug',
- ));
- CakeLog::config('error', array(
- 'engine' => 'FileLog',
- 'types' => array('warning', 'error', 'critical', 'alert', 'emergency'),
- 'file' => 'error',
- ));
- }
- protected function _deleteLogs() {
- if (file_exists(LOGS . 'shops.log')) {
- unlink(LOGS . 'shops.log');
- }
- if (file_exists(LOGS . 'error.log')) {
- unlink(LOGS . 'error.log');
- }
- if (file_exists(LOGS . 'debug.log')) {
- unlink(LOGS . 'debug.log');
- }
- if (file_exists(LOGS . 'bogus.log')) {
- unlink(LOGS . 'bogus.log');
- }
- if (file_exists(LOGS . 'spam.log')) {
- unlink(LOGS . 'spam.log');
- }
- if (file_exists(LOGS . 'eggs.log')) {
- unlink(LOGS . 'eggs.log');
- }
- }
- /**
- * test backward compatible scoped logging
- *
- * @return void
- */
- public function testScopedLoggingBC() {
- $this->_resetLogConfig();
- CakeLog::config('shops', array(
- 'engine' => 'FileLog',
- 'types' => array('info', 'notice', 'warning'),
- 'scopes' => array('transactions', 'orders'),
- 'file' => 'shops',
- ));
- $this->_deleteLogs();
- CakeLog::write('info', 'info message');
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertTrue(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('transactions', 'transaction message');
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertFalse(file_exists(LOGS . 'transactions.log'));
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('error', 'error message');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->assertFalse(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::write('orders', 'order message');
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->assertFalse(file_exists(LOGS . 'orders.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::write('warning', 'warning message');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::drop('shops');
- }
- /**
- * Test that scopes are exclusive and don't bleed.
- *
- * @return void
- */
- public function testScopedLoggingExclusive() {
- $this->_deleteLogs();
- CakeLog::config('shops', array(
- 'engine' => 'FileLog',
- 'types' => array('info', 'notice', 'warning'),
- 'scopes' => array('transactions', 'orders'),
- 'file' => 'shops.log',
- ));
- CakeLog::config('eggs', array(
- 'engine' => 'FileLog',
- 'types' => array('info', 'notice', 'warning'),
- 'scopes' => array('eggs'),
- 'file' => 'eggs.log',
- ));
- CakeLog::write('info', 'transactions message', 'transactions');
- $this->assertFalse(file_exists(LOGS . 'eggs.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::write('info', 'eggs message', 'eggs');
- $this->assertTrue(file_exists(LOGS . 'eggs.log'));
- $this->assertFalse(file_exists(LOGS . 'shops.log'));
- }
- /**
- * test scoped logging
- *
- * @return void
- */
- public function testScopedLogging() {
- $this->_resetLogConfig();
- $this->_deleteLogs();
- CakeLog::config('shops', array(
- 'engine' => 'FileLog',
- 'types' => array('info', 'notice', 'warning'),
- 'scopes' => array('transactions', 'orders'),
- 'file' => 'shops.log',
- ));
- CakeLog::write('info', 'info message', 'transactions');
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertTrue(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('transactions', 'transaction message', 'orders');
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertFalse(file_exists(LOGS . 'transactions.log'));
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('error', 'error message', 'orders');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->assertFalse(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::write('orders', 'order message', 'transactions');
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->assertFalse(file_exists(LOGS . 'orders.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::write('warning', 'warning message', 'orders');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::drop('shops');
- }
- /**
- * test bogus type and scope
- *
- */
- public function testBogusTypeAndScope() {
- $this->_resetLogConfig();
- $this->_deleteLogs();
- CakeLog::write('bogus', 'bogus message');
- $this->assertTrue(file_exists(LOGS . 'bogus.log'));
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('bogus', 'bogus message', 'bogus');
- $this->assertTrue(file_exists(LOGS . 'bogus.log'));
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::write('error', 'bogus message', 'bogus');
- $this->assertFalse(file_exists(LOGS . 'bogus.log'));
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- }
- /**
- * test scoped logging with convenience methods
- */
- public function testConvenienceScopedLogging() {
- if (file_exists(LOGS . 'shops.log')) {
- unlink(LOGS . 'shops.log');
- }
- if (file_exists(LOGS . 'error.log')) {
- unlink(LOGS . 'error.log');
- }
- if (file_exists(LOGS . 'debug.log')) {
- unlink(LOGS . 'debug.log');
- }
- $this->_resetLogConfig();
- CakeLog::config('shops', array(
- 'engine' => 'FileLog',
- 'types' => array('info', 'debug', 'notice', 'warning'),
- 'scopes' => array('transactions', 'orders'),
- 'file' => 'shops',
- ));
- CakeLog::info('info message', 'transactions');
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertTrue(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::error('error message', 'orders');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->assertFalse(file_exists(LOGS . 'shops.log'));
- $this->_deleteLogs();
- CakeLog::warning('warning message', 'orders');
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $this->assertTrue(file_exists(LOGS . 'shops.log'));
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- CakeLog::drop('shops');
- }
- /**
- * test convenience methods
- */
- public function testConvenienceMethods() {
- $this->_deleteLogs();
- CakeLog::config('debug', array(
- 'engine' => 'FileLog',
- 'types' => array('notice', 'info', 'debug'),
- 'file' => 'debug',
- ));
- CakeLog::config('error', array(
- 'engine' => 'FileLog',
- 'types' => array('emergency', 'alert', 'critical', 'error', 'warning'),
- 'file' => 'error',
- ));
- $testMessage = 'emergency message';
- CakeLog::emergency($testMessage);
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertRegExp('/(Emergency|Critical): ' . $testMessage . '/', $contents);
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- $testMessage = 'alert message';
- CakeLog::alert($testMessage);
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertRegExp('/(Alert|Critical): ' . $testMessage . '/', $contents);
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- $testMessage = 'critical message';
- CakeLog::critical($testMessage);
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertContains('Critical: ' . $testMessage, $contents);
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- $testMessage = 'error message';
- CakeLog::error($testMessage);
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertContains('Error: ' . $testMessage, $contents);
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- $testMessage = 'warning message';
- CakeLog::warning($testMessage);
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertContains('Warning: ' . $testMessage, $contents);
- $this->assertFalse(file_exists(LOGS . 'debug.log'));
- $this->_deleteLogs();
- $testMessage = 'notice message';
- CakeLog::notice($testMessage);
- $contents = file_get_contents(LOGS . 'debug.log');
- $this->assertRegExp('/(Notice|Debug): ' . $testMessage . '/', $contents);
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->_deleteLogs();
- $testMessage = 'info message';
- CakeLog::info($testMessage);
- $contents = file_get_contents(LOGS . 'debug.log');
- $this->assertRegExp('/(Info|Debug): ' . $testMessage . '/', $contents);
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->_deleteLogs();
- $testMessage = 'debug message';
- CakeLog::debug($testMessage);
- $contents = file_get_contents(LOGS . 'debug.log');
- $this->assertContains('Debug: ' . $testMessage, $contents);
- $this->assertFalse(file_exists(LOGS . 'error.log'));
- $this->_deleteLogs();
- }
- /**
- * test levels customization
- */
- public function testLevelCustomization() {
- $this->skipIf(DIRECTORY_SEPARATOR === '\\', 'Log level tests not supported on Windows.');
- $levels = CakeLog::defaultLevels();
- $this->assertNotEmpty($levels);
- $result = array_keys($levels);
- $this->assertEquals(array(0, 1, 2, 3, 4, 5, 6, 7), $result);
- $levels = CakeLog::levels(array('foo', 'bar'));
- CakeLog::defaultLevels();
- $this->assertEquals('foo', $levels[8]);
- $this->assertEquals('bar', $levels[9]);
- $levels = CakeLog::levels(array(11 => 'spam', 'bar' => 'eggs'));
- CakeLog::defaultLevels();
- $this->assertEquals('spam', $levels[8]);
- $this->assertEquals('eggs', $levels[9]);
- $levels = CakeLog::levels(array(11 => 'spam', 'bar' => 'eggs'), false);
- CakeLog::defaultLevels();
- $this->assertEquals(array('spam', 'eggs'), $levels);
- $levels = CakeLog::levels(array('ham', 9 => 'spam', '12' => 'fam'), false);
- CakeLog::defaultLevels();
- $this->assertEquals(array('ham', 'spam', 'fam'), $levels);
- }
- /**
- * Test writing log files with custom levels
- */
- public function testCustomLevelWrites() {
- $this->_deleteLogs();
- $this->_resetLogConfig();
- CakeLog::levels(array('spam', 'eggs'));
- $testMessage = 'error message';
- CakeLog::write('error', $testMessage);
- CakeLog::defaultLevels();
- $this->assertTrue(file_exists(LOGS . 'error.log'));
- $contents = file_get_contents(LOGS . 'error.log');
- $this->assertContains('Error: ' . $testMessage, $contents);
- CakeLog::config('spam', array(
- 'engine' => 'FileLog',
- 'file' => 'spam.log',
- 'types' => 'spam',
- ));
- CakeLog::config('eggs', array(
- 'engine' => 'FileLog',
- 'file' => 'eggs.log',
- 'types' => array('spam', 'eggs'),
- ));
- $testMessage = 'spam message';
- CakeLog::write('spam', $testMessage);
- CakeLog::defaultLevels();
- $this->assertTrue(file_exists(LOGS . 'spam.log'));
- $this->assertTrue(file_exists(LOGS . 'eggs.log'));
- $contents = file_get_contents(LOGS . 'spam.log');
- $this->assertContains('Spam: ' . $testMessage, $contents);
- $testMessage = 'egg message';
- CakeLog::write('eggs', $testMessage);
- CakeLog::defaultLevels();
- $contents = file_get_contents(LOGS . 'spam.log');
- $this->assertNotContains('Eggs: ' . $testMessage, $contents);
- $contents = file_get_contents(LOGS . 'eggs.log');
- $this->assertContains('Eggs: ' . $testMessage, $contents);
- CakeLog::drop('spam');
- CakeLog::drop('eggs');
- $this->_deleteLogs();
- }
- }
|