本文整理汇总了PHP中Monolog\Handler\TestHandler::handle方法的典型用法代码示例。如果您正苦于以下问题:PHP TestHandler::handle方法的具体用法?PHP TestHandler::handle怎么用?PHP TestHandler::handle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Monolog\Handler\TestHandler
的用法示例。
在下文中一共展示了TestHandler::handle方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testHandler
/**
* @dataProvider methodProvider
*/
public function testHandler($method, $level)
{
$handler = new TestHandler();
$record = $this->getRecord($level, 'test' . $method);
$this->assertFalse($handler->{'has' . $method}($record), 'has' . $method);
$this->assertFalse($handler->{'has' . $method . 'ThatContains'}('test'), 'has' . $method . 'ThatContains');
$this->assertFalse($handler->{'has' . $method . 'ThatPasses'}(function ($rec) {
return true;
}), 'has' . $method . 'ThatPasses');
$this->assertFalse($handler->{'has' . $method . 'ThatMatches'}('/test\\w+/'));
$this->assertFalse($handler->{'has' . $method . 'Records'}(), 'has' . $method . 'Records');
$handler->handle($record);
$this->assertFalse($handler->{'has' . $method}('bar'), 'has' . $method);
$this->assertTrue($handler->{'has' . $method}($record), 'has' . $method);
$this->assertTrue($handler->{'has' . $method}('test' . $method), 'has' . $method);
$this->assertTrue($handler->{'has' . $method . 'ThatContains'}('test'), 'has' . $method . 'ThatContains');
$this->assertTrue($handler->{'has' . $method . 'ThatPasses'}(function ($rec) {
return true;
}), 'has' . $method . 'ThatPasses');
$this->assertTrue($handler->{'has' . $method . 'ThatMatches'}('/test\\w+/'));
$this->assertTrue($handler->{'has' . $method . 'Records'}(), 'has' . $method . 'Records');
$records = $handler->getRecords();
unset($records[0]['formatted']);
$this->assertEquals(array($record), $records);
}
示例2: testProcessRecord
/**
* @covers Monolog\Handler\AbstractProcessingHandler::processRecord
*/
public function testProcessRecord()
{
$handler = new TestHandler();
$handler->pushProcessor(new WebProcessor(array('REQUEST_URI' => '', 'REQUEST_METHOD' => '', 'REMOTE_ADDR' => '')));
$handler->handle($this->getRecord());
list($record) = $handler->getRecords();
$this->assertEquals(3, count($record['extra']));
}
示例3: testHandler
/**
* @dataProvider methodProvider
*/
public function testHandler($method, $level)
{
$handler = new TestHandler();
$record = $this->getRecord($level, 'test' . $method);
$this->assertFalse($handler->{'has' . $method}($record));
$this->assertFalse($handler->{'has' . $method . 'Records'}());
$handler->handle($record);
$this->assertFalse($handler->{'has' . $method}('bar'));
$this->assertTrue($handler->{'has' . $method}($record));
$this->assertTrue($handler->{'has' . $method}('test' . $method));
$this->assertTrue($handler->{'has' . $method . 'Records'}());
$records = $handler->getRecords();
unset($records[0]['formatted']);
$this->assertEquals(array($record), $records);
}
示例4: handle
/**
* {@inheritdoc}
*/
public function handle(array $record) : bool
{
parent::handle($record);
throw new \Exception("ExceptionTestHandler::handle");
}
示例5: testIsHandling
public function testIsHandling()
{
$handler = new TestHandler(Logger::WARNING);
$this->assertTrue($handler->handle($this->getMessage()));
$this->assertFalse($handler->handle($this->getMessage(Logger::DEBUG)));
}