doudouwd2017 2016-12-15 12:08
浏览 114
已采纳

PHPUnit接收系统日志消息?

I am testing a logger class with a method that opens a log like so:

openlog($this->identifier, $this->option, $this->facility);
syslog($level, $message)
closelog();

The $facility that my logger writes to is currently set as LOCAL0

When I unit test my logger I get the following message:

Broadcast message from systemd-journald@myWS:

phpserver7.0[9125]: Logger message  

How can I suppress this message with PHPUnit or in my code?

Edit:

This only seems to happen when I log a message with a severity of "emergency" meaning a severity level of 0.

https://en.wikipedia.org/wiki/Syslog#Severity_level

Wikipedia states:

This level should not be used by applications.

Still, it is part of the PSR-3 logger abstract though so I would just like to be able to suppress the message with PHPUnit.

  • 写回答

1条回答 默认 最新

  • doutizong8099 2016-12-15 12:24
    关注

    In your test method, you can suppress output by wrapping an output buffer around your call that produces output. Example:

    /**
     * @preserveGlobalState disabled
     * @runInSeparateProcess
     */
    public function testOutputCanSend()
    {
        ob_start();
    
        // Do some stuff here that outputs directly, e.g
        openlog($this->identifier, $this->option, $this->facility);
        syslog($level, $message)
        closelog();
    
        ob_end_clean();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了