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
|
//go:build !windows
package gen
import (
"bytes"
"os"
"path/filepath"
"testing"
"github.com/cilium/ebpf/internal/testutils"
)
const minimalSocketFilter = `__attribute__((section("socket"), used)) int main() { return 0; }`
func TestCompile(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
dir := t.TempDir()
mustWriteFile(t, dir, "test.c", minimalSocketFilter)
err := Compile(CompileArgs{
CC: testutils.ClangBin(t),
DisableStripping: true,
Workdir: dir,
Source: filepath.Join(dir, "test.c"),
Dest: filepath.Join(dir, "test.o"),
})
if err != nil {
t.Fatal("Can't compile:", err)
}
stat, err := os.Stat(filepath.Join(dir, "test.o"))
if err != nil {
t.Fatal("Can't stat output:", err)
}
if stat.Size() == 0 {
t.Error("Compilation creates an empty file")
}
}
func TestReproducibleCompile(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
clangBin := testutils.ClangBin(t)
dir := t.TempDir()
mustWriteFile(t, dir, "test.c", minimalSocketFilter)
err := Compile(CompileArgs{
CC: clangBin,
DisableStripping: true,
Workdir: dir,
Source: filepath.Join(dir, "test.c"),
Dest: filepath.Join(dir, "a.o"),
})
if err != nil {
t.Fatal("Can't compile:", err)
}
err = Compile(CompileArgs{
CC: clangBin,
DisableStripping: true,
Workdir: dir,
Source: filepath.Join(dir, "test.c"),
Dest: filepath.Join(dir, "b.o"),
})
if err != nil {
t.Fatal("Can't compile:", err)
}
aBytes, err := os.ReadFile(filepath.Join(dir, "a.o"))
if err != nil {
t.Fatal(err)
}
bBytes, err := os.ReadFile(filepath.Join(dir, "b.o"))
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(aBytes, bBytes) {
t.Error("Compiling the same file twice doesn't give the same result")
}
}
func TestTriggerMissingTarget(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
dir := t.TempDir()
mustWriteFile(t, dir, "test.c", `_Pragma(__BPF_TARGET_MISSING);`)
err := Compile(CompileArgs{
CC: testutils.ClangBin(t),
Workdir: dir,
Source: filepath.Join(dir, "test.c"),
Dest: filepath.Join(dir, "a.o"),
})
if err == nil {
t.Fatal("No error when compiling __BPF_TARGET_MISSING")
}
}
func mustWriteFile(tb testing.TB, dir, name, contents string) {
tb.Helper()
tmpFile := filepath.Join(dir, name)
if err := os.WriteFile(tmpFile, []byte(contents), 0660); err != nil {
tb.Fatal(err)
}
}
|