Files
commons/json_test.go
2026-04-16 10:16:03 -04:00

68 lines
955 B
Go

package commons
import (
"log"
"fmt"
"bytes"
"encoding/json"
"testing"
)
func TestJsonPrintError(t *testing.T) {
jsonstr := `
{
"name": "George",
"age": 87,
active": "false",
"properties": {
"one": "two",
"three": "four"
}
}
`
var buf bytes.Buffer
log.SetOutput(&buf)
content := []byte(jsonstr)
var data map[string]any
err := json.Unmarshal(content, &data)
JsonPrintError(err, content)
errOut := fmt.Sprintf("%s", buf.String())
if errOut == "" {
t.Fatal("should have printed the error")
}
}
func TestJsonSprintError(t *testing.T) {
jsonstr := `
{
"name": "George",
"age": 87,
active": "false",
"properties": {
"one": "two",
"three": "four"
}
}
`
var buf bytes.Buffer
log.SetOutput(&buf)
content := []byte(jsonstr)
var data map[string]any
err := json.Unmarshal(content, &data)
_, s := JsonSprintError(err, content)
if s == "" {
t.Fatal("should have printed the error")
}
}