mirror of
https://github.com/mickael-menu/zk
synced 2024-11-07 15:20:21 +00:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package assert
|
|
|
|
import (
|
|
"encoding/json"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
)
|
|
|
|
func Nil(t *testing.T, value interface{}) {
|
|
if !isNil(value) {
|
|
t.Errorf("Expected `%v` (type %v) to be nil", value, reflect.TypeOf(value))
|
|
}
|
|
}
|
|
|
|
func NotNil(t *testing.T, value interface{}) {
|
|
if isNil(value) {
|
|
t.Errorf("Expected `%v` (type %v) to not be nil", value, reflect.TypeOf(value))
|
|
}
|
|
}
|
|
|
|
func isNil(value interface{}) bool {
|
|
return value == nil ||
|
|
(reflect.ValueOf(value).Kind() == reflect.Ptr && reflect.ValueOf(value).IsNil())
|
|
}
|
|
|
|
func Equal(t *testing.T, actual, expected interface{}) {
|
|
if !(reflect.DeepEqual(actual, expected) || cmp.Equal(actual, expected)) {
|
|
t.Errorf("Received (type %v):\n%+v\n---\nBut expected (type %v):\n%+v", reflect.TypeOf(actual), toJSON(t, actual), reflect.TypeOf(expected), toJSON(t, expected))
|
|
}
|
|
}
|
|
|
|
func toJSON(t *testing.T, obj interface{}) string {
|
|
json, err := json.Marshal(obj)
|
|
// json, err := json.MarshalIndent(obj, "", " ")
|
|
Nil(t, err)
|
|
return string(json)
|
|
}
|
|
|
|
func Err(t *testing.T, err error, expected string) {
|
|
switch {
|
|
case err == nil:
|
|
t.Errorf("Expected error `%v`, received nil", expected)
|
|
case !strings.Contains(err.Error(), expected):
|
|
t.Errorf("Expected error `%v`, received `%v`", expected, err.Error())
|
|
}
|
|
}
|