forked from uber-go/fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inout_test.go
131 lines (111 loc) · 3.53 KB
/
inout_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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package fx_test
import (
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/dig"
"go.uber.org/fx"
"go.uber.org/fx/fxtest"
)
func TestIn(t *testing.T) {
type in struct {
fx.In
}
assert.True(t, dig.IsIn(in{}), "Expected dig.In to work with fx.In")
}
func TestOut(t *testing.T) {
type out struct {
fx.Out
}
assert.True(t, dig.IsOut(out{}), "expected dig.Out to work with fx.Out")
}
func TestOptionalTypes(t *testing.T) {
type foo struct{}
newFoo := func() *foo { return &foo{} }
type bar struct{}
newBar := func() *bar { return &bar{} }
type in struct {
fx.In
Foo *foo
Bar *bar `optional:"true"`
}
t.Run("NotProvided", func(t *testing.T) {
ran := false
app := fxtest.New(t, fx.Provide(newFoo), fx.Invoke(func(in in) {
assert.NotNil(t, in.Foo, "foo was not optional and provided, expected not nil")
assert.Nil(t, in.Bar, "bar was optional and not provided, expected nil")
ran = true
}))
app.RequireStart().RequireStop()
assert.True(t, ran, "expected invoke to run")
})
t.Run("Provided", func(t *testing.T) {
ran := false
app := fxtest.New(t, fx.Provide(newFoo, newBar), fx.Invoke(func(in in) {
assert.NotNil(t, in.Foo, "foo was not optional and provided, expected not nil")
assert.NotNil(t, in.Bar, "bar was optional and provided, expected not nil")
ran = true
}))
app.RequireStart().RequireStop()
assert.True(t, ran, "expected invoke to run")
})
}
func TestNamedTypes(t *testing.T) {
type a struct {
name string
}
// a constructor that returns the type a with name "foo"
type fooOut struct {
fx.Out
A *a `name:"foo"`
}
newFoo := func() fooOut {
return fooOut{
A: &a{name: "foo"},
}
}
// another constructor that returns the same type a with name "bar"
type barOut struct {
fx.Out
A *a `name:"bar"`
}
newBar := func() barOut {
return barOut{
A: &a{name: "bar"},
}
}
// invoke with an fx.In that resolves both named types
type in struct {
fx.In
Foo *a `name:"foo"`
Bar *a `name:"bar"`
}
ran := false
app := fxtest.New(t, fx.Provide(newFoo, newBar), fx.Invoke(func(in in) {
assert.NotNil(t, in.Foo, "expected in.Foo to be injected")
assert.Equal(t, "foo", in.Foo.name, "expected to get type 'a' of name 'foo'")
assert.NotNil(t, in.Bar, "expected in.Bar to be injected")
assert.Equal(t, "bar", in.Bar.name, "expected to get a type 'a' of name 'bar'")
ran = true
}))
app.RequireStart().RequireStop()
assert.True(t, ran, "expected invoke to run")
}