-
Notifications
You must be signed in to change notification settings - Fork 164
/
marshaller_test.go
162 lines (139 loc) · 3.67 KB
/
marshaller_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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package main
import (
"bytes"
"errors"
"syscall"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestMarshallerConstants(t *testing.T) {
assert.Equal(t, 1320, EVENT_EOE)
}
func TestAuditMarshaller_Consume(t *testing.T) {
w := &bytes.Buffer{}
m := NewAuditMarshaller(NewAuditWriter(w, 1), uint16(1100), uint16(1399), false, false, 0, []AuditFilter{}, nil)
// Flush group on 1320
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1300),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:1): hi there"),
})
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1301),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:1): hi there"),
})
m.Consume(new1320("1"))
assert.Equal(
t,
"{\"sequence\":1,\"timestamp\":\"10000001\",\"messages\":[{\"type\":1300,\"data\":\"hi there\"},{\"type\":1301,\"data\":\"hi there\"}],\"uid_map\":{}}\n",
w.String(),
)
assert.Equal(t, 0, len(m.msgs))
// Ignore below 1100
w.Reset()
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1099),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:2): hi there"),
})
assert.Equal(t, 0, len(m.msgs))
// Ignore above 1399
w.Reset()
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1400),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:3): hi there"),
})
assert.Equal(t, 0, len(m.msgs))
// Ignore sequences of 0
w.Reset()
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1400),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:0): hi there"),
})
assert.Equal(t, 0, len(m.msgs))
// Should flush old msgs after 2 seconds
w.Reset()
m.Consume(&syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1300),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:4): hi there"),
})
start := time.Now()
for len(m.msgs) != 0 {
m.Consume(new1320("0"))
}
assert.Equal(t, "{\"sequence\":4,\"timestamp\":\"10000001\",\"messages\":[{\"type\":1300,\"data\":\"hi there\"}],\"uid_map\":{}}\n", w.String())
expected := start.Add(time.Second * 2)
assert.True(t, expected.Equal(time.Now()) || expected.Before(time.Now()), "Should have taken at least 2 seconds to flush")
assert.Equal(t, 0, len(m.msgs))
}
func TestAuditMarshaller_completeMessage(t *testing.T) {
//TODO: cant test because completeMessage calls exit
t.Skip()
return
// lb, elb := hookLogger()
// m := NewAuditMarshaller(NewAuditWriter(&FailWriter{}, 1), uint16(1300), uint16(1399), false, false, 0, []AuditFilter{})
// m.Consume(&syscall.NetlinkMessage{
// Header: syscall.NlMsghdr{
// Len: uint32(44),
// Type: uint16(1300),
// Flags: uint16(0),
// Seq: uint32(0),
// Pid: uint32(0),
// },
// Data: []byte("audit(10000001:4): hi there"),
// })
// m.completeMessage(4)
// assert.Equal(t, "!", lb.String())
// assert.Equal(t, "!", elb.String())
}
func new1320(seq string) *syscall.NetlinkMessage {
return &syscall.NetlinkMessage{
Header: syscall.NlMsghdr{
Len: uint32(44),
Type: uint16(1320),
Flags: uint16(0),
Seq: uint32(0),
Pid: uint32(0),
},
Data: []byte("audit(10000001:" + seq + "): "),
}
}
type FailWriter struct{}
func (f *FailWriter) Write(p []byte) (n int, err error) {
return 0, errors.New("derp")
}