2020-11-17 22:37:42 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
2021-02-02 07:17:59 +00:00
|
|
|
"container/list"
|
2020-11-17 22:37:42 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mikefarah/yq/v4/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
var multiDocSample = `a: banana
|
|
|
|
---
|
|
|
|
a: apple
|
|
|
|
---
|
|
|
|
a: coconut
|
|
|
|
`
|
|
|
|
|
2021-07-14 10:48:16 +00:00
|
|
|
var leadingSeperatorSample = `---
|
|
|
|
a: good doc
|
|
|
|
`
|
|
|
|
|
2021-02-02 07:17:59 +00:00
|
|
|
func nodeToList(candidate *CandidateNode) *list.List {
|
|
|
|
elMap := list.New()
|
|
|
|
elMap.PushBack(candidate)
|
|
|
|
return elMap
|
|
|
|
}
|
|
|
|
|
2021-07-14 10:48:16 +00:00
|
|
|
func TestPrinterWithLeadingSeperator(t *testing.T) {
|
|
|
|
var output bytes.Buffer
|
|
|
|
var writer = bufio.NewWriter(&output)
|
|
|
|
printer := NewPrinter(writer, false, true, false, 2, true)
|
|
|
|
|
|
|
|
inputs, err := readDocuments(strings.NewReader(leadingSeperatorSample), "sample.yml", 0)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
printer.SetPrintLeadingSeperator(true)
|
|
|
|
|
|
|
|
err = printer.PrintResults(inputs)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
writer.Flush()
|
|
|
|
test.AssertResult(t, leadingSeperatorSample, output.String())
|
|
|
|
}
|
|
|
|
|
2020-11-17 22:37:42 +00:00
|
|
|
func TestPrinterMultipleDocsInSequence(t *testing.T) {
|
|
|
|
var output bytes.Buffer
|
|
|
|
var writer = bufio.NewWriter(&output)
|
|
|
|
printer := NewPrinter(writer, false, true, false, 2, true)
|
|
|
|
|
2020-11-20 11:57:32 +00:00
|
|
|
inputs, err := readDocuments(strings.NewReader(multiDocSample), "sample.yml", 0)
|
2020-11-17 22:37:42 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
el := inputs.Front()
|
2021-02-02 07:17:59 +00:00
|
|
|
sample1 := nodeToList(el.Value.(*CandidateNode))
|
2020-11-17 22:37:42 +00:00
|
|
|
|
|
|
|
el = el.Next()
|
2021-02-02 07:17:59 +00:00
|
|
|
sample2 := nodeToList(el.Value.(*CandidateNode))
|
2020-11-17 22:37:42 +00:00
|
|
|
|
|
|
|
el = el.Next()
|
2021-02-02 07:17:59 +00:00
|
|
|
sample3 := nodeToList(el.Value.(*CandidateNode))
|
2020-11-17 22:37:42 +00:00
|
|
|
|
2020-11-19 11:11:26 +00:00
|
|
|
err = printer.PrintResults(sample1)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = printer.PrintResults(sample2)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = printer.PrintResults(sample3)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-17 22:37:42 +00:00
|
|
|
|
|
|
|
writer.Flush()
|
|
|
|
test.AssertResult(t, multiDocSample, output.String())
|
2020-12-15 03:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrinterMultipleFilesInSequence(t *testing.T) {
|
|
|
|
var output bytes.Buffer
|
|
|
|
var writer = bufio.NewWriter(&output)
|
|
|
|
printer := NewPrinter(writer, false, true, false, 2, true)
|
2020-11-17 22:37:42 +00:00
|
|
|
|
2020-12-15 03:33:50 +00:00
|
|
|
inputs, err := readDocuments(strings.NewReader(multiDocSample), "sample.yml", 0)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
el := inputs.Front()
|
|
|
|
elNode := el.Value.(*CandidateNode)
|
|
|
|
elNode.Document = 0
|
|
|
|
elNode.FileIndex = 0
|
2021-02-02 07:17:59 +00:00
|
|
|
sample1 := nodeToList(elNode)
|
2020-12-15 03:33:50 +00:00
|
|
|
|
|
|
|
el = el.Next()
|
|
|
|
elNode = el.Value.(*CandidateNode)
|
|
|
|
elNode.Document = 0
|
|
|
|
elNode.FileIndex = 1
|
2021-02-02 07:17:59 +00:00
|
|
|
sample2 := nodeToList(elNode)
|
2020-12-15 03:33:50 +00:00
|
|
|
|
|
|
|
el = el.Next()
|
|
|
|
elNode = el.Value.(*CandidateNode)
|
|
|
|
elNode.Document = 0
|
|
|
|
elNode.FileIndex = 2
|
2021-02-02 07:17:59 +00:00
|
|
|
sample3 := nodeToList(elNode)
|
2020-12-15 03:33:50 +00:00
|
|
|
|
|
|
|
err = printer.PrintResults(sample1)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = printer.PrintResults(sample2)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = printer.PrintResults(sample3)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
writer.Flush()
|
|
|
|
test.AssertResult(t, multiDocSample, output.String())
|
2020-11-17 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrinterMultipleDocsInSinglePrint(t *testing.T) {
|
|
|
|
var output bytes.Buffer
|
|
|
|
var writer = bufio.NewWriter(&output)
|
|
|
|
printer := NewPrinter(writer, false, true, false, 2, true)
|
|
|
|
|
2020-11-20 11:57:32 +00:00
|
|
|
inputs, err := readDocuments(strings.NewReader(multiDocSample), "sample.yml", 0)
|
2020-11-17 22:37:42 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-11-19 11:11:26 +00:00
|
|
|
err = printer.PrintResults(inputs)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-17 22:37:42 +00:00
|
|
|
|
|
|
|
writer.Flush()
|
|
|
|
test.AssertResult(t, multiDocSample, output.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrinterMultipleDocsJson(t *testing.T) {
|
|
|
|
var output bytes.Buffer
|
|
|
|
var writer = bufio.NewWriter(&output)
|
2021-03-19 01:40:34 +00:00
|
|
|
// note printDocSeparators is true, it should still not print document separators
|
|
|
|
// when outputing JSON.
|
|
|
|
printer := NewPrinter(writer, true, true, false, 0, true)
|
2020-11-17 22:37:42 +00:00
|
|
|
|
2020-11-20 11:57:32 +00:00
|
|
|
inputs, err := readDocuments(strings.NewReader(multiDocSample), "sample.yml", 0)
|
2020-11-17 22:37:42 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-11-19 11:11:26 +00:00
|
|
|
err = printer.PrintResults(inputs)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-17 22:37:42 +00:00
|
|
|
|
|
|
|
expected := `{"a":"banana"}
|
|
|
|
{"a":"apple"}
|
|
|
|
{"a":"coconut"}
|
|
|
|
`
|
|
|
|
|
|
|
|
writer.Flush()
|
|
|
|
test.AssertResult(t, expected, output.String())
|
|
|
|
}
|