forked from cilium/ebpf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings_test.go
56 lines (46 loc) · 1.03 KB
/
strings_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
package btf
import (
"bytes"
"strings"
"testing"
)
func TestStringTable(t *testing.T) {
const in = "\x00one\x00two\x00"
st, err := readStringTable(strings.NewReader(in))
if err != nil {
t.Fatal(err)
}
if !bytes.Equal([]byte(in), []byte(st)) {
t.Error("String table doesn't match input")
}
testcases := []struct {
offset uint32
want string
}{
{0, ""},
{1, "one"},
{5, "two"},
}
for _, tc := range testcases {
have, err := st.Lookup(tc.offset)
if err != nil {
t.Errorf("Offset %d: %s", tc.offset, err)
continue
}
if have != tc.want {
t.Errorf("Offset %d: want %s but have %s", tc.offset, tc.want, have)
}
}
if _, err := st.Lookup(2); err == nil {
t.Error("No error when using offset pointing into middle of string")
}
// Make sure we reject bogus tables
_, err = readStringTable(strings.NewReader("\x00one"))
if err == nil {
t.Fatal("Accepted non-terminated string")
}
_, err = readStringTable(strings.NewReader("one\x00"))
if err == nil {
t.Fatal("Accepted non-empty first item")
}
}