drone-yaml/yaml/pretty/writer_test.go

63 lines
867 B
Go
Raw Normal View History

2021-09-19 13:49:54 +02:00
// Copyright (c), the Drone Authors.
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
package pretty
import (
"strings"
"testing"
"gopkg.in/yaml.v2"
2019-01-23 00:44:17 +01:00
)
// this unit tests pretty prints a complex yaml structure
// to ensure we have common use cases covered.
func TestWriteComplexValue(t *testing.T) {
testComplexValue := `
2019-01-23 00:44:17 +01:00
a: b
c:
- d
- e
f:
g: h
i:
- j
- k
- l: m
o: p
q:
- r
- s: ~
- {}
- []
- ~
t: {}
u: []
v: 1
w: true
x: ~
z: "#y"
zz: "\nz\n"
"{z}": z`
block := map[interface{}]interface{}{}
err := yaml.Unmarshal([]byte(testComplexValue), &block)
if err != nil {
t.Error(err)
return
}
b := new(baseWriter)
writeValue(b, block)
got, want := b.String(), strings.TrimSpace(testComplexValue)
if got != want {
t.Errorf("Unexpected block format")
println(got)
println("---")
println(want)
}
}