2022-02-01 04:34:17 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mikefarah/yq/v4/test"
|
|
|
|
)
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const samplePropertiesYaml = `# block comments don't come through
|
2022-02-01 04:34:17 +00:00
|
|
|
person: # neither do comments on maps
|
2022-06-25 02:22:03 +00:00
|
|
|
name: Mike Wazowski # comments on values appear
|
2022-02-01 04:34:17 +00:00
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food: [pizza] # comments on arrays do not
|
|
|
|
emptyArray: []
|
|
|
|
emptyMap: []
|
|
|
|
`
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const expectedPropertiesUnwrapped = `# comments on values appear
|
|
|
|
person.name = Mike Wazowski
|
2022-02-01 04:34:17 +00:00
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
`
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const expectedPropertiesWrapped = `# comments on values appear
|
|
|
|
person.name = "Mike Wazowski"
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
`
|
|
|
|
|
|
|
|
const expectedUpdatedProperties = `# comments on values appear
|
|
|
|
person.name = Mike Wazowski
|
2022-02-10 01:02:53 +00:00
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = dog
|
|
|
|
person.food.0 = pizza
|
|
|
|
`
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const expectedDecodedYaml = `person:
|
|
|
|
name: Mike Wazowski # comments on values appear
|
2022-02-10 01:02:53 +00:00
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food:
|
|
|
|
- pizza
|
|
|
|
`
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const expectedPropertiesNoComments = `person.name = Mike Wazowski
|
2022-02-01 04:34:17 +00:00
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
`
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
const expectedPropertiesWithEmptyMapsAndArrays = `# comments on values appear
|
|
|
|
person.name = Mike Wazowski
|
2022-02-01 04:34:17 +00:00
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
emptyArray =
|
|
|
|
emptyMap =
|
|
|
|
`
|
|
|
|
|
|
|
|
var propertyScenarios = []formatScenario{
|
|
|
|
{
|
|
|
|
description: "Encode properties",
|
|
|
|
subdescription: "Note that empty arrays and maps are not encoded by default.",
|
|
|
|
input: samplePropertiesYaml,
|
2022-06-25 02:22:03 +00:00
|
|
|
expected: expectedPropertiesUnwrapped,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode properties: scalar encapsulation",
|
|
|
|
subdescription: "Note that string values with blank characters in them are encapsulated with double quotes",
|
|
|
|
input: samplePropertiesYaml,
|
|
|
|
expected: expectedPropertiesWrapped,
|
|
|
|
scenarioType: "encode-wrapped",
|
2022-02-01 04:34:17 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode properties: no comments",
|
|
|
|
input: samplePropertiesYaml,
|
|
|
|
expected: expectedPropertiesNoComments,
|
|
|
|
expression: `... comments = ""`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode properties: include empty maps and arrays",
|
|
|
|
subdescription: "Use a yq expression to set the empty maps and sequences to your desired value.",
|
|
|
|
expression: `(.. | select( (tag == "!!map" or tag =="!!seq") and length == 0)) = ""`,
|
|
|
|
input: samplePropertiesYaml,
|
|
|
|
expected: expectedPropertiesWithEmptyMapsAndArrays,
|
|
|
|
},
|
2022-02-10 01:02:53 +00:00
|
|
|
{
|
|
|
|
description: "Decode properties",
|
2022-06-25 02:22:03 +00:00
|
|
|
input: expectedPropertiesUnwrapped,
|
2022-02-10 01:02:53 +00:00
|
|
|
expected: expectedDecodedYaml,
|
|
|
|
scenarioType: "decode",
|
|
|
|
},
|
2022-03-01 00:29:11 +00:00
|
|
|
{
|
|
|
|
description: "does not expand automatically",
|
|
|
|
skipDoc: true,
|
|
|
|
input: "mike = ${dontExpand} this",
|
|
|
|
expected: "mike: ${dontExpand} this\n",
|
|
|
|
scenarioType: "decode",
|
|
|
|
},
|
2022-02-10 01:02:53 +00:00
|
|
|
{
|
|
|
|
description: "Roundtrip",
|
2022-06-25 02:22:03 +00:00
|
|
|
input: expectedPropertiesUnwrapped,
|
2022-02-10 01:02:53 +00:00
|
|
|
expression: `.person.pets.0 = "dog"`,
|
|
|
|
expected: expectedUpdatedProperties,
|
|
|
|
scenarioType: "roundtrip",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Empty doc",
|
|
|
|
skipDoc: true,
|
|
|
|
input: "",
|
|
|
|
expected: "",
|
|
|
|
scenarioType: "decode",
|
|
|
|
},
|
2022-02-01 04:34:17 +00:00
|
|
|
}
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
func documentUnwrappedEncodePropertyScenario(w *bufio.Writer, s formatScenario) {
|
2022-02-01 04:34:17 +00:00
|
|
|
writeOrPanic(w, fmt.Sprintf("## %v\n", s.description))
|
|
|
|
|
|
|
|
if s.subdescription != "" {
|
|
|
|
writeOrPanic(w, s.subdescription)
|
|
|
|
writeOrPanic(w, "\n\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "Given a sample.yml file of:\n")
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```yaml\n%v\n```\n", s.input))
|
|
|
|
|
|
|
|
writeOrPanic(w, "then\n")
|
|
|
|
|
|
|
|
expression := s.expression
|
|
|
|
|
2022-02-10 01:02:53 +00:00
|
|
|
if expression != "" {
|
2022-02-01 04:34:17 +00:00
|
|
|
writeOrPanic(w, fmt.Sprintf("```bash\nyq -o=props '%v' sample.yml\n```\n", expression))
|
|
|
|
} else {
|
2022-02-10 01:02:53 +00:00
|
|
|
writeOrPanic(w, "```bash\nyq -o=props sample.yml\n```\n")
|
2022-02-01 04:34:17 +00:00
|
|
|
}
|
|
|
|
writeOrPanic(w, "will output\n")
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
writeOrPanic(w, fmt.Sprintf("```properties\n%v```\n\n", processFormatScenario(s, NewYamlDecoder(), NewPropertiesEncoder(true))))
|
|
|
|
}
|
|
|
|
|
|
|
|
func documentWrappedEncodePropertyScenario(w *bufio.Writer, s formatScenario) {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("## %v\n", s.description))
|
|
|
|
|
|
|
|
if s.subdescription != "" {
|
|
|
|
writeOrPanic(w, s.subdescription)
|
|
|
|
writeOrPanic(w, "\n\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "Given a sample.yml file of:\n")
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```yaml\n%v\n```\n", s.input))
|
|
|
|
|
|
|
|
writeOrPanic(w, "then\n")
|
|
|
|
|
|
|
|
expression := s.expression
|
|
|
|
|
|
|
|
if expression != "" {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```bash\nyq -o=props --unwrapScalar=false '%v' sample.yml\n```\n", expression))
|
|
|
|
} else {
|
|
|
|
writeOrPanic(w, "```bash\nyq -o=props --unwrapScalar=false sample.yml\n```\n")
|
|
|
|
}
|
|
|
|
writeOrPanic(w, "will output\n")
|
|
|
|
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```properties\n%v```\n\n", processFormatScenario(s, NewYamlDecoder(), NewPropertiesEncoder(false))))
|
2022-02-10 01:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func documentDecodePropertyScenario(w *bufio.Writer, s formatScenario) {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("## %v\n", s.description))
|
|
|
|
|
|
|
|
if s.subdescription != "" {
|
|
|
|
writeOrPanic(w, s.subdescription)
|
|
|
|
writeOrPanic(w, "\n\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "Given a sample.properties file of:\n")
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```properties\n%v\n```\n", s.input))
|
|
|
|
|
|
|
|
writeOrPanic(w, "then\n")
|
|
|
|
|
|
|
|
expression := s.expression
|
|
|
|
if expression != "" {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```bash\nyq -p=props '%v' sample.properties\n```\n", expression))
|
|
|
|
} else {
|
|
|
|
writeOrPanic(w, "```bash\nyq -p=props sample.properties\n```\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "will output\n")
|
|
|
|
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```yaml\n%v```\n\n", processFormatScenario(s, NewPropertiesDecoder(), NewYamlEncoder(s.indent, false, true, true))))
|
|
|
|
}
|
|
|
|
|
|
|
|
func documentRoundTripPropertyScenario(w *bufio.Writer, s formatScenario) {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("## %v\n", s.description))
|
|
|
|
|
|
|
|
if s.subdescription != "" {
|
|
|
|
writeOrPanic(w, s.subdescription)
|
|
|
|
writeOrPanic(w, "\n\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "Given a sample.properties file of:\n")
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```properties\n%v\n```\n", s.input))
|
|
|
|
|
|
|
|
writeOrPanic(w, "then\n")
|
|
|
|
|
|
|
|
expression := s.expression
|
|
|
|
if expression != "" {
|
|
|
|
writeOrPanic(w, fmt.Sprintf("```bash\nyq -p=props -o=props '%v' sample.properties\n```\n", expression))
|
|
|
|
} else {
|
|
|
|
writeOrPanic(w, "```bash\nyq -p=props -o=props sample.properties\n```\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOrPanic(w, "will output\n")
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
writeOrPanic(w, fmt.Sprintf("```properties\n%v```\n\n", processFormatScenario(s, NewPropertiesDecoder(), NewPropertiesEncoder(true))))
|
2022-02-10 01:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func documentPropertyScenario(t *testing.T, w *bufio.Writer, i interface{}) {
|
|
|
|
s := i.(formatScenario)
|
2022-03-01 00:29:11 +00:00
|
|
|
if s.skipDoc {
|
|
|
|
return
|
|
|
|
}
|
2022-06-25 02:22:03 +00:00
|
|
|
switch s.scenarioType {
|
|
|
|
case "":
|
|
|
|
documentUnwrappedEncodePropertyScenario(w, s)
|
|
|
|
case "decode":
|
2022-02-10 01:02:53 +00:00
|
|
|
documentDecodePropertyScenario(w, s)
|
2022-06-25 02:22:03 +00:00
|
|
|
case "encode-wrapped":
|
|
|
|
documentWrappedEncodePropertyScenario(w, s)
|
|
|
|
case "roundtrip":
|
2022-02-10 01:02:53 +00:00
|
|
|
documentRoundTripPropertyScenario(w, s)
|
|
|
|
|
2022-06-25 02:22:03 +00:00
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unhandled scenario type %q", s.scenarioType))
|
|
|
|
}
|
2022-02-01 04:34:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPropertyScenarios(t *testing.T) {
|
|
|
|
for _, s := range propertyScenarios {
|
2022-06-25 02:22:03 +00:00
|
|
|
switch s.scenarioType {
|
|
|
|
case "":
|
|
|
|
test.AssertResultWithContext(t, s.expected, processFormatScenario(s, NewYamlDecoder(), NewPropertiesEncoder(true)), s.description)
|
|
|
|
case "decode":
|
2022-02-10 01:02:53 +00:00
|
|
|
test.AssertResultWithContext(t, s.expected, processFormatScenario(s, NewPropertiesDecoder(), NewYamlEncoder(2, false, true, true)), s.description)
|
2022-06-25 02:22:03 +00:00
|
|
|
case "encode-wrapped":
|
|
|
|
test.AssertResultWithContext(t, s.expected, processFormatScenario(s, NewYamlDecoder(), NewPropertiesEncoder(false)), s.description)
|
|
|
|
case "roundtrip":
|
|
|
|
test.AssertResultWithContext(t, s.expected, processFormatScenario(s, NewPropertiesDecoder(), NewPropertiesEncoder(true)), s.description)
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unhandled scenario type %q", s.scenarioType))
|
2022-02-10 01:02:53 +00:00
|
|
|
}
|
2022-02-01 04:34:17 +00:00
|
|
|
}
|
|
|
|
genericScenarios := make([]interface{}, len(propertyScenarios))
|
|
|
|
for i, s := range propertyScenarios {
|
|
|
|
genericScenarios[i] = s
|
|
|
|
}
|
|
|
|
documentScenarios(t, "usage", "properties", genericScenarios, documentPropertyScenario)
|
|
|
|
}
|