Documentation ¶
Overview ¶
Package bench defines a structure for benchmarked tests against custom CEL environments.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // ReferenceCases represent canonical CEL expressions for common use cases. ReferenceCases = []*Case{ { Expr: `string_value == 'value'`, Options: []cel.EnvOption{ cel.Variable("string_value", cel.StringType), }, In: map[string]any{ "string_value": "value", }, Out: types.True, }, { Expr: `string_value != 'value'`, Options: []cel.EnvOption{ cel.Variable("string_value", cel.StringType), }, In: map[string]any{ "string_value": "value", }, Out: types.False, }, { Expr: `'value' in list_value`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"a", "b", "c", "value"}, }, Out: types.True, }, { Expr: `!('value' in list_value)`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"a", "b", "c", "d"}, }, Out: types.True, }, { Expr: `x in ['a', 'b', 'c', 'd']`, Options: []cel.EnvOption{ cel.Variable("x", cel.StringType), }, In: map[string]any{ "x": "c", }, Out: types.True, }, { Expr: `!(x in ['a', 'b', 'c', 'd'])`, Options: []cel.EnvOption{ cel.Variable("x", cel.StringType), }, In: map[string]any{ "x": "e", }, Out: types.True, }, { Expr: `x in list_value`, Options: []cel.EnvOption{ cel.Variable("x", cel.StringType), cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "x": "c", "list_value": []string{"a", "b", "c", "d"}, }, Out: types.True, }, { Expr: `!(x in list_value)`, Options: []cel.EnvOption{ cel.Variable("x", cel.StringType), cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "x": "e", "list_value": []string{"a", "b", "c", "d"}, }, Out: types.True, }, { Expr: `list_value.exists(e, e.contains('cd'))`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"abc", "bcd", "cde", "def"}, }, Out: types.True, }, { Expr: `list_value.exists(e, e.startsWith('cd'))`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"abc", "bcd", "cde", "def"}, }, Out: types.True, }, { Expr: `list_value.exists(e, e.matches('cd*'))`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"abc", "bcd", "cde", "def"}, }, Out: types.True, }, { Expr: `list_value.filter(e, e.matches('^cd+')) == ['cde']`, Options: []cel.EnvOption{ cel.Variable("list_value", cel.ListType(cel.StringType)), }, In: map[string]any{ "list_value": []string{"abc", "bcd", "cde", "def"}, }, Out: types.True, }, { Expr: `'formatted list: %s, size: %d'.format([['abc', 'cde'], 2])`, Options: []cel.EnvOption{ ext.Strings(), }, In: map[string]any{}, Out: types.String(`formatted list: ["abc", "cde"], size: 2`), }, } )
Functions ¶
func RunCase ¶
RunCase evaluates a single test case against a custom environment, running three different variants of the expression: optimized, unoptimized, and trace.
* `optimized` - applies the cel.EvalOptions(cel.OptOptimize) flag. * `unoptimized` - no optimization flags applied. * `trace` - observes the evaluation state of an expression.
In many cases the evaluation times may be similar, but when running comparisons against the baseline CEL environment, it may be useful to characterize the performance of the custom environment against the baseline.
Types ¶
type Case ¶
type Case struct { // Expr is a human-readable expression which is expected to compile. Expr string // Options indicate additional pieces of configuration such as CEL libraries, variables, and functions. Options []cel.EnvOption // In is expected to be a map[string]any or interpreter.Activation instance representing the input to the expression. In any // Out is the expected CEL valued output. Out ref.Val }
Case represents a human-readable expression and an expected output given an input