API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
class SS_LogTest extends SapphireTest {
|
|
|
|
|
|
|
|
protected $testEmailWriter;
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
SS_Log::clear_writers(); // this test will break if existing writers are available!
|
|
|
|
$this->testEmailWriter = new SS_LogEmailWriter('sean@silverstripe.com');
|
|
|
|
$this->testFileWriter = new SS_LogFileWriter('../test.log');
|
|
|
|
SS_Log::add_writer($this->testEmailWriter, SS_Log::ERR);
|
|
|
|
SS_Log::add_writer($this->testFileWriter, SS_Log::WARN);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testExistingWriter() {
|
|
|
|
$writers = SS_Log::get_writers();
|
2011-03-11 03:06:09 +01:00
|
|
|
$this->assertType('array', $writers);
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
$this->assertEquals(2, count($writers));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testRemoveWriter() {
|
|
|
|
SS_Log::remove_writer($this->testEmailWriter);
|
|
|
|
$writers = SS_Log::get_writers();
|
2011-03-11 03:06:09 +01:00
|
|
|
$this->assertType('array', $writers);
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
$this->assertEquals(1, count($writers));
|
|
|
|
SS_Log::remove_writer($this->testFileWriter);
|
|
|
|
$writers = SS_Log::get_writers();
|
2011-03-11 03:06:09 +01:00
|
|
|
$this->assertType('array', $writers);
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
$this->assertEquals(0, count($writers));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|