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
|
package integrationtests
import "testing"
func TestStatBasic(t *testing.T) {
runScenario(t, "stat-basic", []ExpectedEvent{
{
PathContains: "statfile.txt",
Tracepoint: "enter_newstat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatFstat(t *testing.T) {
runScenario(t, "stat-fstat", []ExpectedEvent{
{
PathContains: "fstatfile.txt",
Tracepoint: "enter_newfstat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatLstat(t *testing.T) {
runScenario(t, "stat-lstat", []ExpectedEvent{
{
PathContains: "lstatfile.txt",
Tracepoint: "enter_newlstat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatNewfstatat(t *testing.T) {
runScenario(t, "stat-newfstatat", []ExpectedEvent{
{
PathContains: "fstatatfile.txt",
Tracepoint: "enter_newfstatat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatStatx(t *testing.T) {
runScenario(t, "stat-statx", []ExpectedEvent{
{
PathContains: "statxfile.txt",
Tracepoint: "enter_statx",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatAccess(t *testing.T) {
runScenario(t, "stat-access", []ExpectedEvent{
{
PathContains: "accessfile.txt",
Tracepoint: "enter_access",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatFaccessat(t *testing.T) {
runScenario(t, "stat-faccessat", []ExpectedEvent{
{
PathContains: "faccessatfile.txt",
Tracepoint: "enter_faccessat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatEnoent(t *testing.T) {
runScenario(t, "stat-enoent", []ExpectedEvent{
{
PathContains: "stat-enoent-missing.txt",
Tracepoint: "enter_newstat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatAccessEnoent(t *testing.T) {
runScenario(t, "stat-access-enoent", []ExpectedEvent{
{
PathContains: "access-enoent-missing.txt",
Tracepoint: "enter_access",
Comm: "ioworkload",
MinCount: 1,
},
})
}
func TestStatFstatEbadf(t *testing.T) {
runScenario(t, "stat-fstat-ebadf", []ExpectedEvent{
{
Tracepoint: "enter_newfstat",
Comm: "ioworkload",
MinCount: 1,
},
})
}
|