drone-yaml/yaml/pretty/writer_test.go

61 lines
921 B
Go
Raw Normal View History

2019-02-10 20:00:16 +01:00
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
2019-02-10 20:00:16 +01:00
// +build !oss
2019-01-23 00:44:17 +01:00
package pretty
import (
"strings"
"testing"
"gopkg.in/yaml.v2"
)
// this unit tests pretty prints a complex yaml structure
// to ensure we have common use cases covered.
func TestWriteComplexValue(t *testing.T) {
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")
print(got)
}
}
var testComplexValue = `
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`