2020-06-17 17:37:01 -04:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
"github.com/MontFerret/ferret/pkg/stdlib/collections"
|
|
|
|
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
|
|
|
|
)
|
|
|
|
|
2020-08-07 21:49:29 -04:00
|
|
|
// INCLUDE asserts that haystack includes needle.
|
|
|
|
// @param {String | Array | Object | Iterable} actual - Haystack value.
|
|
|
|
// @param {Any} expected - Expected value.
|
|
|
|
// @param {String} [message] - Message to display on error.
|
2020-06-17 17:37:01 -04:00
|
|
|
var Include = base.Assertion{
|
|
|
|
DefaultMessage: func(args []core.Value) string {
|
|
|
|
return fmt.Sprintf("include %s", base.FormatValue(args[1]))
|
|
|
|
},
|
|
|
|
MinArgs: 2,
|
|
|
|
MaxArgs: 3,
|
|
|
|
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
|
|
|
|
haystack := args[0]
|
|
|
|
needle := args[1]
|
|
|
|
|
|
|
|
out, err := collections.Includes(ctx, haystack, needle)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return out.Compare(values.True) == 0, nil
|
|
|
|
},
|
|
|
|
}
|