forked from snyk/snyk-iac-parsers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaml_test.go
66 lines (59 loc) · 1.42 KB
/
yaml_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package parsers
import (
"reflect"
"testing"
)
func TestYAMLParser(t *testing.T) {
t.Run("error parsing a YAML document", func(t *testing.T) {
testTable := []struct {
name string
controlConfigs []byte
expectedResult interface{}
shouldError bool
}{
{
name: "a single config",
controlConfigs: []byte(`sample: true`),
expectedResult: map[string]interface{}{
"sample": true,
},
shouldError: false,
},
{
name: "a single config with multiple yaml subdocs",
controlConfigs: []byte(`---
sample: true
---
hello: true
---
nice: true`),
expectedResult: []interface{}{
map[string]interface{}{
"sample": true,
},
map[string]interface{}{
"hello": true,
},
map[string]interface{}{
"nice": true,
},
},
shouldError: false,
},
}
for _, test := range testTable {
t.Run(test.name, func(t *testing.T) {
var unmarshalledConfigs interface{}
if err := ParseYAML(test.controlConfigs, &unmarshalledConfigs); err != nil {
t.Errorf("errors unmarshalling: %v", err)
}
if unmarshalledConfigs == nil {
t.Error("error seeing actual value in object, received nil")
}
if !reflect.DeepEqual(test.expectedResult, unmarshalledConfigs) {
t.Errorf("Expected\n%T : %v\n to equal\n%T : %v\n", unmarshalledConfigs, unmarshalledConfigs, test.expectedResult, test.expectedResult)
}
})
}
})
}