-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto_struct_test.go
89 lines (75 loc) · 1.96 KB
/
auto_struct_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
package inversify
import (
"testing"
"github.com/stretchr/testify/suite"
)
type config struct{ val int }
type iTaskRepository interface{}
type iTaskRepositoryImpl struct{ val int }
type iScheduler interface{}
type iSchedulerImpl struct{}
// autowireTestStruct .
type autowireTestStruct struct {
Values1 map[string]interface{} `inversify:"strkey:values1"`
Values2 string `inversify:"strkey:values2,optional"`
Value1 int `inversify:"intkey:1,named:another"`
Value2 int `inversify:"intkey:1,optional"`
Config *config `inversify:""`
TaskRepository iTaskRepository `inversify:""`
Scheduler iScheduler `inversify:"optional"`
}
type AutowireStructTestSuite struct {
suite.Suite
}
func (t *AutowireStructTestSuite) TestBasic() {
c := NewContainer("base")
c.Bind("values1").To(map[string]interface{}{
"value1": "1",
"value2": "2",
})
c.Bind((*config)(nil)).To(&config{1})
c.Bind((*iTaskRepository)(nil)).ToFactory(func() (Any, error) {
return &iTaskRepositoryImpl{
val: 2,
}, nil
})
c.Bind(1, "another").To(1000)
c.Build()
s := autowireTestStruct{}
err := AutowireStruct(c, &s)
t.NoError(err)
t.NotNil(s.Values1)
t.Equal("", s.Values2)
t.Equal(1000, s.Value1)
t.NotNil(s.TaskRepository)
t.Nil(s.Scheduler)
t.NotNil(s.Config)
}
func TestAutowireStructSuite(t *testing.T) {
suite.Run(t, new(AutowireStructTestSuite))
}
func BenchmarkContainerAutowireStructure(b *testing.B) {
c := NewContainer("base")
c.Bind("values1").To(map[string]interface{}{
"value1": "1",
"value2": "2",
})
c.Bind((*config)(nil)).To(&config{1})
c.Bind((*iTaskRepository)(nil)).ToFactory(func() (Any, error) {
return &iTaskRepositoryImpl{
val: 2,
}, nil
})
c.Bind(1, "another").To(1000)
c.Build()
s := autowireTestStruct{}
b.ReportAllocs()
b.StartTimer()
for i := 0; i < b.N; i++ {
s.Config = nil
s.Scheduler = nil
s.TaskRepository = nil
AutowireStruct(c, &s)
}
b.StopTimer()
}