forked from undefinedlabs/scope-go-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreflect.go
166 lines (150 loc) · 3.59 KB
/
reflect.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package reflection
import (
"errors"
"reflect"
"sync"
"testing"
"time"
"unsafe"
)
// Gets the type pointer to a field name
func GetTypePointer(i interface{}, fieldName string) (reflect.Type, error) {
typeOf := reflect.Indirect(reflect.ValueOf(i)).Type()
if member, ok := typeOf.FieldByName(fieldName); ok {
return reflect.PtrTo(member.Type), nil
}
return nil, errors.New("field can't be retrieved")
}
// Gets a pointer of a private or public field in any struct
func GetFieldPointerOf(i interface{}, fieldName string) (unsafe.Pointer, error) {
val := reflect.Indirect(reflect.ValueOf(i))
member := val.FieldByName(fieldName)
if member.IsValid() {
ptrToY := unsafe.Pointer(member.UnsafeAddr())
return ptrToY, nil
}
return nil, errors.New("field can't be retrieved")
}
func GetTestMutex(t *testing.T) *sync.RWMutex {
if ptr, err := GetFieldPointerOf(t, "mu"); err == nil {
return (*sync.RWMutex)(ptr)
}
return nil
}
func AddToHelpersMap(t *testing.T, frameFnNames []string) {
t.Helper()
mu := GetTestMutex(t)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
pointer, err := GetFieldPointerOf(t, "helpers")
if err != nil {
return
}
helpers := *(*map[string]struct{})(pointer)
for _, fnName := range frameFnNames {
helpers[fnName] = struct{}{}
}
}
func GetIsParallel(t *testing.T) bool {
mu := GetTestMutex(t)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if pointer, err := GetFieldPointerOf(t, "isParallel"); err == nil {
return *(*bool)(pointer)
}
return false
}
func GetTestStartTime(t *testing.T) (time.Time, error) {
mu := GetTestMutex(t)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if pointer, err := GetFieldPointerOf(t, "start"); err == nil {
return *(*time.Time)(pointer), nil
} else {
return time.Time{}, err
}
}
func GetTestDuration(t *testing.T) (time.Duration, error) {
mu := GetTestMutex(t)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if pointer, err := GetFieldPointerOf(t, "duration"); err == nil {
return *(*time.Duration)(pointer), nil
} else {
return 0, err
}
}
func GetBenchmarkMutex(b *testing.B) *sync.RWMutex {
if ptr, err := GetFieldPointerOf(b, "mu"); err == nil {
return (*sync.RWMutex)(ptr)
}
return nil
}
func GetParentBenchmark(b *testing.B) *testing.B {
mu := GetBenchmarkMutex(b)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if ptr, err := GetFieldPointerOf(b, "parent"); err == nil {
return *(**testing.B)(ptr)
}
return nil
}
func GetBenchmarkSuiteName(b *testing.B) string {
mu := GetBenchmarkMutex(b)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if ptr, err := GetFieldPointerOf(b, "importPath"); err == nil {
return *(*string)(ptr)
}
return ""
}
func GetBenchmarkHasSub(b *testing.B) int32 {
mu := GetBenchmarkMutex(b)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if ptr, err := GetFieldPointerOf(b, "hasSub"); err == nil {
return *(*int32)(ptr)
}
return 0
}
//Get benchmark result from the private result field in testing.B
func GetBenchmarkResult(b *testing.B) (*testing.BenchmarkResult, error) {
mu := GetBenchmarkMutex(b)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if ptr, err := GetFieldPointerOf(b, "result"); err == nil {
return (*testing.BenchmarkResult)(ptr), nil
} else {
return nil, err
}
}
// Mark the current test as skipped and finished without exit the current goroutine
func SkipAndFinishTest(t *testing.T) {
mu := GetTestMutex(t)
if mu != nil {
mu.Lock()
defer mu.Unlock()
}
if pointer, err := GetFieldPointerOf(t, "skipped"); err == nil {
*(*bool)(pointer) = true
}
if pointer, err := GetFieldPointerOf(t, "finished"); err == nil {
*(*bool)(pointer) = true
}
}