1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-16 20:38:27 +00:00

80 lines
3.1 KiB
Go
Raw Permalink Normal View History

2020-06-02 22:48:55 +08:00
package framework
import (
"github.com/onsi/gomega"
)
// ExpectEqual expects the specified two are the same, otherwise an exception raises
func ExpectEqual(actual any, extra any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.Equal(extra), explain...)
}
// ExpectEqualValues expects the specified two are the same, it not strict about type
func ExpectEqualValues(actual any, extra any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.BeEquivalentTo(extra), explain...)
}
func ExpectEqualValuesWithOffset(offset int, actual any, extra any, explain ...any) {
2021-06-18 16:48:36 +08:00
gomega.ExpectWithOffset(1+offset, actual).To(gomega.BeEquivalentTo(extra), explain...)
}
2020-06-02 22:48:55 +08:00
// ExpectNotEqual expects the specified two are not the same, otherwise an exception raises
func ExpectNotEqual(actual any, extra any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).NotTo(gomega.Equal(extra), explain...)
}
// ExpectError expects an error happens, otherwise an exception raises
func ExpectError(err error, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, err).To(gomega.HaveOccurred(), explain...)
}
func ExpectErrorWithOffset(offset int, err error, explain ...any) {
2021-06-18 16:48:36 +08:00
gomega.ExpectWithOffset(1+offset, err).To(gomega.HaveOccurred(), explain...)
}
2020-06-02 22:48:55 +08:00
// ExpectNoError checks if "err" is set, and if so, fails assertion while logging the error.
func ExpectNoError(err error, explain ...any) {
2020-06-02 22:48:55 +08:00
ExpectNoErrorWithOffset(1, err, explain...)
}
// ExpectNoErrorWithOffset checks if "err" is set, and if so, fails assertion while logging the error at "offset" levels above its caller
// (for example, for call chain f -> g -> ExpectNoErrorWithOffset(1, ...) error would be logged for "f").
func ExpectNoErrorWithOffset(offset int, err error, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1+offset, err).NotTo(gomega.HaveOccurred(), explain...)
}
func ExpectContainSubstring(actual, substr string, explain ...any) {
gomega.ExpectWithOffset(1, actual).To(gomega.ContainSubstring(substr), explain...)
}
2020-06-02 22:48:55 +08:00
// ExpectConsistOf expects actual contains precisely the extra elements. The ordering of the elements does not matter.
func ExpectConsistOf(actual any, extra any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.ConsistOf(extra), explain...)
}
func ExpectContainElements(actual any, extra any, explain ...any) {
2021-06-18 16:48:36 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.ContainElements(extra), explain...)
}
func ExpectNotContainElements(actual any, extra any, explain ...any) {
2021-06-18 16:48:36 +08:00
gomega.ExpectWithOffset(1, actual).NotTo(gomega.ContainElements(extra), explain...)
}
2020-06-02 22:48:55 +08:00
// ExpectHaveKey expects the actual map has the key in the keyset
func ExpectHaveKey(actual any, key any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.HaveKey(key), explain...)
}
// ExpectEmpty expects actual is empty
func ExpectEmpty(actual any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).To(gomega.BeEmpty(), explain...)
}
func ExpectTrue(actual any, explain ...any) {
2020-06-02 22:48:55 +08:00
gomega.ExpectWithOffset(1, actual).Should(gomega.BeTrue(), explain...)
}
2021-06-18 16:48:36 +08:00
func ExpectTrueWithOffset(offset int, actual any, explain ...any) {
2021-06-18 16:48:36 +08:00
gomega.ExpectWithOffset(1+offset, actual).Should(gomega.BeTrue(), explain...)
}