-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication_helpers_test.go
More file actions
230 lines (193 loc) · 5.24 KB
/
application_helpers_test.go
File metadata and controls
230 lines (193 loc) · 5.24 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
218
219
220
221
222
223
224
225
226
227
228
229
230
package modular
import (
"context"
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"testing"
)
// testCfg for basic configuration testing
type testCfg struct {
Str string `yaml:"str"`
Num int `yaml:"num"`
}
// logger for testing with caller information
type logger struct {
t *testing.T
}
func (l *logger) getCallerInfo() string {
_, file, line, ok := runtime.Caller(2)
if !ok {
return "unknown"
}
wd, err := os.Getwd()
if err != nil {
wd = "."
}
relPath, err := filepath.Rel(wd, file)
if err != nil {
relPath = file
}
return fmt.Sprintf("%s:%d", relPath, line)
}
func (l *logger) Info(msg string, args ...any) {
dir := l.getCallerInfo()
l.t.Log(fmt.Sprintf("[%s] %s", dir, msg), args)
}
func (l *logger) Error(msg string, args ...any) {
dir := l.getCallerInfo()
l.t.Error(fmt.Sprintf("[%s] %s", dir, msg), args)
}
func (l *logger) Warn(msg string, args ...any) {
dir := l.getCallerInfo()
l.t.Log(fmt.Sprintf("[%s] %s", dir, msg), args)
}
func (l *logger) Debug(msg string, args ...any) {
dir := l.getCallerInfo()
l.t.Log(fmt.Sprintf("[%s] %s", dir, msg), args)
}
// initTestLogger for debug module tests
type initTestLogger struct {
t *testing.T
}
func (l *initTestLogger) Info(msg string, args ...any) {
if l.t != nil {
l.t.Logf("[INFO] %s", msg)
}
}
func (l *initTestLogger) Error(msg string, args ...any) {
if l.t != nil {
l.t.Logf("[ERROR] %s", msg)
}
}
func (l *initTestLogger) Warn(msg string, args ...any) {
if l.t != nil {
l.t.Logf("[WARN] %s", msg)
}
}
func (l *initTestLogger) Debug(msg string, args ...any) {
if l.t != nil {
l.t.Logf("[DEBUG] %s", msg)
}
}
// Helper function for testing AppConfigLoader
func testAppConfigLoader(app *StdApplication) error {
// Return error if config provider is nil
if app.cfgProvider == nil {
return ErrConfigProviderNil
}
// Return error if there's an "error-trigger" section
if _, exists := app.cfgSections["error-trigger"]; exists {
return ErrConfigSectionError
}
return nil
}
// Define test service interfaces and implementations
type StorageService interface {
Get(key string) string
}
type MockStorage struct {
data map[string]string
}
func (m *MockStorage) Get(key string) string {
return m.data[key]
}
// Create mock module implementation for testing
type testModule struct {
name string
dependencies []string
}
// Implement Module interface for our test module
func (m testModule) Name() string { return m.name }
func (m testModule) Dependencies() []string { return m.dependencies }
func (m testModule) Init(Application) error { return nil }
func (m testModule) Start(context.Context) error { return nil }
func (m testModule) Stop(context.Context) error { return nil }
func (m testModule) RegisterConfig(Application) error { return nil }
func (m testModule) ProvidesServices() []ServiceProvider { return nil }
func (m testModule) RequiresServices() []ServiceDependency { return nil }
// Mock module for testing configuration registration
type configRegisteringModule struct {
testModule
configRegistered bool
initCalled bool
initError error
}
func (m *configRegisteringModule) RegisterConfig(app Application) error {
app.RegisterConfigSection(m.name+"-config", NewStdConfigProvider(m.name+"-config-value"))
m.configRegistered = true
return nil
}
func (m *configRegisteringModule) Init(Application) error {
m.initCalled = true
return m.initError
}
// Mock module that provides services
type serviceProvidingModule struct {
testModule
services []ServiceProvider
}
func (m *serviceProvidingModule) ProvidesServices() []ServiceProvider {
return m.services
}
// Mock module that tracks lifecycle methods
type lifecycleTestModule struct {
testModule
initCalled bool
startCalled bool
stopCalled bool
startError error
stopError error
}
func (m *lifecycleTestModule) Init(Application) error {
m.initCalled = true
return nil
}
func (m *lifecycleTestModule) Start(context.Context) error {
m.startCalled = true
return m.startError
}
func (m *lifecycleTestModule) Stop(context.Context) error {
m.stopCalled = true
return m.stopError
}
// Helper for error checking
func IsServiceAlreadyRegisteredError(err error) bool {
return err != nil && ErrorIs(err, ErrServiceAlreadyRegistered)
}
func IsServiceNotFoundError(err error) bool {
return err != nil && ErrorIs(err, ErrServiceNotFound)
}
func IsServiceIncompatibleError(err error) bool {
return err != nil && ErrorIs(err, ErrServiceIncompatible)
}
func IsCircularDependencyError(err error) bool {
return err != nil && ErrorIs(err, ErrCircularDependency)
}
func IsModuleDependencyMissingError(err error) bool {
return err != nil && ErrorIs(err, ErrModuleDependencyMissing)
}
// ErrorIs is a helper function that checks if err contains target error
func ErrorIs(err, target error) bool {
// Simple implementation that checks if target is in err's chain
for {
if errors.Is(err, target) {
return true
}
if unwrapper, ok := err.(interface{ Unwrap() error }); ok {
err = unwrapper.Unwrap()
if err == nil {
return false
}
} else {
return false
}
}
}
// Placeholder errors for tests
var (
ErrModuleStartFailed = fmt.Errorf("module start failed")
ErrModuleStopFailed = fmt.Errorf("module stop failed")
)