File tree 7 files changed +45
-7
lines changed
7 files changed +45
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## [ Unreleased]
8
- - Back to development.
8
+ ### Added
9
+ - Value groups can use the ` flatten ` option to indicate values in a slice should
10
+ be provided individually rather than providing the slice itself. See package
11
+ documentation for details.
9
12
10
13
## [ 1.10.0] - 2019-11-20
11
14
### Added
Original file line number Diff line number Diff line change @@ -64,6 +64,10 @@ type Annotated struct {
64
64
// by the constructor. For more information on value groups, see the package documentation.
65
65
//
66
66
// A group option may not be provided if a name option is provided.
67
+ //
68
+ // Similar to group tags, the group name may be followed by a `,flatten`
69
+ // option to indicate that each element in the slice returned by the
70
+ // constructor should be injected into the value group individually.
67
71
Group string
68
72
69
73
// Target is the constructor being annotated with fx.Annotated.
Original file line number Diff line number Diff line change @@ -141,6 +141,26 @@ func TestNewApp(t *testing.T) {
141
141
require .NoError (t , app .Err ())
142
142
})
143
143
144
+ t .Run ("ProvidesWithAnnotateFlattened" , func (t * testing.T ) {
145
+ app := fxtest .New (t ,
146
+ Provide (Annotated {
147
+ Target : func () []int { return []int {1 } },
148
+ Group : "foo,flatten" ,
149
+ }),
150
+ Invoke (
151
+ func (b struct {
152
+ In
153
+ Foos []int `group:"foo"`
154
+ }) {
155
+ assert .Len (t , b .Foos , 1 )
156
+ },
157
+ ),
158
+ )
159
+
160
+ defer app .RequireStart ().RequireStop ()
161
+ require .NoError (t , app .Err ())
162
+ })
163
+
144
164
t .Run ("ProvidesWithEmptyAnnotate" , func (t * testing.T ) {
145
165
type A struct {}
146
166
@@ -250,7 +270,7 @@ func TestInvokes(t *testing.T) {
250
270
)
251
271
err := app .Err ()
252
272
require .Error (t , err )
253
- assert .Contains (t , err .Error (), "fx_test.A is not in the container " )
273
+ assert .Contains (t , err .Error (), "missing type: fx_test.A" )
254
274
})
255
275
256
276
t .Run ("ErrorHooksAreCalled" , func (t * testing.T ) {
Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/stretchr/testify v1.4.0
7
- go.uber.org/dig v1.8 .0
7
+ go.uber.org/dig v1.9 .0
8
8
go.uber.org/goleak v0.10.0
9
9
go.uber.org/multierr v1.4.0
10
10
golang.org/x/lint v0.0.0-20190930215403-16217165b5de
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJy
20
20
github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
21
21
go.uber.org/atomic v1.5.0 h1:OI5t8sDa1Or+q8AeE+yKeB/SDYioSHAgcVljj9JIETY =
22
22
go.uber.org/atomic v1.5.0 /go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ =
23
- go.uber.org/dig v1.8 .0 h1:1rR6hnL/bu1EVcjnRDN5kx1vbIjEJDTGhSQ2B3ddpcI =
24
- go.uber.org/dig v1.8 .0 /go.mod h1:X34SnWGr8Fyla9zQNO2GSO2D+TIuqB14OS8JhYocIyw =
23
+ go.uber.org/dig v1.9 .0 h1:pJTDXKEhRqBI8W7rU7kwT5EgyRZuSMVSFcZolOvKK9U =
24
+ go.uber.org/dig v1.9 .0 /go.mod h1:X34SnWGr8Fyla9zQNO2GSO2D+TIuqB14OS8JhYocIyw =
25
25
go.uber.org/goleak v0.10.0 h1:G3eWbSNIskeRqtsN/1uI5B+eP73y3JUuBsv9AZjehb4 =
26
26
go.uber.org/goleak v0.10.0 /go.mod h1:VCZuO8V8mFPlL0F5J5GK1rtHV3DrFcQ1R8ryq7FK0aI =
27
27
go.uber.org/multierr v1.4.0 h1:f3WCSC2KzAcBXGATIxAB1E2XuCpNU255wNKZ505qi3E =
Original file line number Diff line number Diff line change @@ -251,4 +251,15 @@ type In struct{ dig.In }
251
251
// value groups require parameter and result structs to use fields with
252
252
// different types: if a group of constructors each returns type T, parameter
253
253
// structs consuming the group must use a field of type []T.
254
+ //
255
+ // To provide multiple values for a group from a result struct, produce a
256
+ // slice and use the `,flatten` option on the group tag. This indicates that
257
+ // each element in the slice should be injected into the group individually.
258
+ //
259
+ // type IntResult struct {
260
+ // fx.Out
261
+ //
262
+ // Handler []int `group:"server"` // Consume as [][]int
263
+ // Handler []int `group:"server,flatten"` // Consume as []int
264
+ // }
254
265
type Out struct { dig.Out }
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ func TestPopulateErrors(t *testing.T) {
208
208
{
209
209
msg : "container pointer without fx.In" ,
210
210
opt : Populate (& containerNoIn {}),
211
- wantErr : "is not in the container " ,
211
+ wantErr : "missing type: fx_test.containerNoIn " ,
212
212
},
213
213
{
214
214
msg : "function" ,
@@ -218,7 +218,7 @@ func TestPopulateErrors(t *testing.T) {
218
218
{
219
219
msg : "function pointer" ,
220
220
opt : Populate (& fn ),
221
- wantErr : "is not in the container " ,
221
+ wantErr : "missing type: func() " ,
222
222
},
223
223
{
224
224
msg : "invalid last argument" ,
You can’t perform that action at this time.
0 commit comments