Files
dance-lessons-coach/pkg/bdd/context/config_context.go
Gabriel Radureau de2e03519e
Some checks failed
CI/CD Pipeline / Build Docker Cache (push) Successful in 9s
CI/CD Pipeline / CI Pipeline (push) Failing after 3m5s
🎯 refactor: implement comprehensive BDD test suite with modular architecture
 feat: add feature-based test organization per ADR 0024
🐛 fix: resolve compilation errors in suite_feature.go
📝 docs: add comprehensive BDD framework documentation
♻️ refactor: split monolithic tests into modular features
🧪 test: implement synchronization helpers and context management
 perf: add parallel test execution capability
🔧 chore: add feature-specific test scripts and validation
📚 docs: move BDD_TAGS.md to features/ for better organization

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-04-10 00:10:06 +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
}