本文整理汇总了PHP中Monolog\Handler\TestHandler::pushProcessor方法的典型用法代码示例。如果您正苦于以下问题:PHP TestHandler::pushProcessor方法的具体用法?PHP TestHandler::pushProcessor怎么用?PHP TestHandler::pushProcessor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Monolog\Handler\TestHandler
的用法示例。
在下文中一共展示了TestHandler::pushProcessor方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
public function setUp()
{
$storageApiService = new StorageApiService(new RequestStack());
$storageApiService->setClient(new Client(['token' => SYRUP_SAPI_TEST_TOKEN, 'url' => SYRUP_SAPI_TEST_URL]));
$uploader = new UploaderS3(['aws-access-key' => SYRUP_AWS_KEY, 'aws-secret-key' => SYRUP_AWS_SECRET, 's3-upload-path' => SYRUP_S3_BUCKET, 'aws-region' => SYRUP_AWS_REGION, 'url-prefix' => 'https://connection.keboola.com/admin/utils/logs?file=']);
$this->testLogHandler = new TestHandler();
$this->testLogHandler->setFormatter(new JsonFormatter());
$this->testLogHandler->pushProcessor(new SyslogProcessor(SYRUP_APP_NAME, $storageApiService, $uploader));
$logger = new \Monolog\Logger('test', [$this->testLogHandler]);
$this->listener = new SyrupExceptionListener(SYRUP_APP_NAME, $storageApiService, $logger);
}
示例2: setUp
public function setUp()
{
$storageApiService = new StorageApiService();
$storageApiService->setClient(new Client(['token' => SYRUP_SAPI_TEST_TOKEN]));
$uploader = new Uploader(['aws-access-key' => SYRUP_AWS_KEY, 'aws-secret-key' => SYRUP_AWS_SECRET, 's3-upload-path' => SYRUP_S3_BUCKET, 'aws-region' => SYRUP_AWS_REGION]);
$this->testLogHandler = new TestHandler();
$this->testLogHandler->setFormatter(new JsonFormatter());
$this->testLogHandler->pushProcessor(new SyslogProcessor(SYRUP_APP_NAME, $storageApiService, $uploader));
$logger = new \Monolog\Logger('test', [$this->testLogHandler]);
$this->listener = new SyrupExceptionListener(SYRUP_APP_NAME, $storageApiService, $logger);
}
示例3: testPushPopProcessor
/**
* @covers Monolog\Handler\AbstractHandler::pushProcessor
* @covers Monolog\Handler\AbstractHandler::popProcessor
* @expectedException LogicException
*/
public function testPushPopProcessor()
{
$logger = new TestHandler();
$processor1 = new WebProcessor();
$processor2 = new WebProcessor();
$logger->pushProcessor($processor1);
$logger->pushProcessor($processor2);
$this->assertEquals($processor2, $logger->popProcessor());
$this->assertEquals($processor1, $logger->popProcessor());
$logger->popProcessor();
}
示例4: getHandler
public function getHandler()
{
$processor = new IntrospectionProcessor();
$handler = new TestHandler();
$handler->pushProcessor($processor);
return $handler;
}
示例5: 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']));
}