1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52:
<?php
namespace Guzzle\Tests\Log;
use Guzzle\Log\Zf2LogAdapter;
use Zend\Log\Logger;
use Zend\Log\Writer\Stream;
class Zf2LogAdapterTest extends \Guzzle\Tests\GuzzleTestCase
{
protected $adapter;
protected $log;
protected $stream;
protected function setUp()
{
$this->stream = fopen('php://temp', 'r+');
$this->log = new Logger();
$this->log->addWriter(new Stream($this->stream));
$this->adapter = new Zf2LogAdapter($this->log);
}
public function testLogsMessagesToAdaptedObject()
{
$this->adapter->log('Zend_Test!', \LOG_NOTICE);
rewind($this->stream);
$contents = stream_get_contents($this->stream);
$this->assertEquals(1, substr_count($contents, 'Zend_Test!'));
$this->adapter->log('Zend_Test!', \LOG_ALERT);
rewind($this->stream);
$contents = stream_get_contents($this->stream);
$this->assertEquals(2, substr_count($contents, 'Zend_Test!'));
}
public function testExposesAdaptedLogObject()
{
$this->assertEquals($this->log, $this->adapter->getLogObject());
}
}