Files
dance-lessons-coach/pkg/bdd/context/config_context.go
Gabriel Radureau 5eec64e5e8
All checks were successful
CI/CD Pipeline / Build Docker Cache (push) Successful in 9s
CI/CD Pipeline / CI Pipeline (push) Successful in 4m15s
CI/CD Pipeline / Trigger Docker Push (push) Has been skipped
🧪 test: add JWT secret rotation BDD scenarios and step implementations (#12)
 merge: implement JWT secret rotation with BDD scenario isolation

- Implement JWT secret rotation mechanism (closes #8)
- Add per-scenario state isolation for BDD tests (closes #14)
- Validate password reset workflow via BDD tests (closes #7)
- Fix port conflicts in test validation
- Add state tracer for debugging test execution
- Document BDD isolation strategies in ADR 0025
- Fix PostgreSQL configuration environment variables

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
Co-authored-by: Gabriel Radureau <arcodange@gmail.com>
Co-committed-by: Gabriel Radureau <arcodange@gmail.com>
2026-04-11 17:56:45 +02:00

51 lines
1.5 KiB
Go

package context
import (
"dance-lessons-coach/pkg/bdd/testserver"
"github.com/cucumber/godog"
)
// ConfigContext holds configuration-specific test context
type ConfigContext struct {
client *testserver.Client
configFilePath string
originalConfig string
}
// NewConfigContext creates a new config context
func NewConfigContext(client *testserver.Client) *ConfigContext {
return &ConfigContext{
client: client,
configFilePath: "test-config.yaml", // Default, will be overridden
}
}
// InitializeConfigContext initializes config-specific steps
func InitializeConfigContext(ctx *godog.ScenarioContext, client *testserver.Client) {
configCtx := NewConfigContext(client)
// Register config-specific steps
ctx.Step(`^the server is running with config file monitoring enabled$`, configCtx.theServerIsRunningWithConfigFileMonitoringEnabled)
ctx.Step(`^I update the logging level to "([^"]*)" in the config file$`, configCtx.iUpdateTheLoggingLevelToInTheConfigFile)
ctx.Step(`^the logging level should be updated without restart$`, configCtx.theLoggingLevelShouldBeUpdatedWithoutRestart)
// Add more config steps as needed...
}
// Step implementations
func (cc *ConfigContext) theServerIsRunningWithConfigFileMonitoringEnabled() error {
// Implementation would go here
return nil
}
func (cc *ConfigContext) iUpdateTheLoggingLevelToInTheConfigFile(level string) error {
// Implementation would go here
return nil
}
func (cc *ConfigContext) theLoggingLevelShouldBeUpdatedWithoutRestart() error {
// Implementation would go here
return nil
}