mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
74101612ce
* first working implementation * assertions tests * adds to requires * merges assert and require tests into a single suite * gazelle * Merge branch 'merge-assert-require-tests' into assert-logs-contains-move-to-assertions * gazelle * updates references * fixes build issue * Merge branch 'master' into assert-logs-contains-move-to-assertions * Merge refs/heads/master into assert-logs-contains-move-to-assertions * Merge branch 'master' into assert-logs-contains-move-to-assertions * fixes build issue * Merge branch 'assert-logs-contains-move-to-assertions' of github.com:prysmaticlabs/prysm into assert-logs-contains-move-to-assertions * Merge refs/heads/master into assert-logs-contains-move-to-assertions * Merge refs/heads/master into assert-logs-contains-move-to-assertions
47 lines
1.8 KiB
Go
47 lines
1.8 KiB
Go
package require
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assertions"
|
|
"github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
// Equal compares values using comparison operator.
|
|
func Equal(tb assertions.AssertionTestingTB, expected, actual interface{}, msg ...interface{}) {
|
|
assertions.Equal(tb.Fatalf, expected, actual, msg...)
|
|
}
|
|
|
|
// NotEqual compares values using comparison operator.
|
|
func NotEqual(tb assertions.AssertionTestingTB, expected, actual interface{}, msg ...interface{}) {
|
|
assertions.NotEqual(tb.Fatalf, expected, actual, msg...)
|
|
}
|
|
|
|
// DeepEqual compares values using DeepEqual.
|
|
func DeepEqual(tb assertions.AssertionTestingTB, expected, actual interface{}, msg ...interface{}) {
|
|
assertions.DeepEqual(tb.Fatalf, expected, actual, msg...)
|
|
}
|
|
|
|
// NoError asserts that error is nil.
|
|
func NoError(tb assertions.AssertionTestingTB, err error, msg ...interface{}) {
|
|
assertions.NoError(tb.Fatalf, err, msg...)
|
|
}
|
|
|
|
// ErrorContains asserts that actual error contains wanted message.
|
|
func ErrorContains(tb assertions.AssertionTestingTB, want string, err error, msg ...interface{}) {
|
|
assertions.ErrorContains(tb.Fatalf, want, err, msg...)
|
|
}
|
|
|
|
// NotNil asserts that passed value is not nil.
|
|
func NotNil(tb assertions.AssertionTestingTB, obj interface{}, msg ...interface{}) {
|
|
assertions.NotNil(tb.Fatalf, obj, msg...)
|
|
}
|
|
|
|
// LogsContain checks that the desired string is a subset of the current log output.
|
|
func LogsContain(tb assertions.AssertionTestingTB, hook *test.Hook, want string, msg ...interface{}) {
|
|
assertions.LogsContain(tb.Fatalf, hook, want, true, msg...)
|
|
}
|
|
|
|
// LogsDoNotContain is the inverse check of LogsContain.
|
|
func LogsDoNotContain(tb assertions.AssertionTestingTB, hook *test.Hook, want string, msg ...interface{}) {
|
|
assertions.LogsContain(tb.Fatalf, hook, want, false, msg...)
|
|
}
|