mirror of
https://github.com/mikefarah/yq.git
synced 2026-09-02 23:34:48 +08:00
fix(has): return false for negative array indices (#2769)
The sequence branch only checked the upper bound (len > index), so has(-1) returned true even on an empty array. Guard index >= 0. Co-authored-by: max <max@example.com>
This commit is contained in:
@@ -71,6 +71,16 @@ var hasOperatorScenarios = []expressionScenario{
|
||||
"D0, P[4], (!!bool)::true\n",
|
||||
},
|
||||
},
|
||||
{
|
||||
skipDoc: true,
|
||||
description: "Negative array index is never present",
|
||||
document: "[[1, 2, 3], []]",
|
||||
expression: `.[] | has(-1)`,
|
||||
expected: []string{
|
||||
"D0, P[0], (!!bool)::false\n",
|
||||
"D0, P[1], (!!bool)::false\n",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
func TestHasOperatorScenarios(t *testing.T) {
|
||||
|
||||
Reference in New Issue
Block a user