-
Notifications
You must be signed in to change notification settings - Fork 158
/
testsuite_unit_test.go
407 lines (363 loc) · 10.4 KB
/
testsuite_unit_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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package earlyoom_testsuite
import (
"fmt"
"io/ioutil"
"os"
"strings"
"syscall"
"testing"
"unicode/utf8"
linuxproc "github.com/c9s/goprocinfo/linux"
)
// On Fedora 31 (Linux 5.4), /proc/sys/kernel/pid_max = 4194304.
// It's very unlikely that INT32_MAX will be a valid pid anytime soon.
const INT32_MAX = 2147483647
const ENOENT = 2
func TestParseTuple(t *testing.T) {
tcs := []struct {
arg string
limit int
shouldFail bool
term float64
kill float64
}{
{arg: "2,1", limit: 100, term: 2, kill: 1},
{arg: "20,10", limit: 100, term: 20, kill: 10},
{arg: "30", limit: 100, term: 30, kill: 15},
{arg: "30", limit: 20, shouldFail: true},
// https://github.com/rfjakob/earlyoom/issues/97
{arg: "22[,20]", limit: 100, shouldFail: true},
{arg: "220[,160]", limit: 300, shouldFail: true},
{arg: "180[,170]", limit: 300, shouldFail: true},
{arg: "5,0", limit: 100, term: 5, kill: 0},
{arg: "5,9", limit: 100, term: 9, kill: 9},
{arg: "0,5", limit: 100, term: 5, kill: 5},
// TERM value is set to KILL value when it is below TERM
{arg: "4,5", limit: 100, term: 5, kill: 5},
{arg: "0", limit: 100, shouldFail: true},
{arg: "0,0", limit: 100, shouldFail: true},
// Floating point values
{arg: "4.0,2.0", limit: 100, term: 4, kill: 2},
{arg: "4,0,2,0", limit: 100, shouldFail: true},
{arg: "3.1415,2.7182", limit: 100, term: 3.1415, kill: 2.7182},
{arg: "3.1415", limit: 100, term: 3.1415, kill: 3.1415 / 2},
{arg: "1." + strings.Repeat("123", 100), limit: 100, shouldFail: true},
// Leading garbage
{arg: "x1,x2", limit: 100, shouldFail: true},
{arg: "1,x2", limit: 100, shouldFail: true},
// Trailing garbage
{arg: "1x,2x", limit: 100, shouldFail: true},
{arg: "1.1.", limit: 100, shouldFail: true},
{arg: "1,2..", limit: 100, shouldFail: true},
}
for _, tc := range tcs {
err, term, kill := parse_term_kill_tuple(tc.arg, tc.limit)
hasFailed := (err != nil)
if tc.shouldFail != hasFailed {
t.Errorf("case %v: hasFailed=%v", tc, hasFailed)
continue
}
if term != tc.term {
t.Errorf("case %v: term=%v", tc, term)
}
if kill != tc.kill {
t.Errorf("case %v: kill=%v", tc, kill)
}
}
}
func TestIsAlive(t *testing.T) {
tcs := []struct {
pid int
res bool
}{
{os.Getpid(), true},
{1, true},
{999999, false},
{0, false},
}
for _, tc := range tcs {
if res := is_alive(tc.pid); res != tc.res {
t.Errorf("pid %d: expected %v, got %v", tc.pid, tc.res, res)
}
}
}
func TestIsAliveMock(t *testing.T) {
mockProcdir, err := ioutil.TempDir("", t.Name())
if err != nil {
t.Fatal(err)
}
procdir_path(mockProcdir)
defer procdir_path("/proc")
if err := os.Mkdir(mockProcdir+"/100", 0700); err != nil {
t.Fatal(err)
}
statString := func(comm string, state string) string {
template := "144815 (%s) %s 17620 144815 144815 34817 247882 4194304 20170 1855121 1 3321 28 46 3646 3366 20 0 1 0 10798280 237576192 1065 18446744073709551615 94174652813312 94174653706789 140724247111872 0 0 0 65536 3686404 1266761467 0 0 0 17 0 0 0 9 0 0 94174653946928 94174653994640 94174663303168 140724247119367 140724247119377 140724247119377 140724247121902 0"
return fmt.Sprintf(template, comm, state)
}
testCases := []struct {
content string
res bool
}{
{statString("bash", "R"), true}, // full string from actual system
{statString("bash", "Z"), false},
// hostile process names that try to fake "I am dead"
{statString("foo) Z ", "R"), true},
{statString("foo) Z", "R"), true},
{statString("foo)Z ", "R"), true},
{statString("foo)\nZ\n", "R"), true},
{statString("foo)\tZ\t", "R"), true},
{statString("foo) Z ", "R"), true},
// Actual stat string from https://github.com/rfjakob/zombiemem
{"777295 (zombiemem) Z 773303 777295 773303 34817 777295 4227084 262246 0 1 0 18 49 0 0 20 0 2 0 8669053 0 0 18446744073709551615 0 0 0 0 0 0 0 0 0 0 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0", true},
}
for _, tc := range testCases {
statFile := mockProcdir + "/100/stat"
if err := ioutil.WriteFile(statFile, []byte(tc.content), 0600); err != nil {
t.Fatal(err)
}
if is_alive(100) != tc.res {
t.Errorf("have=%v, want=%v for /proc/100/stat=%q", is_alive(100), tc.res, tc.content)
}
}
}
func Test_fix_truncated_utf8(t *testing.T) {
// From https://gist.github.com/w-vi/67fe49106c62421992a2
str := "___😀∮ E⋅da = Q, n → ∞, 𐍈∑ f(i) = ∏ g(i)"
// a range loop will split at runes - we *want* broken utf8 so use raw
// counter.
for i := 3; i < len(str); i++ {
truncated := str[:i]
fixed := fix_truncated_utf8(truncated)
if len(fixed) < 3 {
t.Fatalf("truncated: %q", fixed)
}
if !utf8.Valid([]byte(fixed)) {
t.Errorf("Invalid utf8: %q", fixed)
}
}
}
func Test_get_oom_score(t *testing.T) {
res := get_oom_score(os.Getpid())
// On systems with a lot of RAM, our process may actually have a score of
// zero. At least check that get_oom_score did not return an error.
if res < 0 {
t.Error(res)
}
res = get_oom_score(INT32_MAX)
if res != -ENOENT {
t.Errorf("want %d, but have %d", syscall.ENOENT, res)
}
}
func Test_get_comm(t *testing.T) {
pid := os.Getpid()
res, comm := get_comm(pid)
if res != 0 {
t.Fatalf("error %d", res)
}
if len(comm) == 0 {
t.Fatalf("empty process name %q", comm)
}
t.Logf("process name %q", comm)
// Error case
res, comm = get_comm(INT32_MAX)
if res != -ENOENT {
t.Fail()
}
if comm != "" {
t.Fail()
}
}
func Test_get_cmdline(t *testing.T) {
pid := os.Getpid()
res, comm := get_cmdline(pid)
if res != 0 {
t.Fatalf("error %d", res)
}
if len(comm) == 0 {
t.Fatalf("empty process cmdline %q", comm)
}
t.Logf("process cmdline %q", comm)
// Error case
res, comm = get_cmdline(INT32_MAX)
if res != -ENOENT {
t.Fail()
}
if comm != "" {
t.Fail()
}
}
func Test_parse_proc_pid_stat_buf(t *testing.T) {
should_error_out := []string{
"",
"x",
"\000\000\000",
")",
}
for _, v := range should_error_out {
res, _ := parse_proc_pid_stat_buf(v)
if res {
t.Errorf("Should have errored out at %q", v)
}
}
}
func Test_parse_proc_pid_stat_1(t *testing.T) {
stat, err := linuxproc.ReadProcessStat("/proc/1/stat")
if err != nil {
t.Fatal(err)
}
res, have := parse_proc_pid_stat(1)
if !res {
t.Fatal(res)
}
want := have
want.state = _Ctype_char(stat.State[0])
want.ppid = _Ctype_int(stat.Ppid)
want.num_threads = _Ctype_long(stat.NumThreads)
want.rss = _Ctype_long(stat.Rss)
if have != want {
t.Errorf("\nhave=%#v\nwant=%#v", have, want)
}
}
func Test_parse_proc_pid_stat_Mock(t *testing.T) {
mockProcdir, err := ioutil.TempDir("", t.Name())
if err != nil {
t.Fatal(err)
}
procdir_path(mockProcdir)
defer procdir_path("/proc")
if err := os.Mkdir(mockProcdir+"/100", 0700); err != nil {
t.Fatal(err)
}
// Real /proc/pid/stat string for gnome-shell
template := "549077 (%s) S 547891 549077 549077 0 -1 4194560 245592 104 342 5 108521 28953 0 1 20 0 23 0 4816953 5260238848 65528 18446744073709551615 94179647238144 94179647245825 140730757359824 0 0 0 0 16781312 17656 0 0 0 17 1 0 0 0 0 0 94179647252976 94179647254904 94179672109056 140730757367876 140730757367897 140730757367897 140730757369827 0"
content := []string{
fmt.Sprintf(template, "gnome-shell"),
fmt.Sprintf(template, ""),
fmt.Sprintf(template, ": - )"),
fmt.Sprintf(template, "()()()())))(((()))()()"),
fmt.Sprintf(template, " \n\n "),
}
// Stupid hack to get a C.pid_stat_t
_, want := parse_proc_pid_stat(1)
want.state = 'S'
want.ppid = 547891
want.num_threads = 23
want.rss = 65528
for _, c := range content {
statFile := mockProcdir + "/100/stat"
if err := ioutil.WriteFile(statFile, []byte(c), 0600); err != nil {
t.Fatal(err)
}
res, have := parse_proc_pid_stat(100)
if !res {
t.Errorf("parse_proc_pid_stat returned %v", res)
}
if have != want {
t.Errorf("/proc/100/stat=%q:\nhave=%#v\nwant=%#v", c, have, want)
}
}
}
func permute_is_larger(t *testing.T, sort_by_rss bool, procs []mockProcProcess) {
args := poll_loop_args_t(sort_by_rss)
for i := range procs {
for j := range procs {
// If the entry is later in the list, is_larger should return true.
want := j > i
have := is_larger(&args, procs[i], procs[j])
if want != have {
t.Errorf("j%d/pid%d larger than i%d/pid%d? want=%v have=%v", j, procs[j].pid, i, procs[i].pid, want, have)
}
}
}
}
func Test_is_larger(t *testing.T) {
procs := []mockProcProcess{
// smallest
{pid: 100, oom_score: 100, VmRSSkiB: 1234},
{pid: 101, oom_score: 100, VmRSSkiB: 1238},
{pid: 102, oom_score: 101, VmRSSkiB: 4},
{pid: 103, oom_score: 102, VmRSSkiB: 4},
{pid: 104, oom_score: 103, VmRSSkiB: 0, num_threads: 2}, // zombie main thread
// largest
}
mockProc(t, procs)
defer procdir_path("/proc")
t.Logf("procdir_path=%q", procdir_path(""))
permute_is_larger(t, false, procs)
}
func Test_is_larger_by_rss(t *testing.T) {
procs := []mockProcProcess{
// smallest
{pid: 100, oom_score: 100, VmRSSkiB: 4},
{pid: 101, oom_score: 100, VmRSSkiB: 8},
{pid: 102, oom_score: 101, VmRSSkiB: 8},
{pid: 103, oom_score: 99, VmRSSkiB: 12},
{pid: 104, oom_score: 102, VmRSSkiB: 0, num_threads: 2}, // zombie main thread
{pid: 105, oom_score: 102, VmRSSkiB: 12},
// largest
}
mockProc(t, procs)
defer procdir_path("/proc")
t.Logf("procdir_path=%q", procdir_path(""))
permute_is_larger(t, true, procs)
}
func Benchmark_parse_meminfo(b *testing.B) {
enable_debug(false)
for n := 0; n < b.N; n++ {
parse_meminfo()
}
}
func Benchmark_kill_process(b *testing.B) {
enable_debug(false)
for n := 0; n < b.N; n++ {
kill_process()
}
}
func Benchmark_find_largest_process(b *testing.B) {
enable_debug(false)
for n := 0; n < b.N; n++ {
find_largest_process()
}
}
func Benchmark_get_oom_score(b *testing.B) {
enable_debug(false)
pid := os.Getpid()
for n := 0; n < b.N; n++ {
get_oom_score(pid)
}
}
func Benchmark_get_oom_score_adj(b *testing.B) {
enable_debug(false)
pid := os.Getpid()
for n := 0; n < b.N; n++ {
var out int
get_oom_score_adj(pid, &out)
}
}
func Benchmark_get_cmdline(b *testing.B) {
enable_debug(false)
pid := os.Getpid()
for n := 0; n < b.N; n++ {
res, comm := get_cmdline(pid)
if len(comm) == 0 {
b.Fatalf("empty process cmdline %q", comm)
}
if res != 0 {
b.Fatalf("error %d", res)
}
}
}
func Benchmark_parse_proc_pid_stat(b *testing.B) {
enable_debug(false)
pid := os.Getpid()
for n := 0; n < b.N; n++ {
res, out := parse_proc_pid_stat(pid)
if out.num_threads == 0 {
b.Fatalf("no threads???")
}
if !res {
b.Fatal("failed")
}
}
}