doudongfu8006 2017-05-22 18:40
浏览 501
已采纳

如何在go测试中检查日志/输出?

I have this function that logs the error in some cases:

func readByte(/*...*/){
    // ...
    if err != nil {
        fmt.Println("ERROR")
        log.Print("Couldn't read first byte")
        return
    }
    // ...
}

Now, in the test file, I want to check the output error from this function:

    c.Assert(OUTPUT, check.Matches, "teste")

How can I access the log? I tried to put a buffer but it didn't work. What is the right way to catch this log without change my readByte function code?

  • 写回答

1条回答 默认 最新

  • dongnvwang8591 2017-05-22 20:45
    关注

    For example,

    readbyte_test.go:

    package main
    
    import (
        "bytes"
        "fmt"
        "io"
        "log"
        "os"
        "testing"
    )
    
    func readByte( /*...*/ ) {
        // ...
        err := io.EOF // force an error
        if err != nil {
            fmt.Println("ERROR")
            log.Print("Couldn't read first byte")
            return
        }
        // ...
    }
    
    func TestReadByte(t *testing.T) {
        var buf bytes.Buffer
        log.SetOutput(&buf)
        defer func() {
            log.SetOutput(os.Stderr)
        }()
        readByte()
        t.Log(buf.String())
    }
    

    Output:

    $ go test -v readbyte_test.go 
    === RUN   TestReadByte
    ERROR
    --- PASS: TestReadByte (0.00s)
        readbyte_test.go:30: 2017/05/22 16:41:00 Couldn't read first byte
    PASS
    ok      command-line-arguments  0.004s
    $ 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 matlab ode45 未发现警告,但是运行出错
  • ¥15 vscode platformio
  • ¥15 代写uni代码,app唤醒
  • ¥15 全志t113i启动qt应用程序提示internal error
  • ¥15 ensp可以看看嘛.
  • ¥80 51单片机C语言代码解决单片机为AT89C52是清翔单片机
  • ¥60 优博讯DT50高通安卓11系统刷完机自动进去fastboot模式
  • ¥15 minist数字识别
  • ¥15 在安装gym库的pygame时遇到问题,不知道如何解决
  • ¥20 uniapp中的webview 使用的是本地的vue页面,在模拟器上显示无法打开