mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-22 04:31:26 +02:00
Remove the AppConfigMiddleware that stored an app-config resolver in the request context and the FromCtx helper that read it back downstream. Handlers now load the app config from AppConfigService and pass it as an explicit argument to the service methods that need it, which then forward it further down the call chain. The webauthn and usersignup modules gain an AppConfigResolver dependency so their handlers can load the config the same way. The email SendEmail and LDAP SyncAll helpers drop their context-based variants in favor of the explicit-config versions. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YZ6SoJpmnLggZqactXxrak
28 lines
771 B
Go
28 lines
771 B
Go
//go:build unit
|
|
|
|
// This file contains utils for unit tests and it's only built when the "unit" tag is set
|
|
package appconfig
|
|
|
|
// NewTestAppConfigService is a function used by tests to create AppConfigService objects with pre-defined configuration values
|
|
func NewTestAppConfigService(config *AppConfigModel) *AppConfigService {
|
|
if config == nil {
|
|
// If there's no config, set the default one
|
|
config = getDefaultConfig()
|
|
}
|
|
|
|
service := &AppConfigService{
|
|
envConfig: config,
|
|
}
|
|
|
|
return service
|
|
}
|
|
|
|
// NewTestConfig returns an application configuration for use in tests, falling back to the default configuration when none is provided
|
|
func NewTestConfig(config *AppConfigModel) *AppConfigModel {
|
|
if config == nil {
|
|
config = getDefaultConfig()
|
|
}
|
|
|
|
return config
|
|
}
|