2021-09-19 11:49:54 +00:00
|
|
|
// Copyright (c), the Drone Authors.
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package pretty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2022-03-30 20:42:06 +00:00
|
|
|
"gopkg.in/yaml.v2"
|
2019-01-22 23:44:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// this unit tests pretty prints a complex yaml structure
|
|
|
|
// to ensure we have common use cases covered.
|
|
|
|
func TestWriteComplexValue(t *testing.T) {
|
2023-02-08 09:14:20 +00:00
|
|
|
testComplexValue := `
|
2019-01-22 23:44:17 +00: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`
|
2023-02-08 09:14:20 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|