本文整理匯總了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']));
}