yq/pkg/yqlib/operators_test.go

142 lines
2.8 KiB
Go
Raw Normal View History

2020-11-03 23:48:43 +00:00
package yqlib
import (
"bufio"
"bytes"
2020-11-06 03:37:01 +00:00
"container/list"
2020-11-03 23:48:43 +00:00
"fmt"
2020-11-13 09:58:01 +00:00
"io"
2020-11-03 23:48:43 +00:00
"os"
2020-11-06 01:11:38 +00:00
"strings"
2020-11-03 23:48:43 +00:00
"testing"
"github.com/mikefarah/yq/v4/test"
)
type expressionScenario struct {
description string
document string
expression string
expected []string
2020-11-06 00:45:18 +00:00
skipDoc bool
2020-11-03 23:48:43 +00:00
}
func testScenario(t *testing.T, s *expressionScenario) {
2020-11-06 03:37:01 +00:00
var results *list.List
var err error
2020-11-13 02:19:54 +00:00
node, err := treeCreator.ParsePath(s.expression)
if err != nil {
t.Error(err)
return
}
inputs := list.New()
2020-11-06 03:37:01 +00:00
if s.document != "" {
2020-11-13 02:19:54 +00:00
inputs, err = readDocuments(strings.NewReader(s.document), "sample.yml")
if err != nil {
t.Error(err)
return
}
2020-11-03 23:48:43 +00:00
}
2020-11-13 02:19:54 +00:00
results, err = treeNavigator.GetMatchingNodes(inputs, node)
2020-11-06 03:37:01 +00:00
if err != nil {
t.Error(err)
2020-11-03 23:48:43 +00:00
return
}
test.AssertResultComplexWithContext(t, s.expected, resultsToString(results), fmt.Sprintf("exp: %v\ndoc: %v", s.expression, s.document))
}
2020-11-13 03:07:11 +00:00
func writeOrPanic(w *bufio.Writer, text string) {
_, err := w.WriteString(text)
if err != nil {
panic(err)
}
}
2020-11-13 09:58:01 +00:00
func copyFromHeader(title string, out *os.File) (bool, error) {
source := fmt.Sprintf("doc/headers/%v.md", title)
_, err := os.Stat(source)
if os.IsNotExist(err) {
return false, nil
}
in, err := os.Open(source) // nolint gosec
if err != nil {
return false, err
}
defer safelyCloseFile(in)
_, err = io.Copy(out, in)
return true, err
}
2020-11-03 23:48:43 +00:00
func documentScenarios(t *testing.T, title string, scenarios []expressionScenario) {
f, err := os.Create(fmt.Sprintf("doc/%v.md", title))
if err != nil {
2020-11-13 02:19:54 +00:00
t.Error(err)
2020-11-13 09:58:01 +00:00
return
2020-11-03 23:48:43 +00:00
}
defer f.Close()
2020-11-13 09:58:01 +00:00
hasHeader, err := copyFromHeader(title, f)
if err != nil {
t.Error(err)
return
}
2020-11-03 23:48:43 +00:00
w := bufio.NewWriter(f)
2020-11-13 09:58:01 +00:00
if !hasHeader {
writeOrPanic(w, fmt.Sprintf("## %v\n", title))
}
2020-11-03 23:48:43 +00:00
for index, s := range scenarios {
2020-11-06 00:45:18 +00:00
if !s.skipDoc {
2020-11-03 23:48:43 +00:00
2020-11-06 00:45:18 +00:00
if s.description != "" {
2020-11-13 09:58:01 +00:00
writeOrPanic(w, fmt.Sprintf("## %v\n", s.description))
2020-11-06 00:45:18 +00:00
} else {
2020-11-13 09:58:01 +00:00
writeOrPanic(w, fmt.Sprintf("## Example %v\n", index))
2020-11-06 00:45:18 +00:00
}
if s.document != "" {
2020-11-13 09:58:01 +00:00
//TODO: pretty here
writeOrPanic(w, "Given a sample.yml file of:\n")
2020-11-13 03:07:11 +00:00
writeOrPanic(w, fmt.Sprintf("```yaml\n%v\n```\n", s.document))
2020-11-06 00:45:18 +00:00
}
if s.expression != "" {
2020-11-13 09:58:01 +00:00
writeOrPanic(w, "then\n")
2020-11-13 03:07:11 +00:00
writeOrPanic(w, fmt.Sprintf("```bash\nyq '%v' < sample.yml\n```\n", s.expression))
2020-11-06 00:45:18 +00:00
}
2020-11-03 23:48:43 +00:00
2020-11-13 09:58:01 +00:00
writeOrPanic(w, "will output\n")
2020-11-06 00:45:18 +00:00
var output bytes.Buffer
2020-11-06 03:37:01 +00:00
var err error
2020-11-13 02:19:54 +00:00
printer := NewPrinter(bufio.NewWriter(&output), false, true, false, 2, true)
2020-11-06 03:37:01 +00:00
if s.document != "" {
2020-11-13 02:19:54 +00:00
node, err := treeCreator.ParsePath(s.expression)
if err != nil {
t.Error(err)
}
err = EvaluateStream("sample.yaml", strings.NewReader(s.document), node, printer)
2020-11-13 03:07:11 +00:00
if err != nil {
t.Error(err)
}
2020-11-06 03:37:01 +00:00
} else {
2020-11-13 02:19:54 +00:00
err = EvaluateAllFileStreams(s.expression, []string{}, printer)
2020-11-13 03:07:11 +00:00
if err != nil {
t.Error(err)
}
2020-11-06 03:37:01 +00:00
}
2020-11-13 03:07:11 +00:00
writeOrPanic(w, fmt.Sprintf("```yaml\n%v```\n", output.String()))
2020-11-03 23:48:43 +00:00
}
}
w.Flush()
}