forked from oracle/smith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps_test.go
102 lines (91 loc) · 2.36 KB
/
deps_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
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
package main
import (
"path/filepath"
"runtime"
"strings"
"testing"
"github.com/oracle/smith/execute"
)
func dependenciesEqual(t *testing.T, a, b map[string]struct{}) {
if len(a) != len(b) {
t.Fatalf("Different number of dependencies: %v, %v", len(a), len(b))
}
for k := range a {
if _, ok := b[k]; !ok {
t.Fatalf("Dependency %v isn't in result", k)
}
}
}
func skipIfNotLinux(t *testing.T) {
if runtime.GOOS != "linux" {
t.Skip("Skipping test. Does not work on non-linux operating systems.")
}
}
func TestDeps(t *testing.T) {
skipIfNotLinux(t)
target, _ := filepath.Abs("/usr/bin/env")
stdout, _, _ := execute.ExecuteQuiet("./deps.sh", target)
expected := map[string]struct{}{}
for _, dep := range strings.Split(strings.TrimSpace(stdout), "\n") {
expected[dep] = struct{}{}
}
err := SetSoPathsFromExecutor(execute.ExecuteQuiet)
if err != nil {
t.Fatalf("%v", err)
}
result, err := Deps("", target, false)
if err != nil {
t.Fatalf("%v", err)
}
dependenciesEqual(t, expected, result)
}
func TestDepsNss(t *testing.T) {
skipIfNotLinux(t)
target, _ := filepath.Abs("/usr/bin/env")
stdout, _, _ := execute.ExecuteQuiet("./deps-nss.sh", target)
expected := map[string]struct{}{}
for _, dep := range strings.Split(strings.TrimSpace(stdout), "\n") {
expected[dep] = struct{}{}
}
err := SetSoPathsFromExecutor(execute.ExecuteQuiet)
if err != nil {
t.Fatalf("%v", err)
}
result, err := Deps("", target, true)
if err != nil {
t.Fatalf("%v", err)
}
dependenciesEqual(t, expected, result)
}
const fakeLdconfig = `/lib:
libffi.so.6 -> libffi.so.6.0.1
/lib64:
libc.so.6 -> libc-2.17.so
`
func TestFindLibrary(t *testing.T) {
exec := func(name string, arg ...string) (string, string, error) {
return fakeLdconfig, "", nil
}
err := SetSoPathsFromExecutor(exec)
if err != nil {
t.Fatalf("%v", err)
}
if FindLibrary("libffi.so.6", "", []string{}) != "/lib/libffi.so.6" {
t.Fatalf("Libraries don't match")
}
if FindLibrary("libc.so.6", "", []string{}) != "/lib64/libc.so.6" {
t.Fatalf("Libraries don't match")
}
}
func TestFindLibrarySearch(t *testing.T) {
exec := func(name string, arg ...string) (string, string, error) {
return "", "", nil
}
err := SetSoPathsFromExecutor(exec)
if err != nil {
t.Fatalf("%v", err)
}
if FindLibrary("deps_fake.so", "", []string{"."}) != "deps_fake.so" {
t.Fatalf("Libraries don't match")
}
}