-
Notifications
You must be signed in to change notification settings - Fork 249
/
Copy pathksym_test.go
64 lines (54 loc) · 1.41 KB
/
ksym_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
package decoder
import (
"bytes"
"os"
"testing"
"github.com/cloudflare/ebpf_exporter/v2/config"
"github.com/cloudflare/ebpf_exporter/v2/kallsyms"
)
func TestKsymDecoder(t *testing.T) {
cases := []struct {
in []byte
out []byte
}{
{
in: []byte{0x28, 0x08, 0xd9, 0x19, 0xeb, 0xff, 0xff, 0xff},
out: []byte("unknown_addr:0xffffffeb19d90828"),
},
{
in: []byte{0x30, 0x08, 0xd9, 0x19, 0xeb, 0xff, 0xff, 0xff},
out: []byte("pipe_lock"),
},
{
in: []byte{0x70, 0x08, 0xd9, 0x19, 0xeb, 0xff, 0xff, 0xff},
out: []byte("pipe_unlock"),
},
{
in: []byte{0x78, 0x08, 0xd9, 0x19, 0xeb, 0xff, 0xff, 0xff},
out: []byte("unknown_addr:0xffffffeb19d90878"),
},
}
fd, err := os.CreateTemp(t.TempDir(), "kallsyms")
if err != nil {
t.Fatalf("Error creating temporary file for kallsyms: %v", err)
}
defer os.Remove(fd.Name())
_, err = fd.WriteString("ffffffeb19d90830 T pipe_lock\nffffffeb19d90870 T pipe_unlock\n")
if err != nil {
t.Fatalf("Error writing fake kallsyms data to %q: %v", fd.Name(), err)
}
decoder, err := kallsyms.NewDecoder(fd.Name())
if err != nil {
t.Fatalf("Error creating ksym decoder for %q: %v", fd.Name(), err)
}
d := KSym{decoder}
for _, c := range cases {
out, err := d.Decode(c.in, config.Decoder{})
if err != nil {
t.Errorf("Error decoding %#v: %s", c.in, err)
}
if !bytes.Equal(out, c.out) {
t.Errorf("Expected %q, got %q", c.out, out)
}
}
}