2015-10-03 07:25:13 +00:00
|
|
|
package main
|
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// import (
|
|
|
|
// "fmt"
|
|
|
|
// "runtime"
|
|
|
|
// "testing"
|
2019-12-01 20:10:42 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// "github.com/mikefarah/yq/v2/pkg/marshal"
|
|
|
|
// "github.com/mikefarah/yq/v2/test"
|
|
|
|
// )
|
2015-10-03 07:25:13 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// func TestMultilineString(t *testing.T) {
|
|
|
|
// testString := `
|
|
|
|
// abcd
|
|
|
|
// efg`
|
|
|
|
// formattedResult, _ := marshal.NewYamlConverter().YamlToString(testString, false)
|
|
|
|
// test.AssertResult(t, testString, formattedResult)
|
|
|
|
// }
|
2018-03-27 05:22:24 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// func TestNewYaml(t *testing.T) {
|
|
|
|
// result, _ := newYaml([]string{"b.c", "3"})
|
|
|
|
// formattedResult := fmt.Sprintf("%v", result)
|
|
|
|
// test.AssertResult(t,
|
|
|
|
// "[{b [{c 3}]}]",
|
|
|
|
// formattedResult)
|
|
|
|
// }
|
2017-04-12 11:10:00 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// func TestNewYamlArray(t *testing.T) {
|
|
|
|
// result, _ := newYaml([]string{"[0].cat", "meow"})
|
|
|
|
// formattedResult := fmt.Sprintf("%v", result)
|
|
|
|
// test.AssertResult(t,
|
|
|
|
// "[[{cat meow}]]",
|
|
|
|
// formattedResult)
|
|
|
|
// }
|
2017-08-08 07:04:30 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// func TestNewYaml_WithScript(t *testing.T) {
|
|
|
|
// writeScript = "examples/instruction_sample.yaml"
|
|
|
|
// expectedResult := `b:
|
|
|
|
// c: cat
|
|
|
|
// e:
|
|
|
|
// - name: Mike Farah`
|
|
|
|
// result, _ := newYaml([]string{""})
|
|
|
|
// actualResult, _ := marshal.NewYamlConverter().YamlToString(result, true)
|
|
|
|
// test.AssertResult(t, expectedResult, actualResult)
|
|
|
|
// }
|
2017-09-22 19:58:12 +00:00
|
|
|
|
2019-12-09 02:44:53 +00:00
|
|
|
// func TestNewYaml_WithUnknownScript(t *testing.T) {
|
|
|
|
// writeScript = "fake-unknown"
|
|
|
|
// _, err := newYaml([]string{""})
|
|
|
|
// if err == nil {
|
|
|
|
// t.Error("Expected error due to unknown file")
|
|
|
|
// }
|
|
|
|
// 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`
|
|
|
|
// }
|
|
|
|
// test.AssertResult(t, expectedOutput, err.Error())
|
|
|
|
// }
|