-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathsystem_tag_test.go
129 lines (109 loc) · 2.98 KB
/
system_tag_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package metrics
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestSystemTagSetMarshalJSON(t *testing.T) {
t.Parallel()
tests := []struct {
tagset SystemTagSet
expected string
}{
{SystemTagSet(TagIP), `["ip"]`},
{SystemTagSet(TagIP | TagProto | TagGroup), `["group","ip","proto"]`},
{0, `null`},
}
for _, tc := range tests {
ts := tc.tagset
got, err := json.Marshal(&ts)
require.Nil(t, err)
require.Equal(t, tc.expected, string(got))
}
}
func TestSystemTagSet_UnmarshalJSON(t *testing.T) {
t.Parallel()
tests := []struct {
tags []byte
sets []SystemTag
}{
{[]byte(`[]`), []SystemTag{}},
{[]byte(`["ip", "proto"]`), []SystemTag{TagIP, TagProto}},
}
for _, tc := range tests {
ts := new(SystemTagSet)
require.Nil(t, json.Unmarshal(tc.tags, ts))
for _, tag := range tc.sets {
assert.True(t, ts.Has(tag))
}
}
}
func TestSystemTagSetTextUnmarshal(t *testing.T) {
t.Parallel()
testMatrix := map[string]SystemTag{
"": 0,
"ip": TagIP,
"ip,proto": TagIP | TagProto,
" ip , proto ": TagIP | TagProto,
" ip , , proto ": TagIP | TagProto,
" ip ,, proto ,,": TagIP | TagProto,
}
for input, expected := range testMatrix {
set := new(SystemTagSet)
err := set.UnmarshalText([]byte(input))
require.NoError(t, err)
require.Equal(t, SystemTagSet(expected), *set)
}
}
func TestTagSetMarshalJSON(t *testing.T) {
t.Parallel()
tests := []struct {
tagset EnabledTags
expected string
}{
{tagset: EnabledTags{"ip": true, "proto": true, "group": true, "custom": true}, expected: `["custom","group","ip","proto"]`},
{tagset: EnabledTags{}, expected: `[]`},
}
for _, tc := range tests {
ts := tc.tagset
got, err := json.Marshal(&ts)
require.Nil(t, err)
require.Equal(t, tc.expected, string(got))
}
}
func TestTagSet_UnmarshalJSON(t *testing.T) {
t.Parallel()
tests := []struct {
tags []byte
sets EnabledTags
}{
{[]byte(`[]`), EnabledTags{}},
{[]byte(`["ip","custom", "proto"]`), EnabledTags{"ip": true, "proto": true, "custom": true}},
}
for _, tc := range tests {
ts := new(EnabledTags)
require.Nil(t, json.Unmarshal(tc.tags, ts))
for tag := range tc.sets {
assert.True(t, (*ts)[tag])
}
}
}
func TestTagSetTextUnmarshal(t *testing.T) {
t.Parallel()
testMatrix := map[string]EnabledTags{
"": make(EnabledTags),
"ip": {"ip": true},
"ip,proto": {"ip": true, "proto": true},
" ip , proto ": {"ip": true, "proto": true},
" ip , , proto ": {"ip": true, "proto": true},
" ip ,, proto ,,": {"ip": true, "proto": true},
" ip ,custom, proto ,,": {"ip": true, "custom": true, "proto": true},
}
for input, expected := range testMatrix {
set := new(EnabledTags)
err := set.UnmarshalText([]byte(input))
require.NoError(t, err)
require.Equal(t, expected, *set)
}
}