mirror of https://github.com/ory/kratos
27 lines
656 B
Go
27 lines
656 B
Go
// Copyright © 2023 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package testhelpers
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func JSONEq(t *testing.T, expected, actual interface{}, messageAndArgs ...interface{}) {
|
|
var eb, ab bytes.Buffer
|
|
require.NoError(t, json.NewEncoder(&eb).Encode(expected))
|
|
require.NoError(t, json.NewEncoder(&ab).Encode(actual))
|
|
assert.JSONEq(t, eb.String(), ab.String(), messageAndArgs...)
|
|
}
|
|
|
|
func LogJSON(t *testing.T, v interface{}) {
|
|
out, err := json.MarshalIndent(v, "", " ")
|
|
require.NoError(t, err)
|
|
t.Logf("\n%s\n---", out)
|
|
}
|