-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontainer_test.go
More file actions
217 lines (183 loc) · 3.86 KB
/
container_test.go
File metadata and controls
217 lines (183 loc) · 3.86 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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package xdi
import (
"errors"
"fmt"
"github.com/stretchr/testify/assert"
"net/http"
"sync"
"testing"
"time"
)
type foo struct {
Bar string
Client *http.Client
}
func TestPopulate(t *testing.T) {
a := assert.New(t)
c := New()
objs := []*Object{
{
Name: "client",
New: func() (i interface{}, e error) {
timeout := time.Second * 10
return &http.Client{
Timeout: timeout,
}, nil
},
},
{
Name: "foo",
New: func() (i interface{}, e error) {
var hc *http.Client
if err := c.Populate("client", &hc); err != nil {
panic(err)
}
return &foo{
Bar: "",
Client: hc,
}, nil
},
},
{
Name: "bar",
New: func() (i interface{}, e error) {
return nil, errors.New("error")
},
},
}
_ = c.Provide(objs...)
// 测试单例
var f1 *foo
_ = c.Populate("foo", &f1)
var f2 *foo
_ = c.Populate("foo", &f2)
a.Equal(fmt.Sprintf("%p", f1), fmt.Sprintf("%p", f2))
// 错误使用测试
var f3 foo
err := c.Populate("foo", f3) // 非指针
a.Contains(err.Error(), "argument can only be pointer type")
var f4 foo
err = c.Populate("foo", &f4) // New函数返回的指针,但是f4为引用 [panic: reflect.Set: value of type *xdi.foo is not assignable to type xdi.foo]
a.Contains(err.Error(), "value of type *xdi.foo is not assignable to type xdi.foo")
// 测试嵌套依赖
var f *foo
_ = c.Populate("foo", &f)
text := fmt.Sprintf("%#v \n", f.Client)
a.Contains(text, "Timeout:10000000000")
// 测试多次失败场景
var i interface{}
err = c.Populate("bar", &i)
a.Equal(err, errors.New("error"))
err = c.Populate("bar", &i)
a.Equal(err, errors.New("error"))
}
func TestSingletonConcurrency(t *testing.T) {
a := assert.New(t)
c := New()
objs := []*Object{
{
Name: "foo",
New: func() (i interface{}, e error) {
return &foo{
Bar: "",
}, nil
},
},
}
_ = c.Provide(objs...)
for i := 0; i < 1000; i++ {
var mp sync.Map
wg := &sync.WaitGroup{}
for i := 0; i < 100; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup, i int) {
defer wg.Done()
var f *foo
_ = c.Populate("foo", &f)
mp.Store(i, f)
}(wg, i)
}
wg.Wait()
ptrs := []interface{}{}
mp.Range(func(key, value interface{}) bool {
ptrs = append(ptrs, fmt.Sprintf("%p", value))
return true
})
//fmt.Println(ptrs...)
a.Equal(ptrs[0], ptrs[1], ptrs[2:]...)
}
}
func TestSingletonConcurrencyError(t *testing.T) {
a := assert.New(t)
c := New()
objs := []*Object{
{
Name: "foo",
New: func() (i interface{}, e error) {
return nil, errors.New("new error")
},
},
}
_ = c.Provide(objs...)
for i := 0; i < 1000; i++ {
var mp sync.Map
wg := &sync.WaitGroup{}
for i := 0; i < 100; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup, i int) {
defer wg.Done()
var f *foo
_ = c.Populate("foo", &f)
mp.Store(i, f)
}(wg, i)
}
wg.Wait()
ptrs := []interface{}{}
mp.Range(func(key, value interface{}) bool {
ptrs = append(ptrs, fmt.Sprintf("%p", value))
return true
})
//fmt.Println(ptrs...)
a.Equal(ptrs[0], ptrs[1], ptrs[2:]...)
}
}
func TestSingletonConcurrencyRefresh(t *testing.T) {
a := assert.New(t)
c := New()
objs := []*Object{
{
Name: "foo",
New: func() (i interface{}, e error) {
return &foo{
Bar: "",
}, nil
},
},
}
_ = c.Provide(objs...)
for i := 0; i < 1000; i++ {
var mp sync.Map
wg := &sync.WaitGroup{}
var f *foo
_ = c.Populate("foo", &f)
o, _ := c.Object("foo")
_ = o.Refresh()
for i := 0; i < 100; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup, i int) {
defer wg.Done()
var f *foo
_ = c.Populate("foo", &f)
mp.Store(i, f)
}(wg, i)
}
wg.Wait()
ptrs := []interface{}{}
mp.Range(func(key, value interface{}) bool {
ptrs = append(ptrs, fmt.Sprintf("%p", value))
return true
})
//fmt.Println(ptrs...)
a.Equal(ptrs[0], ptrs[1], ptrs[2:]...)
}
}