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
|
// Copyright 2026 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package mgrconfig
import (
"testing"
"github.com/google/syzkaller/prog"
"github.com/google/syzkaller/sys/targets"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestParseEnabledSyscalls(t *testing.T) {
target, err := prog.GetTarget(targets.TestOS, targets.TestArch64)
require.NoError(t, err)
tests := []struct {
name string
mode DescriptionsMode
enable []string
// TODO: add disable tests as well.
expectEnabled []string
expectDisabled []string
}{
{
name: "wildcard, no snapshot",
mode: ManualDescriptions,
enable: []string{"test"},
expectDisabled: []string{"test$snapshot_only"},
},
{
name: "wildcard, snapshot",
mode: ManualDescriptions | SnapshotDescriptions,
enable: []string{"test"},
expectEnabled: []string{"test$snapshot_only"},
},
{
name: "no wildcard, no snapshot",
mode: ManualDescriptions,
enable: []string{"test$snapshot_only"},
expectEnabled: []string{"test$snapshot_only"},
},
{
name: "no wildcard, snapshot",
mode: ManualDescriptions | SnapshotDescriptions,
enable: []string{"test$snapshot_only"},
expectEnabled: []string{"test$snapshot_only"},
},
{
name: "automatic allowed",
mode: ManualDescriptions | AutoDescriptions,
enable: []string{"test"},
expectEnabled: []string{
"test$automatic",
"test$automatic_helper",
"test$manual",
},
},
{
name: "manual only",
mode: ManualDescriptions,
enable: []string{"test"},
expectEnabled: []string{
"test$automatic_helper",
"test$manual",
},
expectDisabled: []string{
"test$automatic",
},
},
{
name: "auto only",
mode: AutoDescriptions,
enable: []string{"test"},
expectEnabled: []string{
"test$automatic",
"test$automatic_helper",
},
expectDisabled: []string{
"test$manual",
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ids, err := ParseEnabledSyscalls(target, test.enable,
nil, test.mode)
require.NoError(t, err)
for _, enabled := range test.expectEnabled {
assert.Contains(t, ids, target.SyscallMap[enabled].ID)
}
for _, disabled := range test.expectDisabled {
assert.NotContains(t, ids, target.SyscallMap[disabled].ID)
}
})
}
}
|