8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
148 lines
4.5 KiB
PHP
148 lines
4.5 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This source file is subject to the new BSD license that is bundled
|
|
* with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://framework.zend.com/license/new-bsd
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@zend.com so we can send you a copy immediately.
|
|
*
|
|
* @category Zend
|
|
* @package Zend_Log
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: StreamTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
/** PHPUnit_Framework_TestCase */
|
|
require_once 'PHPUnit/Framework/TestCase.php';
|
|
|
|
/** Zend_Log_Writer_Mock */
|
|
require_once 'Zend/Log/Writer/Stream.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Log
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @group Zend_Log
|
|
*/
|
|
class Zend_Log_Writer_StreamTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testConstructorThrowsWhenResourceIsNotStream()
|
|
{
|
|
$resource = xml_parser_create();
|
|
try {
|
|
new Zend_Log_Writer_Stream($resource);
|
|
$this->fail();
|
|
} catch (Exception $e) {
|
|
$this->assertType('Zend_Log_Exception', $e);
|
|
$this->assertRegExp('/not a stream/i', $e->getMessage());
|
|
}
|
|
xml_parser_free($resource);
|
|
}
|
|
|
|
public function testConstructorWithValidStream()
|
|
{
|
|
$stream = fopen('php://memory', 'w+');
|
|
new Zend_Log_Writer_Stream($stream);
|
|
}
|
|
|
|
public function testConstructorWithValidUrl()
|
|
{
|
|
new Zend_Log_Writer_Stream('php://memory');
|
|
}
|
|
|
|
public function testConstructorThrowsWhenModeSpecifiedForExistingStream()
|
|
{
|
|
$stream = fopen('php://memory', 'w+');
|
|
try {
|
|
new Zend_Log_Writer_Stream($stream, 'w+');
|
|
$this->fail();
|
|
} catch (Exception $e) {
|
|
$this->assertType('Zend_Log_Exception', $e);
|
|
$this->assertRegExp('/existing stream/i', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function testConstructorThrowsWhenStreamCannotBeOpened()
|
|
{
|
|
try {
|
|
new Zend_Log_Writer_Stream('');
|
|
$this->fail();
|
|
} catch (Exception $e) {
|
|
$this->assertType('Zend_Log_Exception', $e);
|
|
$this->assertRegExp('/cannot be opened/i', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function testWrite()
|
|
{
|
|
$stream = fopen('php://memory', 'w+');
|
|
$fields = array('message' => 'message-to-log');
|
|
|
|
$writer = new Zend_Log_Writer_Stream($stream);
|
|
$writer->write($fields);
|
|
|
|
rewind($stream);
|
|
$contents = stream_get_contents($stream);
|
|
fclose($stream);
|
|
|
|
$this->assertContains($fields['message'], $contents);
|
|
}
|
|
|
|
public function testWriteThrowsWhenStreamWriteFails()
|
|
{
|
|
$stream = fopen('php://memory', 'w+');
|
|
$writer = new Zend_Log_Writer_Stream($stream);
|
|
fclose($stream);
|
|
|
|
try {
|
|
$writer->write(array('message' => 'foo'));
|
|
$this->fail();
|
|
} catch (Exception $e) {
|
|
$this->assertType('Zend_Log_Exception', $e);
|
|
$this->assertRegExp('/unable to write/i', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function testShutdownClosesStreamResource()
|
|
{
|
|
$writer = new Zend_Log_Writer_Stream('php://memory', 'w+');
|
|
$writer->write(array('message' => 'this write should succeed'));
|
|
|
|
$writer->shutdown();
|
|
|
|
try {
|
|
$writer->write(array('message' => 'this write should fail'));
|
|
$this->fail();
|
|
} catch (Exception $e) {
|
|
$this->assertType('Zend_Log_Exception', $e);
|
|
$this->assertRegExp('/unable to write/i', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function testSettingNewFormatter()
|
|
{
|
|
$stream = fopen('php://memory', 'w+');
|
|
$writer = new Zend_Log_Writer_Stream($stream);
|
|
$expected = 'foo';
|
|
|
|
$formatter = new Zend_Log_Formatter_Simple($expected);
|
|
$writer->setFormatter($formatter);
|
|
|
|
$writer->write(array('bar'=>'baz'));
|
|
rewind($stream);
|
|
$contents = stream_get_contents($stream);
|
|
fclose($stream);
|
|
|
|
$this->assertContains($expected, $contents);
|
|
}
|
|
}
|