mirror of
https://github.com/retailcrm/mg-bot-api-client-go.git
synced 2025-04-03 21:23:36 +03:00
add tests fot client writeLog method
This commit is contained in:
parent
5328c2c0f1
commit
830c36c128
1 changed files with 29 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package v1
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"log"
|
||||
|
@ -830,3 +831,31 @@ func RandStringBytesMaskImprSrc(n int) string {
|
|||
|
||||
return string(b)
|
||||
}
|
||||
|
||||
func TestMgClient_DebugNoLogger(t *testing.T) {
|
||||
c := client()
|
||||
c.Debug = true
|
||||
|
||||
var buf bytes.Buffer
|
||||
log.SetOutput(&buf)
|
||||
defer func() {
|
||||
log.SetOutput(os.Stderr)
|
||||
}()
|
||||
|
||||
c.writeLog("Test log string")
|
||||
|
||||
assert.Contains(t, buf.String(), "Test log string")
|
||||
}
|
||||
|
||||
func TestMgClient_DebugWithLogger(t *testing.T) {
|
||||
var buf bytes.Buffer
|
||||
logger := log.New(&buf, "Custom log prefix ", 0)
|
||||
|
||||
c := client()
|
||||
c.Debug = true
|
||||
c.WithLogger(logger)
|
||||
|
||||
c.writeLog("Test log string")
|
||||
|
||||
assert.Contains(t, buf.String(), "Custom log prefix Test log string")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue