-
Notifications
You must be signed in to change notification settings - Fork 321
/
net_conntrackstat_test.go
118 lines (110 loc) · 3.42 KB
/
net_conntrackstat_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
// Copyright 2020 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package procfs
import (
"bytes"
"reflect"
"testing"
)
func TestParseConntrackStat(t *testing.T) {
var nfConntrackStat = []byte(`entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete search_restart
00000021 00000000 00000000 00000000 00000003 0000588a 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000021 00000000 00000000 00000000 00000002 000056a4 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000002
00000021 00000000 00000000 00000000 00000001 000058d4 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001
00000021 00000000 00000000 00000000 0000002f 00005688 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000004
`)
r := bytes.NewReader(nfConntrackStat)
have, err := parseConntrackStat(r)
if err != nil {
t.Fatal(err)
}
want := []ConntrackStatEntry{
{
Entries: 33,
Found: 0,
Invalid: 3,
Ignore: 22666,
Insert: 0,
InsertFailed: 0,
Drop: 0,
EarlyDrop: 0,
SearchRestart: 0,
},
{
Entries: 33,
Found: 0,
Invalid: 2,
Ignore: 22180,
Insert: 0,
InsertFailed: 0,
Drop: 0,
EarlyDrop: 0,
SearchRestart: 2,
},
{
Entries: 33,
Found: 0,
Invalid: 1,
Ignore: 22740,
Insert: 0,
InsertFailed: 0,
Drop: 0,
EarlyDrop: 0,
SearchRestart: 1,
},
{
Entries: 33,
Found: 0,
Invalid: 47,
Ignore: 22152,
Insert: 0,
InsertFailed: 0,
Drop: 0,
EarlyDrop: 0,
SearchRestart: 4,
},
}
if !reflect.DeepEqual(want, have) {
t.Errorf("want %v, have %v", want, have)
}
}
func TestParseOldConntrackStat(t *testing.T) {
var nfConntrackStat = []byte(`entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete
0000002b 0003159f 02e6786a 00142562 0001bf93 00e1a051 00142537 000b8fe0 000b900b 00000000 00000000 00000000 0001b46a 00000000 00000000 00000000
`)
r := bytes.NewReader(nfConntrackStat)
have, err := parseConntrackStat(r)
if err != nil {
t.Fatal(err)
}
want := []ConntrackStatEntry{
{
Entries: 43,
Searched: 202143,
Found: 48658538,
New: 1320290,
Invalid: 114579,
Ignore: 14786641,
Delete: 1320247,
DeleteList: 757728,
Insert: 757771,
InsertFailed: 0,
Drop: 0,
EarlyDrop: 0,
SearchRestart: 0,
},
}
if !reflect.DeepEqual(want, have) {
t.Errorf("want %v, have %v", want, have)
}
}