forked from nginxinc/nginx-go-crossplane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_test.go
85 lines (81 loc) · 1.56 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
78
79
80
81
82
83
84
85
/**
* Copyright (c) F5, Inc.
*
* This source code is licensed under the Apache License, Version 2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
package crossplane_test
import (
"encoding/json"
"testing"
. "github.com/nginxinc/nginx-go-crossplane"
)
//nolint:funlen
func TestPayload(t *testing.T) {
t.Parallel()
t.Run("combine", func(t *testing.T) {
t.Parallel()
payload := Payload{
Config: []Config{
{
File: "example1.conf",
Parsed: Directives{
{
Directive: "include",
Args: []string{"example2.conf"},
Line: 1,
Includes: []int{1},
},
},
},
{
File: "example2.conf",
Parsed: Directives{
{
Directive: "events",
Args: []string{},
Line: 1,
},
{
Directive: "http",
Args: []string{},
Line: 2,
},
},
},
},
}
expected := Payload{
Status: "ok",
Errors: []PayloadError{},
Config: []Config{
{
File: "example1.conf",
Status: "ok",
Errors: []ConfigError{},
Parsed: Directives{
{
Directive: "events",
Args: []string{},
Line: 1,
},
{
Directive: "http",
Args: []string{},
Line: 2,
},
},
},
},
}
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)
}
})
}