2020-01-13 09:11:56 +00:00
|
|
|
package cmd
|
2017-09-22 19:58:12 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-10-24 20:00:43 +00:00
|
|
|
"os"
|
2019-01-03 13:11:47 +00:00
|
|
|
"runtime"
|
2017-09-22 19:58:12 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
"github.com/mikefarah/yq/v3/test"
|
2019-12-01 20:10:42 +00:00
|
|
|
"github.com/spf13/cobra"
|
2017-09-22 19:58:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func getRootCommand() *cobra.Command {
|
2020-01-13 09:11:56 +00:00
|
|
|
return New()
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.Contains(result.Output, "Usage:") {
|
|
|
|
t.Error("Expected usage message to be printed out, but the usage message was not found.")
|
|
|
|
}
|
2019-05-14 17:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootCmd_Help(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "--help")
|
2019-05-14 17:28:06 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2017-09-22 19:58:12 +00:00
|
|
|
|
2019-05-14 17:28:06 +00:00
|
|
|
if !strings.Contains(result.Output, "yq is a lightweight and portable command-line YAML processor. It aims to be the jq or sed of yaml files.") {
|
|
|
|
t.Error("Expected usage message to be printed out, but the usage message was not found.")
|
|
|
|
}
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootCmd_VerboseLong(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "--verbose")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !verbose {
|
|
|
|
t.Error("Expected verbose to be true")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootCmd_VerboseShort(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "-v")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !verbose {
|
|
|
|
t.Error("Expected verbose to be true")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 04:45:31 +00:00
|
|
|
func TestRootCmd_VersionShort(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "-V")
|
2017-09-23 04:45:31 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2018-04-09 05:43:22 +00:00
|
|
|
if !strings.Contains(result.Output, "yq version") {
|
2017-09-23 04:45:31 +00:00
|
|
|
t.Error("expected version message to be printed out, but the message was not found.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootCmd_VersionLong(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "--version")
|
2017-09-23 04:45:31 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2018-04-09 05:43:22 +00:00
|
|
|
if !strings.Contains(result.Output, "yq version") {
|
2017-09-23 04:45:31 +00:00
|
|
|
t.Error("expected version message to be printed out, but the message was not found.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func TestReadCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/sample.yaml b.c")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "2", result.Output)
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 04:35:00 +00:00
|
|
|
func TestCompareCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "compare ../examples/data1.yaml ../examples/data3.yaml")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `-a: simple # just the best
|
|
|
|
-b: [1, 2]
|
|
|
|
+a: "simple" # just the best
|
|
|
|
+b: [1, 3]
|
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestComparePrettyCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "compare -P ../examples/data1.yaml ../examples/data3.yaml")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := ` a: simple # just the best
|
|
|
|
b:
|
|
|
|
- 1
|
|
|
|
-- 2
|
|
|
|
+- 3
|
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestComparePathsCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "compare -P -ppv ../examples/data1.yaml ../examples/data3.yaml **")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := ` a: simple # just the best
|
|
|
|
b.[0]: 1
|
|
|
|
-b.[1]: 2
|
|
|
|
+b.[1]: 3
|
|
|
|
c.test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-30 05:34:43 +00:00
|
|
|
func TestValidateCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "validate ../examples/sample.yaml b.c")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "", result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-11 07:52:15 +00:00
|
|
|
func TestReadWithAdvancedFilterCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-15 02:56:29 +00:00
|
|
|
result := test.RunCmd(cmd, "read -v ../examples/sample.yaml b.e(name==sam).value")
|
2020-01-11 07:52:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "4", result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-11 08:38:16 +00:00
|
|
|
func TestReadWithAdvancedFilterMapCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-15 02:56:29 +00:00
|
|
|
result := test.RunCmd(cmd, "read -v ../examples/sample.yaml b.e[name==fr*]")
|
2020-01-11 08:38:16 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `name: fred
|
|
|
|
value: 3
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/sample.yaml b.c")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "b.c: 2\n", result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-29 22:21:21 +00:00
|
|
|
func TestReadArrayCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/sample.yaml b.e.1.name")
|
2019-12-29 22:21:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "b.e.1.name: sam\n", result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-30 03:51:07 +00:00
|
|
|
func TestReadDeepSplatCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/sample.yaml b.**")
|
2019-12-30 03:51:07 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b.c: 2
|
|
|
|
b.d.[0]: 3
|
|
|
|
b.d.[1]: 4
|
|
|
|
b.d.[2]: 5
|
|
|
|
b.e.[0].name: fred
|
|
|
|
b.e.[0].value: 3
|
|
|
|
b.e.[1].name: sam
|
|
|
|
b.e.[1].value: 4
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-31 02:21:39 +00:00
|
|
|
func TestReadDeepSplatWithSuffixCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/sample.yaml b.**.name")
|
2019-12-31 02:21:39 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b.e.[0].name: fred
|
|
|
|
b.e.[1].name: sam
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadWithKeyCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p p ../examples/sample.yaml b.c")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "b.c", result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-16 09:38:55 +00:00
|
|
|
func TestReadAnchorsCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/simple-anchor.yaml foobar.a")
|
2019-12-16 09:38:55 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "1", result.Output)
|
2019-12-16 09:38:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadAnchorsWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/simple-anchor.yaml foobar.a")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "foobar.a: 1\n", result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-22 04:15:15 +00:00
|
|
|
func TestReadMergeAnchorsOriginalCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/merge-anchor.yaml foobar.a")
|
2019-12-22 04:15:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "original", result.Output)
|
2019-12-22 04:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadMergeAnchorsOverrideCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/merge-anchor.yaml foobar.thing")
|
2019-12-22 04:15:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "ice", result.Output)
|
2019-12-22 04:15:15 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 01:11:04 +00:00
|
|
|
func TestReadMergeAnchorsPrefixMatchCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "r -p pv ../examples/merge-anchor.yaml foobar.th*")
|
2019-12-25 01:11:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-27 08:06:08 +00:00
|
|
|
expectedOutput := `foobar.thirty: well beyond
|
|
|
|
foobar.thing: ice
|
|
|
|
foobar.thirsty: yep
|
|
|
|
`
|
2019-12-25 01:11:04 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-22 04:15:15 +00:00
|
|
|
func TestReadMergeAnchorsListOriginalCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/merge-anchor.yaml foobarList.a")
|
2019-12-22 04:15:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "original", result.Output)
|
2019-12-22 04:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadMergeAnchorsListOverrideInListCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/merge-anchor.yaml foobarList.thing")
|
2019-12-22 04:15:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "coconut", result.Output)
|
2019-12-22 04:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadMergeAnchorsListOverrideCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/merge-anchor.yaml foobarList.c")
|
2019-12-22 04:15:15 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "newbar", result.Output)
|
2019-12-22 04:15:15 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 12:04:31 +00:00
|
|
|
func TestReadInvalidDocumentIndexCmd(t *testing.T) {
|
2018-07-08 11:57:56 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -df ../examples/sample.yaml b.c")
|
2018-07-08 11:57:56 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
|
|
|
expectedOutput := `Document index f is not a integer or *: strconv.ParseInt: parsing "f": invalid syntax`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-07-08 11:57:56 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 12:04:31 +00:00
|
|
|
func TestReadBadDocumentIndexCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -d1 ../examples/sample.yaml b.c")
|
2018-07-08 12:04:31 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `Could not process document index 1 as there are only 1 document(s)`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-07-08 12:04:31 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 11:47:01 +00:00
|
|
|
func TestReadOrderCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/order.yaml")
|
2018-07-08 11:47:01 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t,
|
2018-07-08 11:47:01 +00:00
|
|
|
`version: 3
|
|
|
|
application: MyApp
|
|
|
|
`,
|
|
|
|
result.Output)
|
|
|
|
}
|
|
|
|
|
2018-06-14 22:38:30 +00:00
|
|
|
func TestReadMultiCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -d 1 ../examples/multiple_docs.yaml another.document")
|
2018-06-14 22:38:30 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "here", result.Output)
|
2018-06-14 22:38:30 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadMultiWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p vp -d 1 ../examples/multiple_docs.yaml another.document")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t, "another.document: here\n", result.Output)
|
|
|
|
}
|
|
|
|
|
2018-07-08 11:47:01 +00:00
|
|
|
func TestReadMultiAllCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -d* ../examples/multiple_docs.yaml commonKey")
|
2018-07-08 11:47:01 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t,
|
2019-12-23 23:35:57 +00:00
|
|
|
`first document
|
|
|
|
second document
|
|
|
|
third document`, result.Output)
|
2018-07-08 11:47:01 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadMultiAllWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv -d* ../examples/multiple_docs.yaml commonKey")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
test.AssertResult(t,
|
|
|
|
`commonKey: first document
|
|
|
|
commonKey: second document
|
|
|
|
commonKey: third document
|
|
|
|
`, result.Output)
|
|
|
|
}
|
|
|
|
|
2017-09-23 17:53:04 +00:00
|
|
|
func TestReadCmd_ArrayYaml(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [0].gather_facts")
|
2017-09-23 17:53:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
test.AssertResult(t, "false", result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 22:15:16 +00:00
|
|
|
func TestReadEmptyContentCmd(t *testing.T) {
|
|
|
|
content := ``
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read %s", filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := ``
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-02-02 23:13:48 +00:00
|
|
|
func TestReadEmptyContentWithDefaultValueCmd(t *testing.T) {
|
|
|
|
content := ``
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read --defaultValue things %s", filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `things`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-31 05:35:01 +00:00
|
|
|
func TestReadPrettyPrintCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "read -P ../examples/sample.json")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `a: Easy! as one two three
|
|
|
|
b:
|
|
|
|
c: 2
|
|
|
|
d:
|
|
|
|
- 3
|
|
|
|
- 4
|
|
|
|
e:
|
|
|
|
- name: fred
|
|
|
|
value: 3
|
|
|
|
- name: sam
|
|
|
|
value: 4
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-02-03 05:52:12 +00:00
|
|
|
func TestReadPrettyPrintWithIndentCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "read -P -I4 ../examples/sample.json")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `a: Easy! as one two three
|
|
|
|
b:
|
|
|
|
c: 2
|
|
|
|
d:
|
|
|
|
- 3
|
|
|
|
- 4
|
|
|
|
e:
|
|
|
|
- name: fred
|
|
|
|
value: 3
|
|
|
|
- name: sam
|
|
|
|
value: 4
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2017-09-23 17:53:04 +00:00
|
|
|
func TestReadCmd_ArrayYaml_NoPath(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml")
|
2017-09-23 17:53:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `- become: true
|
|
|
|
gather_facts: false
|
|
|
|
hosts: lalaland
|
2019-12-09 02:44:53 +00:00
|
|
|
name: "Apply smth"
|
2017-09-23 17:53:04 +00:00
|
|
|
roles:
|
|
|
|
- lala
|
|
|
|
- land
|
|
|
|
serial: 1
|
2019-12-15 07:24:23 +00:00
|
|
|
- become: false
|
|
|
|
gather_facts: true
|
2017-09-23 17:53:04 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadCmd_ArrayYaml_OneElement(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [0]")
|
2017-09-23 17:53:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `become: true
|
|
|
|
gather_facts: false
|
|
|
|
hosts: lalaland
|
2019-12-09 02:44:53 +00:00
|
|
|
name: "Apply smth"
|
2017-09-23 17:53:04 +00:00
|
|
|
roles:
|
|
|
|
- lala
|
|
|
|
- land
|
|
|
|
serial: 1
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadCmd_ArrayYaml_SplatCmd(t *testing.T) {
|
2017-09-23 17:53:04 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [*]")
|
2017-09-23 17:53:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
expectedOutput := `become: true
|
|
|
|
gather_facts: false
|
|
|
|
hosts: lalaland
|
|
|
|
name: "Apply smth"
|
|
|
|
roles:
|
|
|
|
- lala
|
|
|
|
- land
|
|
|
|
serial: 1
|
|
|
|
become: false
|
|
|
|
gather_facts: true
|
2017-09-23 17:53:04 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadCmd_ArrayYaml_SplatWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p pv ../examples/array.yaml [*]")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `'[0]':
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
hosts: lalaland
|
|
|
|
name: "Apply smth"
|
|
|
|
roles:
|
|
|
|
- lala
|
|
|
|
- land
|
|
|
|
serial: 1
|
|
|
|
'[1]':
|
|
|
|
become: false
|
|
|
|
gather_facts: true
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadCmd_ArrayYaml_SplatWithKeyCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -p p ../examples/array.yaml [*]")
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `[0]
|
|
|
|
[1]`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2017-09-23 17:53:04 +00:00
|
|
|
func TestReadCmd_ArrayYaml_SplatKey(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [*].gather_facts")
|
2017-09-23 17:53:04 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
expectedOutput := `false
|
|
|
|
true`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadCmd_ArrayYaml_ErrorBadPath(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [x].gather_facts")
|
2020-01-30 04:11:47 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
2019-12-25 01:11:04 +00:00
|
|
|
}
|
2020-01-30 04:11:47 +00:00
|
|
|
expectedOutput := ``
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 17:53:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 07:38:40 +00:00
|
|
|
func TestReadCmd_ArrayYaml_Splat_ErrorBadPath(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read ../examples/array.yaml [*].roles[x]")
|
2020-01-30 04:11:47 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
2019-12-31 02:21:39 +00:00
|
|
|
}
|
2020-01-30 04:11:47 +00:00
|
|
|
expectedOutput := ``
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-12-15 07:38:40 +00:00
|
|
|
}
|
2017-09-23 17:53:04 +00:00
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func TestReadCmd_Error(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "read")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide filename`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadCmd_ErrorEmptyFilename(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "read ")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide filename`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadCmd_ErrorUnreadableFile(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "read fake-unknown")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to unknown file")
|
|
|
|
}
|
2019-01-03 13:11:47 +00:00
|
|
|
var expectedOutput string
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
expectedOutput = `open fake-unknown: The system cannot find the file specified.`
|
|
|
|
} else {
|
|
|
|
expectedOutput = `open fake-unknown: no such file or directory`
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 07:38:40 +00:00
|
|
|
func TestReadCmd_ErrorBadPath(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
d:
|
|
|
|
e:
|
|
|
|
- 3
|
|
|
|
- 4
|
|
|
|
f:
|
|
|
|
- 1
|
|
|
|
- 2
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-12-09 02:44:53 +00:00
|
|
|
|
2019-12-15 07:38:40 +00:00
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read %s b.d.*.[x]", filename))
|
2020-01-30 04:11:47 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := ``
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-12-15 07:38:40 +00:00
|
|
|
}
|
2017-09-22 19:58:12 +00:00
|
|
|
|
|
|
|
func TestReadCmd_Verbose(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "read -v ../examples/sample.yaml b.c")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-10 22:07:39 +00:00
|
|
|
test.AssertResult(t, "2", result.Output)
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 05:31:03 +00:00
|
|
|
func TestReadToJsonCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "read -j ../examples/sample.yaml b")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `{"c":2,"d":[3,4,5],"e":[{"name":"fred","value":3},{"name":"sam","value":4}]}
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadToJsonPrettyCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "read -j -P ../examples/sample.yaml b")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `{
|
2020-02-03 05:52:12 +00:00
|
|
|
"c": 2,
|
|
|
|
"d": [
|
|
|
|
3,
|
|
|
|
4,
|
|
|
|
5
|
|
|
|
],
|
|
|
|
"e": [
|
|
|
|
{
|
|
|
|
"name": "fred",
|
|
|
|
"value": 3
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "sam",
|
|
|
|
"value": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadToJsonPrettyIndentCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "read -j -I4 -P ../examples/sample.yaml b")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `{
|
|
|
|
"c": 2,
|
|
|
|
"d": [
|
|
|
|
3,
|
|
|
|
4,
|
|
|
|
5
|
|
|
|
],
|
|
|
|
"e": [
|
|
|
|
{
|
|
|
|
"name": "fred",
|
|
|
|
"value": 3
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "sam",
|
|
|
|
"value": 4
|
|
|
|
}
|
|
|
|
]
|
2020-02-03 05:31:03 +00:00
|
|
|
}
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
2017-09-22 19:58:12 +00:00
|
|
|
|
2020-01-30 05:32:28 +00:00
|
|
|
func TestReadBadDataCmd(t *testing.T) {
|
|
|
|
content := `[!Whatever]`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read %s", filename))
|
|
|
|
if result.Error == nil {
|
2020-01-30 05:34:43 +00:00
|
|
|
t.Error("Expected command to fail")
|
|
|
|
}
|
|
|
|
expectedOutput := `yaml: line 1: did not find expected ',' or ']'`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidateBadDataCmd(t *testing.T) {
|
|
|
|
content := `[!Whatever]`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("validate %s", filename))
|
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail")
|
2020-01-30 05:32:28 +00:00
|
|
|
}
|
|
|
|
expectedOutput := `yaml: line 1: did not find expected ',' or ']'`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadSplatPrefixCmd(t *testing.T) {
|
2019-12-15 07:24:23 +00:00
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
there:
|
|
|
|
c: more things
|
|
|
|
d: more something else
|
|
|
|
there2:
|
|
|
|
c: more things also
|
|
|
|
d: more something else also
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read %s b.there*.c", filename))
|
2019-12-15 07:24:23 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:35:57 +00:00
|
|
|
expectedOutput := `more things
|
|
|
|
more things also`
|
2019-12-15 07:24:23 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:46:21 +00:00
|
|
|
func TestReadSplatPrefixWithKeyAndValueCmd(t *testing.T) {
|
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
there:
|
|
|
|
c: more things
|
|
|
|
d: more something else
|
|
|
|
there2:
|
|
|
|
c: more things also
|
|
|
|
d: more something else also
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2020-01-10 22:07:39 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read -p pv %s b.there*.c", filename))
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `b.there.c: more things
|
|
|
|
b.there2.c: more things also
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadSplatPrefixWithKeyCmd(t *testing.T) {
|
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
there:
|
|
|
|
c: more things
|
|
|
|
d: more something else
|
|
|
|
there2:
|
|
|
|
c: more things also
|
|
|
|
d: more something else also
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2020-01-10 22:07:39 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("read -p p %s b.there*.c", filename))
|
2019-12-23 23:46:21 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `b.there.c
|
|
|
|
b.there2.c`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2018-11-18 15:35:28 +00:00
|
|
|
func TestPrefixCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `d:
|
|
|
|
b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 22:47:17 +00:00
|
|
|
func TestPrefixCmdArray(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-19 22:47:17 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s [+].d.[+]", filename))
|
2018-11-19 22:47:17 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `- d:
|
|
|
|
- b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-11-19 22:47:17 +00:00
|
|
|
}
|
|
|
|
|
2018-11-18 15:35:28 +00:00
|
|
|
func TestPrefixCmd_MultiLayer(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s d.e.f", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `d:
|
|
|
|
e:
|
|
|
|
f:
|
|
|
|
b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixMultiCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
apples: great
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s -d 1 d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
d:
|
|
|
|
apples: great
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
func TestPrefixInvalidDocumentIndexCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s -df d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
|
|
|
expectedOutput := `Document index f is not a integer or *: strconv.ParseInt: parsing "f": invalid syntax`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixBadDocumentIndexCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s -d 1 d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
2019-01-20 22:33:14 +00:00
|
|
|
expectedOutput := `asked to process document index 1 but there are only 1 document(s)`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
func TestPrefixMultiAllCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
apples: great
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s -d * d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `d:
|
|
|
|
b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
d:
|
|
|
|
apples: great`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, strings.Trim(result.Output, "\n "))
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixCmd_Error(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "prefix")
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide <filename> <prefixed_path>`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixCmd_ErrorUnreadableFile(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "prefix fake-unknown a.b")
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to unknown file")
|
|
|
|
}
|
2019-01-03 13:11:47 +00:00
|
|
|
var expectedOutput string
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
expectedOutput = `open fake-unknown: The system cannot find the file specified.`
|
|
|
|
} else {
|
|
|
|
expectedOutput = `open fake-unknown: no such file or directory`
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixCmd_Verbose(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix %s x", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `x:
|
|
|
|
b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixCmd_Inplace(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("prefix -i %s d", filename))
|
2018-11-18 15:35:28 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
gotOutput := test.ReadTempYamlFile(filename)
|
2018-11-18 15:35:28 +00:00
|
|
|
expectedOutput := `d:
|
|
|
|
b:
|
|
|
|
c: 3`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, strings.Trim(gotOutput, "\n "))
|
2018-11-18 15:35:28 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func TestNewCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "new b.c 3")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 21:12:30 +00:00
|
|
|
func TestNewArrayCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, "new b[0] 3")
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
- 3
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func TestNewCmd_Error(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "new b.c")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide <path_to_update> <value>`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-22 19:58:12 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b.c 7", filename))
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 7
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 05:17:01 +00:00
|
|
|
func TestWriteCmdScript(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
2020-01-13 09:11:56 +00:00
|
|
|
updateScript := `- command: update
|
2019-12-23 23:35:57 +00:00
|
|
|
path: b.c
|
|
|
|
value: 7`
|
|
|
|
scriptFilename := test.WriteTempYamlFile(updateScript)
|
|
|
|
defer test.RemoveTempYamlFile(scriptFilename)
|
|
|
|
|
2019-12-16 05:17:01 +00:00
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write --script %s %s", scriptFilename, filename))
|
2019-12-16 05:17:01 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-12-23 23:35:57 +00:00
|
|
|
expectedOutput := `b:
|
|
|
|
c: 7
|
|
|
|
`
|
2019-12-16 05:17:01 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-10 22:07:39 +00:00
|
|
|
func TestWriteCmdEmptyScript(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
updateScript := ``
|
|
|
|
scriptFilename := test.WriteTempYamlFile(updateScript)
|
|
|
|
defer test.RemoveTempYamlFile(scriptFilename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write --script %s %s", scriptFilename, filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2018-06-13 04:10:00 +00:00
|
|
|
func TestWriteMultiCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
apples: great
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-13 04:10:00 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s -d 1 apples ok", filename))
|
2018-06-13 04:10:00 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
apples: ok
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-13 04:10:00 +00:00
|
|
|
}
|
2018-07-08 12:04:31 +00:00
|
|
|
func TestWriteInvalidDocumentIndexCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-13 04:10:00 +00:00
|
|
|
|
2018-07-08 12:04:31 +00:00
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s -df apples ok", filename))
|
2018-07-08 12:04:31 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
|
|
|
expectedOutput := `Document index f is not a integer or *: strconv.ParseInt: parsing "f": invalid syntax`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-07-08 12:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteBadDocumentIndexCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-07-08 12:04:31 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s -d 1 apples ok", filename))
|
2018-07-08 12:04:31 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to invalid path")
|
|
|
|
}
|
2019-01-20 22:33:14 +00:00
|
|
|
expectedOutput := `asked to process document index 1 but there are only 1 document(s)`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2018-07-08 12:04:31 +00:00
|
|
|
}
|
2018-06-20 01:45:51 +00:00
|
|
|
func TestWriteMultiAllCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
apples: great
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s -d * apples ok", filename))
|
2018-06-20 01:45:51 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
apples: ok
|
|
|
|
---
|
|
|
|
apples: ok`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, strings.Trim(result.Output, "\n "))
|
2018-06-20 01:45:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-23 13:36:17 +00:00
|
|
|
func TestWriteCmd_EmptyArray(t *testing.T) {
|
|
|
|
content := `b: 3`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-23 13:36:17 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s a []", filename))
|
2017-09-23 13:36:17 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b: 3
|
|
|
|
a: []
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 13:36:17 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func TestWriteCmd_Error(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "write")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide <filename> <path_to_update> <value>`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteCmd_ErrorUnreadableFile(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, "write fake-unknown a.b 3")
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to unknown file")
|
|
|
|
}
|
2019-01-03 13:11:47 +00:00
|
|
|
var expectedOutput string
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
expectedOutput = `open fake-unknown: The system cannot find the file specified.`
|
|
|
|
} else {
|
|
|
|
expectedOutput = `open fake-unknown: no such file or directory`
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteCmd_Inplace(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-22 19:58:12 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write -i %s b.c 7", filename))
|
2017-09-22 19:58:12 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
gotOutput := test.ReadTempYamlFile(filename)
|
2017-09-22 19:58:12 +00:00
|
|
|
expectedOutput := `b:
|
|
|
|
c: 7`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, strings.Trim(gotOutput, "\n "))
|
2017-09-22 19:58:12 +00:00
|
|
|
}
|
2017-09-23 03:29:37 +00:00
|
|
|
|
2017-09-24 00:21:16 +00:00
|
|
|
func TestWriteCmd_Append(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
- foo
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-24 00:21:16 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b[+] 7", filename))
|
2017-09-24 00:21:16 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
- foo
|
|
|
|
- 7
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-24 00:21:16 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 05:40:17 +00:00
|
|
|
func TestWriteCmd_AppendInline(t *testing.T) {
|
|
|
|
content := `b: [foo]`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b[+] 7", filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b: [foo, 7]
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteCmd_AppendInlinePretty(t *testing.T) {
|
|
|
|
content := `b: [foo]`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s -P b[+] 7", filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
- foo
|
|
|
|
- 7
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2017-09-25 13:31:06 +00:00
|
|
|
func TestWriteCmd_AppendEmptyArray(t *testing.T) {
|
|
|
|
content := `a: 2
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-25 13:31:06 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b[+] v", filename))
|
2017-09-25 13:31:06 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `a: 2
|
|
|
|
b:
|
|
|
|
- v
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-25 13:31:06 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 22:49:50 +00:00
|
|
|
func TestWriteCmd_SplatArray(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
- c: thing
|
|
|
|
- c: another thing
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-04-30 22:49:50 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b[*].c new", filename))
|
2019-04-30 22:49:50 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
- c: new
|
|
|
|
- c: new
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-04-30 22:49:50 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 23:13:45 +00:00
|
|
|
func TestWriteCmd_SplatMap(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: thing
|
|
|
|
d: another thing
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-05-12 23:13:45 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b.* new", filename))
|
2019-05-12 23:13:45 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: new
|
|
|
|
d: new
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-05-12 23:13:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteCmd_SplatMapEmpty(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: thing
|
|
|
|
d: another thing
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-05-12 23:13:45 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("write %s b.c.* new", filename))
|
2019-05-12 23:13:45 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
2020-01-05 03:22:18 +00:00
|
|
|
c: thing
|
2019-05-12 23:13:45 +00:00
|
|
|
d: another thing
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-05-12 23:13:45 +00:00
|
|
|
}
|
|
|
|
|
2019-12-27 21:51:54 +00:00
|
|
|
func TestDeleteYamlCmd(t *testing.T) {
|
2018-06-14 23:43:20 +00:00
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-14 23:43:20 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s b.c", filename))
|
2018-06-14 23:43:20 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `a: 2
|
|
|
|
b:
|
|
|
|
d: something else
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-14 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 23:48:05 +00:00
|
|
|
func TestDeleteSplatYaml(t *testing.T) {
|
2019-12-15 07:38:40 +00:00
|
|
|
content := `a: other
|
|
|
|
b: [3, 4]
|
|
|
|
c:
|
|
|
|
toast: leave
|
|
|
|
test: 1
|
|
|
|
tell: 1
|
|
|
|
taco: cool
|
2019-05-12 23:48:05 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-05-12 23:48:05 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-12-23 23:35:57 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s c.te*", filename))
|
2019-05-12 23:48:05 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
2019-12-15 07:38:40 +00:00
|
|
|
expectedOutput := `a: other
|
|
|
|
b: [3, 4]
|
|
|
|
c:
|
|
|
|
toast: leave
|
|
|
|
taco: cool
|
2019-05-12 23:48:05 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-05-12 23:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 01:20:41 +00:00
|
|
|
func TestDeleteSplatArrayYaml(t *testing.T) {
|
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
2019-05-14 17:28:06 +00:00
|
|
|
- thing: item1
|
2019-05-14 01:20:41 +00:00
|
|
|
name: fred
|
2019-05-14 17:28:06 +00:00
|
|
|
- thing: item2
|
2019-05-14 01:20:41 +00:00
|
|
|
name: sam
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-05-14 01:20:41 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2020-01-06 03:22:24 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s b.hi[*].thing", filename))
|
2019-05-14 01:20:41 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
- name: fred
|
|
|
|
- name: sam
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-05-14 01:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 23:48:05 +00:00
|
|
|
func TestDeleteSplatPrefixYaml(t *testing.T) {
|
|
|
|
content := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
there:
|
|
|
|
c: more things
|
|
|
|
d: more something else
|
|
|
|
there2:
|
|
|
|
c: more things also
|
|
|
|
d: more something else also
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2019-05-12 23:48:05 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2020-01-06 03:22:24 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s b.there*.c", filename))
|
2019-05-12 23:48:05 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `a: 2
|
|
|
|
b:
|
|
|
|
hi:
|
|
|
|
c: things
|
|
|
|
d: something else
|
|
|
|
there:
|
|
|
|
d: more something else
|
|
|
|
there2:
|
|
|
|
d: more something else also
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-05-12 23:48:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 03:55:58 +00:00
|
|
|
func TestDeleteYamlArrayCmd(t *testing.T) {
|
2018-06-14 23:43:20 +00:00
|
|
|
content := `- 1
|
|
|
|
- 2
|
2018-10-24 20:00:43 +00:00
|
|
|
- 3
|
2018-06-14 23:43:20 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-14 23:43:20 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s [1]", filename))
|
2018-06-14 23:43:20 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `- 1
|
|
|
|
- 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-14 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 03:55:58 +00:00
|
|
|
func TestDeleteYamlArrayExpressionCmd(t *testing.T) {
|
|
|
|
content := `- name: fred
|
|
|
|
- name: cat
|
|
|
|
- name: thing
|
|
|
|
`
|
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
|
|
|
|
|
|
|
cmd := getRootCommand()
|
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s (name==cat)", filename))
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `- name: fred
|
|
|
|
- name: thing
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2018-06-14 23:43:20 +00:00
|
|
|
func TestDeleteYamlMulti(t *testing.T) {
|
|
|
|
content := `apples: great
|
|
|
|
---
|
|
|
|
- 1
|
|
|
|
- 2
|
|
|
|
- 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-14 23:43:20 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete -d 1 %s [1]", filename))
|
2018-06-14 23:43:20 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedOutput := `apples: great
|
|
|
|
---
|
|
|
|
- 1
|
|
|
|
- 3
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-14 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
2018-06-20 01:45:51 +00:00
|
|
|
func TestDeleteYamlMultiAllCmd(t *testing.T) {
|
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
apples: great
|
|
|
|
---
|
|
|
|
apples: great
|
|
|
|
something: else
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("delete %s -d * apples", filename))
|
2018-06-20 01:45:51 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `b:
|
|
|
|
c: 3
|
|
|
|
---
|
|
|
|
something: else`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, strings.Trim(result.Output, "\n "))
|
2018-06-20 01:45:51 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 04:14:14 +00:00
|
|
|
func TestMergeCmd(t *testing.T) {
|
2017-09-23 03:29:37 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge ../examples/data1.yaml ../examples/data2.yaml")
|
2017-09-23 03:29:37 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
2020-01-05 04:14:14 +00:00
|
|
|
b: [1, 2]
|
2017-09-23 03:29:37 +00:00
|
|
|
c:
|
|
|
|
test: 1
|
2020-01-05 04:14:14 +00:00
|
|
|
toast: leave
|
|
|
|
tell: 1
|
|
|
|
taco: cool
|
2017-09-23 03:29:37 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2017-09-23 03:29:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 04:14:14 +00:00
|
|
|
func TestMergeNoAutoCreateCmd(t *testing.T) {
|
2018-06-20 01:45:51 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge -c=false ../examples/data1.yaml ../examples/data2.yaml")
|
2020-01-05 04:14:14 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
2020-01-05 04:14:14 +00:00
|
|
|
b: [1, 2]
|
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMergeOverwriteCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge -c=false --overwrite ../examples/data1.yaml ../examples/data2.yaml")
|
2018-06-20 01:45:51 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-05 21:12:30 +00:00
|
|
|
expectedOutput := `a: other # better than the original
|
2020-01-05 04:14:14 +00:00
|
|
|
b: [3, 4]
|
2018-07-07 05:26:56 +00:00
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-07-07 05:26:56 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 04:28:24 +00:00
|
|
|
func TestMergeAppendCmd(t *testing.T) {
|
2018-07-07 05:26:56 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge --autocreate=false --append ../examples/data1.yaml ../examples/data2.yaml")
|
2018-07-07 05:26:56 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-05 21:12:30 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
2020-01-05 04:28:24 +00:00
|
|
|
b: [1, 2, 3, 4]
|
2018-06-20 01:45:51 +00:00
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-20 01:45:51 +00:00
|
|
|
}
|
2020-01-06 03:27:00 +00:00
|
|
|
|
|
|
|
func TestMergeOverwriteAndAppendCmd(t *testing.T) {
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge --autocreate=false --append --overwrite ../examples/data1.yaml ../examples/data2.yaml")
|
2020-01-06 03:27:00 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `a: other # better than the original
|
|
|
|
b: [1, 2, 3, 4]
|
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
|
|
|
}
|
|
|
|
|
2020-01-05 04:28:24 +00:00
|
|
|
func TestMergeArraysCmd(t *testing.T) {
|
2018-07-07 05:26:56 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge --append ../examples/sample_array.yaml ../examples/sample_array_2.yaml")
|
2018-07-07 05:26:56 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-05 04:28:24 +00:00
|
|
|
expectedOutput := `[1, 2, 3, 4, 5]
|
2018-07-07 05:26:56 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-07-07 05:26:56 +00:00
|
|
|
}
|
2018-06-20 01:45:51 +00:00
|
|
|
|
2020-01-05 21:12:30 +00:00
|
|
|
func TestMergeCmd_Multi(t *testing.T) {
|
2018-06-15 06:48:36 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge -d1 ../examples/multiple_docs_small.yaml ../examples/data1.yaml")
|
2018-06-15 06:48:36 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
|
|
|
expectedOutput := `a: Easy! as one two three
|
|
|
|
---
|
|
|
|
another:
|
|
|
|
document: here
|
2020-01-05 21:12:30 +00:00
|
|
|
a: simple # just the best
|
2018-07-07 05:26:56 +00:00
|
|
|
b:
|
2020-01-05 21:12:30 +00:00
|
|
|
- 1
|
|
|
|
- 2
|
2018-06-15 06:48:36 +00:00
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
---
|
|
|
|
- 1
|
2020-01-05 21:12:30 +00:00
|
|
|
- 2
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-15 06:48:36 +00:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeYamlMultiAllCmd(t *testing.T) {
|
2018-06-20 01:45:51 +00:00
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
apples: green
|
|
|
|
---
|
|
|
|
something: else`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
mergeContent := `apples: red
|
|
|
|
something: good`
|
2019-11-23 03:52:29 +00:00
|
|
|
mergeFilename := test.WriteTempYamlFile(mergeContent)
|
|
|
|
defer test.RemoveTempYamlFile(mergeFilename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("merge -d* %s %s", filename, mergeFilename))
|
2018-06-20 01:45:51 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `b:
|
2018-06-20 01:45:51 +00:00
|
|
|
c: 3
|
2020-01-06 03:22:24 +00:00
|
|
|
apples: green
|
2018-06-20 01:45:51 +00:00
|
|
|
something: good
|
|
|
|
---
|
2020-01-06 03:22:24 +00:00
|
|
|
something: else
|
2018-06-20 01:45:51 +00:00
|
|
|
apples: red
|
2020-01-06 03:22:24 +00:00
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-20 01:45:51 +00:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeYamlMultiAllOverwriteCmd(t *testing.T) {
|
2018-06-20 01:45:51 +00:00
|
|
|
content := `b:
|
|
|
|
c: 3
|
|
|
|
apples: green
|
|
|
|
---
|
|
|
|
something: else`
|
2019-11-23 03:52:29 +00:00
|
|
|
filename := test.WriteTempYamlFile(content)
|
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
mergeContent := `apples: red
|
|
|
|
something: good`
|
2019-11-23 03:52:29 +00:00
|
|
|
mergeFilename := test.WriteTempYamlFile(mergeContent)
|
|
|
|
defer test.RemoveTempYamlFile(mergeFilename)
|
2018-06-20 01:45:51 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2019-11-23 03:52:29 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("merge --overwrite -d* %s %s", filename, mergeFilename))
|
2018-06-20 01:45:51 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `b:
|
2018-06-20 01:45:51 +00:00
|
|
|
c: 3
|
2020-01-06 03:22:24 +00:00
|
|
|
apples: red
|
2018-06-20 01:45:51 +00:00
|
|
|
something: good
|
|
|
|
---
|
2020-01-06 03:22:24 +00:00
|
|
|
something: good
|
2018-06-20 01:45:51 +00:00
|
|
|
apples: red
|
2020-01-06 03:22:24 +00:00
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2018-06-20 01:45:51 +00:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeCmd_Error(t *testing.T) {
|
2017-09-23 03:29:37 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge ../examples/data1.yaml")
|
2017-09-23 03:29:37 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to missing arg")
|
|
|
|
}
|
|
|
|
expectedOutput := `Must provide at least 2 yaml files`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-23 03:29:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeCmd_ErrorUnreadableFile(t *testing.T) {
|
2017-09-23 03:29:37 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge ../examples/data1.yaml fake-unknown")
|
2017-09-23 03:29:37 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
t.Error("Expected command to fail due to unknown file")
|
|
|
|
}
|
2019-01-03 13:11:47 +00:00
|
|
|
var expectedOutput string
|
|
|
|
if runtime.GOOS == "windows" {
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput = `open fake-unknown: The system cannot find the file specified.`
|
2019-01-03 13:11:47 +00:00
|
|
|
} else {
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput = `open fake-unknown: no such file or directory`
|
2019-01-03 13:11:47 +00:00
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Error.Error())
|
2017-09-23 03:29:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeCmd_Inplace(t *testing.T) {
|
2020-01-13 09:11:56 +00:00
|
|
|
filename := test.WriteTempYamlFile(test.ReadTempYamlFile("../examples/data1.yaml"))
|
2018-10-24 20:04:05 +00:00
|
|
|
err := os.Chmod(filename, os.FileMode(int(0666)))
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
2019-11-23 03:52:29 +00:00
|
|
|
defer test.RemoveTempYamlFile(filename)
|
2017-09-23 03:29:37 +00:00
|
|
|
|
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, fmt.Sprintf("merge -i %s ../examples/data2.yaml", filename))
|
2017-09-23 03:29:37 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2018-10-24 20:00:43 +00:00
|
|
|
info, _ := os.Stat(filename)
|
2019-11-23 03:52:29 +00:00
|
|
|
gotOutput := test.ReadTempYamlFile(filename)
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
|
|
|
b: [1, 2]
|
2017-09-23 03:29:37 +00:00
|
|
|
c:
|
2020-01-06 03:22:24 +00:00
|
|
|
test: 1
|
|
|
|
toast: leave
|
|
|
|
tell: 1
|
|
|
|
taco: cool
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, gotOutput)
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, os.FileMode(int(0666)), info.Mode())
|
2017-09-23 03:29:37 +00:00
|
|
|
}
|
2019-03-21 10:08:11 +00:00
|
|
|
|
2020-01-06 03:22:24 +00:00
|
|
|
func TestMergeAllowEmptyCmd(t *testing.T) {
|
2019-03-21 10:08:11 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge --allow-empty ../examples/data1.yaml ../examples/empty.yaml")
|
2019-03-21 10:08:11 +00:00
|
|
|
if result.Error != nil {
|
|
|
|
t.Error(result.Error)
|
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
|
|
|
b: [1, 2]
|
|
|
|
c:
|
|
|
|
test: 1
|
2019-03-21 10:08:11 +00:00
|
|
|
`
|
2019-11-23 03:52:29 +00:00
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2019-03-21 10:08:11 +00:00
|
|
|
}
|
2020-01-06 03:22:24 +00:00
|
|
|
|
2020-02-02 22:15:16 +00:00
|
|
|
func TestMergeAllowEmptyMergeCmd(t *testing.T) {
|
2020-01-06 03:22:24 +00:00
|
|
|
cmd := getRootCommand()
|
2020-01-13 09:11:56 +00:00
|
|
|
result := test.RunCmd(cmd, "merge ../examples/data1.yaml ../examples/empty.yaml")
|
2020-02-02 22:15:16 +00:00
|
|
|
expectedOutput := `a: simple # just the best
|
|
|
|
b: [1, 2]
|
|
|
|
c:
|
|
|
|
test: 1
|
|
|
|
`
|
|
|
|
test.AssertResult(t, expectedOutput, result.Output)
|
2020-01-06 03:22:24 +00:00
|
|
|
}
|