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:
<?php
namespace Guzzle\Tests\Log;
use Guzzle\Log\ClosureLogAdapter;
class ClosureLogAdapterTest extends \Guzzle\Tests\GuzzleTestCase
{
public function testClosure()
{
$that = $this;
$modified = null;
$this->adapter = new ClosureLogAdapter(function($message, $priority, $extras = null) use ($that, &$modified) {
$modified = array($message, $priority, $extras);
});
$this->adapter->log('test', LOG_NOTICE, '127.0.0.1');
$this->assertEquals(array('test', LOG_NOTICE, '127.0.0.1'), $modified);
}
public function testThrowsExceptionWhenNotCallable()
{
$this->adapter = new ClosureLogAdapter(123);
}
}