mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-19 21:28:32 +02:00
35 lines
840 B
Go
35 lines
840 B
Go
|
package testing
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/collections"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
|
||
|
)
|
||
|
|
||
|
// Len asserts that a measurable value has a length or size with the expected value.
|
||
|
// @params actual (Measurable) - Measurable value.
|
||
|
// @params length (Mixed) - Target length.
|
||
|
// @params message (String, optional) - Message to display on error.
|
||
|
var Len = base.Assertion{
|
||
|
DefaultMessage: func(args []core.Value) string {
|
||
|
return fmt.Sprintf("has size %s", args[1])
|
||
|
},
|
||
|
MinArgs: 2,
|
||
|
MaxArgs: 3,
|
||
|
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
|
||
|
col := args[0]
|
||
|
size := args[1]
|
||
|
|
||
|
out, err := collections.Length(ctx, col)
|
||
|
|
||
|
if err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
|
||
|
return out.Compare(size) == 0, nil
|
||
|
},
|
||
|
}
|