mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
13d1bbb45f
Remove dependency on yaml.Node for internal AST representation. Yaml decoder is now just another decoder.
31 lines
650 B
Go
31 lines
650 B
Go
package yqlib
|
|
|
|
import "testing"
|
|
|
|
var shuffleOperatorScenarios = []expressionScenario{
|
|
{
|
|
description: "Shuffle array",
|
|
document: "[1, 2, 3, 4, 5]",
|
|
expression: `shuffle`,
|
|
expected: []string{
|
|
"D0, P[], (!!seq)::[5, 2, 4, 1, 3]\n",
|
|
},
|
|
},
|
|
|
|
{
|
|
description: "Shuffle array in place",
|
|
document: "cool: [1, 2, 3, 4, 5]",
|
|
expression: `.cool |= shuffle`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::cool: [5, 2, 4, 1, 3]\n",
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestShuffleByOperatorScenarios(t *testing.T) {
|
|
for _, tt := range shuffleOperatorScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
documentOperatorScenarios(t, "shuffle", shuffleOperatorScenarios)
|
|
}
|