-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuilder_test.go
117 lines (109 loc) · 1.84 KB
/
builder_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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package mocker
import (
"runtime/debug"
"testing"
"github.com/stretchr/testify/suite"
)
func TestBuilderTestSuite(t *testing.T) {
suite.Run(t, new(builderTestSuite))
}
type builderTestSuite struct {
suite.Suite
}
func (s *builderTestSuite) TestBuilder_reset2CurPkg() {
tests := []struct {
name string
wants string
}{{
name: "reset to current package",
wants: "github.com/tencent/goom",
}}
s.Run("success", func() {
for _, tt := range tests {
s.Run(tt.name, func() {
b := Create()
s.Equal(b.pkgName, tt.wants)
b.Func(fake)
s.Equal(b.pkgName, tt.wants)
})
}
})
}
func (s *builderTestSuite) Test_currentPackage() {
tests := []struct {
name string
want string
}{
{
name: "get current package name",
want: "testing",
},
}
for _, tt := range tests {
s.Run(tt.name, func() {
// called by testing.tRunner()
if got := currentPackage(); got != tt.want {
if !s.Equal(got, tt.want) {
debug.PrintStack()
}
}
})
}
}
func (s *builderTestSuite) Test_currentPkg() {
type args struct {
skip int
}
tests := []struct {
name string
args args
want string
}{
{
name: "skip 4",
args: args{
skip: 4,
},
want: "runtime",
},
{
name: "skip 3",
args: args{
skip: 3,
},
want: "testing",
},
{
name: "skip 2",
args: args{
skip: 2,
},
want: "github.com/stretchr/testify/suite",
},
{
name: "skip 1(current package)",
args: args{
skip: 1,
},
want: "github.com/tencent/goom",
},
{
name: "skip 0(currentPkg define in package)",
args: args{
skip: 0,
},
want: "github.com/tencent/goom",
},
}
for _, tt := range tests {
s.Run(tt.name, func() {
if got := currentPkg(tt.args.skip); got != tt.want {
if !s.Equal(got, tt.want) {
debug.PrintStack()
}
}
})
}
}
// fake 模拟函数
func fake() {}