mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-17 21:18:37 +02:00
208 lines
5.7 KiB
Go
208 lines
5.7 KiB
Go
|
package testing_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
t "testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/testing"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
|
||
|
)
|
||
|
|
||
|
func TestInclude(t *t.T) {
|
||
|
Include := base.NewPositiveAssertion(testing.Include)
|
||
|
|
||
|
Convey("When arg is not passed", t, func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := Include(context.Background())
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
|
||
|
_, err = Include(context.Background(), values.NewInt(1))
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is a string", t, func() {
|
||
|
Convey("When 'Foo' and 'Bar'", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := Include(context.Background(), values.NewString("Foo"), values.NewString("Bar"))
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [string] 'Foo' to include [string] 'Bar'").Error())
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When 'FooBar' and 'Bar'", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := Include(context.Background(), values.NewString("FooBar"), values.NewString("Bar"))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is an array", t, func() {
|
||
|
Convey("When [1,2,3] and 4", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := Include(
|
||
|
context.Background(),
|
||
|
values.NewArrayWith(values.NewInt(1), values.NewInt(2), values.NewInt(3)),
|
||
|
values.NewInt(4),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [array] '[1,2,3]' to include [int] '4'").Error())
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When [1,2,3] and 2", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := Include(
|
||
|
context.Background(),
|
||
|
values.NewArrayWith(values.NewInt(1), values.NewInt(2), values.NewInt(3)),
|
||
|
values.NewInt(2),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is an object", t, func() {
|
||
|
Convey("When {a:1,b:2,c:3} and 4", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := Include(
|
||
|
context.Background(),
|
||
|
values.NewObjectWith(
|
||
|
values.NewObjectProperty("a", values.NewInt(1)),
|
||
|
values.NewObjectProperty("b", values.NewInt(2)),
|
||
|
values.NewObjectProperty("c", values.NewInt(3)),
|
||
|
),
|
||
|
values.NewInt(4),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [object] '{\"a\":1,\"b\":2,\"c\":3}' to include [int] '4'").Error())
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When {a:1,b:2,c:3} and 2", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := Include(
|
||
|
context.Background(),
|
||
|
values.NewObjectWith(
|
||
|
values.NewObjectProperty("a", values.NewInt(1)),
|
||
|
values.NewObjectProperty("b", values.NewInt(2)),
|
||
|
values.NewObjectProperty("c", values.NewInt(3)),
|
||
|
),
|
||
|
values.NewInt(2),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func TestNotInclude(t *t.T) {
|
||
|
NotInclude := base.NewNegativeAssertion(testing.Include)
|
||
|
|
||
|
Convey("When arg is not passed", t, func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := NotInclude(context.Background())
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
|
||
|
_, err = NotInclude(context.Background(), values.NewInt(1))
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is a string", t, func() {
|
||
|
Convey("When 'Foo' and 'Bar'", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := NotInclude(context.Background(), values.NewString("Foo"), values.NewString("Bar"))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When 'FooBar' and 'Bar'", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := NotInclude(context.Background(), values.NewString("FooBar"), values.NewString("Bar"))
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [string] 'FooBar' not to include [string] 'Bar'").Error())
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is an array", t, func() {
|
||
|
Convey("When [1,2,3] and 4", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := NotInclude(
|
||
|
context.Background(),
|
||
|
values.NewArrayWith(values.NewInt(1), values.NewInt(2), values.NewInt(3)),
|
||
|
values.NewInt(4),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When [1,2,3] and 2", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := NotInclude(
|
||
|
context.Background(),
|
||
|
values.NewArrayWith(values.NewInt(1), values.NewInt(2), values.NewInt(3)),
|
||
|
values.NewInt(2),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [array] '[1,2,3]' not to include [int] '2'").Error())
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When value is an object", t, func() {
|
||
|
Convey("When {a:1,b:2,c:3} and 4", func() {
|
||
|
Convey("It should not return an error", func() {
|
||
|
_, err := NotInclude(
|
||
|
context.Background(),
|
||
|
values.NewObjectWith(
|
||
|
values.NewObjectProperty("a", values.NewInt(1)),
|
||
|
values.NewObjectProperty("b", values.NewInt(2)),
|
||
|
values.NewObjectProperty("c", values.NewInt(3)),
|
||
|
),
|
||
|
values.NewInt(4),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
Convey("When {a:1,b:2,c:3} and 2", func() {
|
||
|
Convey("It should return an error", func() {
|
||
|
_, err := NotInclude(
|
||
|
context.Background(),
|
||
|
values.NewObjectWith(
|
||
|
values.NewObjectProperty("a", values.NewInt(1)),
|
||
|
values.NewObjectProperty("b", values.NewInt(2)),
|
||
|
values.NewObjectProperty("c", values.NewInt(3)),
|
||
|
),
|
||
|
values.NewInt(2),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeError)
|
||
|
So(err.Error(), ShouldEqual, core.Error(base.ErrAssertion, "expected [object] '{\"a\":1,\"b\":2,\"c\":3}' not to include [int] '2'").Error())
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
}
|