generated from xmidt-org/.go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxtest_suite_test.go
80 lines (67 loc) · 1.43 KB
/
fxtest_suite_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
// SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package touchstone
import (
"testing"
"github.com/stretchr/testify/suite"
"go.uber.org/fx"
"go.uber.org/fx/fxtest"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
type writeSyncer struct {
t *testing.T
}
func (ws writeSyncer) Write(b []byte) (int, error) {
ws.t.Log(string(b))
return len(b), nil
}
func (ws writeSyncer) Sync() error { return nil }
// FxTestSuite provides common behaviors around the setup of a fxtest app
// for touchstone testing.
type FxTestSuite struct {
suite.Suite
logger *zap.Logger
}
func (suite *FxTestSuite) BeforeTest(suiteName, testName string) {
suite.logger = zap.New(
zapcore.NewCore(
zapcore.NewConsoleEncoder(
zapcore.EncoderConfig{
MessageKey: "msg",
LevelKey: "level",
EncodeLevel: zapcore.LowercaseLevelEncoder,
},
),
writeSyncer{t: suite.T()},
zapcore.ErrorLevel,
),
zap.Fields(
zap.String("suite", suiteName),
zap.String("test", testName),
),
)
}
func (suite *FxTestSuite) newTestApp(options ...fx.Option) *fxtest.App {
app := fxtest.New(
suite.T(),
append(
[]fx.Option{
fx.Supply(suite.logger),
},
options...,
)...,
)
return app
}
func (suite *FxTestSuite) newApp(options ...fx.Option) *fx.App {
app := fx.New(
append(
[]fx.Option{
fx.Supply(suite.logger),
},
options...,
)...,
)
return app
}