forked from aluttik/go-crossplane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_test.go
77 lines (75 loc) · 1.48 KB
/
util_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
67
68
69
70
71
72
73
74
75
76
77
package crossplane
import (
"encoding/json"
"testing"
)
func TestPayload(t *testing.T) {
t.Run("combine", func(t *testing.T) {
payload := Payload{
Config: []Config{
Config{
File: "example1.conf",
Parsed: []Directive{
Directive{
Directive: "include",
Args: []string{"example2.conf"},
Line: 1,
Includes: &[]int{1},
},
},
},
Config{
File: "example2.conf",
Parsed: []Directive{
Directive{
Directive: "events",
Args: []string{},
Line: 1,
Block: &[]Directive{},
},
Directive{
Directive: "http",
Args: []string{},
Line: 2,
Block: &[]Directive{},
},
},
},
},
}
expected := Payload{
Status: "ok",
Errors: []PayloadError{},
Config: []Config{
Config{
File: "example1.conf",
Status: "ok",
Errors: []ConfigError{},
Parsed: []Directive{
Directive{
Directive: "events",
Args: []string{},
Line: 1,
Block: &[]Directive{},
},
Directive{
Directive: "http",
Args: []string{},
Line: 2,
Block: &[]Directive{},
},
},
},
},
}
combined, err := payload.Combined()
if err != nil {
t.Fatal(err)
}
b1, _ := json.Marshal(expected)
b2, _ := json.Marshal(*combined)
if string(b1) != string(b2) {
t.Fatalf("expected: %s\nbut got: %s", b1, b2)
}
})
}