forked from alangpierce/go-forceexport
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforceexport_test.go
More file actions
86 lines (77 loc) · 2.18 KB
/
Copy pathforceexport_test.go
File metadata and controls
86 lines (77 loc) · 2.18 KB
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
package forceexport
import (
"fmt"
"reflect"
"runtime"
"testing"
)
// funcName resolves the name of a given function
func funcName(f interface{}) string {
return runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
}
func TestTimeNow(t *testing.T) {
var timeNowFunc func() (int64, int32)
GetFunc(&timeNowFunc, "time.now")
sec, nsec := timeNowFunc()
if sec == 0 || nsec == 0 {
t.Error("Expected nonzero result from time.now().")
}
}
// Note that we need to disable inlining here, or else the function won't be
// compiled into the binary. We also need to call it from the test so that the
// compiler doesn't remove it because it's unused.
//go:noinline
func addOne(x int) int {
return x + 1
}
func TestAddOne(t *testing.T) {
if addOne(3) != 4 {
t.Error("addOne should work properly.")
}
var addOneFunc func(x int) int
err := GetFunc(&addOneFunc, "github.com/alangpierce/go-forceexport.addOne")
if err != nil {
t.Error("Expected nil error.")
}
if addOneFunc(3) != 4 {
t.Error("Expected addOneFunc to add one to 3.")
}
}
func TestGetSelf(t *testing.T) {
var getFunc func(interface{}, string) error
err := GetFunc(&getFunc, "github.com/alangpierce/go-forceexport.GetFunc")
if err != nil {
t.Errorf("Error: %s", err)
}
// The two functions should share the same code pointer, so they should
// have the same string representation.
if fmt.Sprint(funcName(getFunc)) != fmt.Sprint(funcName(GetFunc)) {
t.Errorf("Expected ")
}
// Call it again on itself!
err = getFunc(&getFunc, "github.com/alangpierce/go-forceexport.GetFunc")
if err != nil {
t.Errorf("Error: %s", err)
}
if fmt.Sprint(funcName(getFunc)) != fmt.Sprint(funcName(GetFunc)) {
t.Errorf("Expected ")
}
}
func TestInvalidFunc(t *testing.T) {
var invalidFunc func()
err := GetFunc(&invalidFunc, "invalidpackage.invalidfunction")
if err == nil {
t.Error("Expected an error.")
}
if invalidFunc != nil {
t.Error("Expected a nil function.")
}
}
// BenchmarkGetMainInit check how long it takes to find the symbol main.init,
// which is typically the last func symbol(by experiment).
func BenchmarkGetMainInit(b *testing.B) {
for i := 0; i < b.N; i++ {
var main_init func()
GetFunc(&main_init, "main.init")
}
}