feat: Complete MEDIUM priority security features with testing

- Implemented TUI auto-select for automated testing
- Fixed TUI automation: autoSelectMsg handling in Update()
- Auto-database selection in DatabaseSelector
- Created focused test suite (test_as_postgres.sh)
- Created retention policy test (test_retention.sh)
- All 10 security tests passing

Features validated:
 Backup retention policy (30 days, min backups)
 Rate limiting (exponential backoff)
 Privilege checks (root detection)
 Resource limit validation
 Path sanitization
 Checksum verification (SHA-256)
 Audit logging
 Secure permissions
 Configuration persistence
 TUI automation framework

Test results: 10/10 passed
Backup files created with .dump, .sha256, .info
Retention cleanup verified (old files removed)
This commit is contained in:
2025-11-25 15:25:56 +00:00
parent 86eee44d14
commit 0cf21cd893
77 changed files with 1319 additions and 4 deletions

0
cmd/backup.go Normal file → Executable file
View File

0
cmd/backup_impl.go Normal file → Executable file
View File

0
cmd/cpu.go Normal file → Executable file
View File

45
cmd/placeholder.go Normal file → Executable file
View File

@@ -44,9 +44,27 @@ var listCmd = &cobra.Command{
var interactiveCmd = &cobra.Command{
Use: "interactive",
Short: "Start interactive menu mode",
Long: `Start the interactive menu system for guided backup operations.`,
Long: `Start the interactive menu system for guided backup operations.
TUI Automation Flags (for testing and CI/CD):
--auto-select <index> Automatically select menu option (0-13)
--auto-database <name> Pre-fill database name in prompts
--auto-confirm Auto-confirm all prompts (no user interaction)
--dry-run Simulate operations without execution
--verbose-tui Enable detailed TUI event logging
--tui-log-file <path> Write TUI events to log file`,
Aliases: []string{"menu", "ui"},
RunE: func(cmd *cobra.Command, args []string) error {
// Parse TUI automation flags into config
cfg.TUIAutoSelect, _ = cmd.Flags().GetInt("auto-select")
cfg.TUIAutoDatabase, _ = cmd.Flags().GetString("auto-database")
cfg.TUIAutoHost, _ = cmd.Flags().GetString("auto-host")
cfg.TUIAutoPort, _ = cmd.Flags().GetInt("auto-port")
cfg.TUIAutoConfirm, _ = cmd.Flags().GetBool("auto-confirm")
cfg.TUIDryRun, _ = cmd.Flags().GetBool("dry-run")
cfg.TUIVerbose, _ = cmd.Flags().GetBool("verbose-tui")
cfg.TUILogFile, _ = cmd.Flags().GetString("tui-log-file")
// Check authentication before starting TUI
if cfg.IsPostgreSQL() {
if mismatch, msg := auth.CheckAuthenticationMismatch(cfg); mismatch {
@@ -55,12 +73,31 @@ var interactiveCmd = &cobra.Command{
}
}
// Start the interactive TUI with silent logger to prevent console output conflicts
silentLog := logger.NewSilent()
return tui.RunInteractiveMenu(cfg, silentLog)
// Use verbose logger if TUI verbose mode enabled
var interactiveLog logger.Logger
if cfg.TUIVerbose {
interactiveLog = log
} else {
interactiveLog = logger.NewSilent()
}
// Start the interactive TUI
return tui.RunInteractiveMenu(cfg, interactiveLog)
},
}
func init() {
// TUI automation flags (for testing and automation)
interactiveCmd.Flags().Int("auto-select", -1, "Auto-select menu option (0-13, -1=disabled)")
interactiveCmd.Flags().String("auto-database", "", "Pre-fill database name")
interactiveCmd.Flags().String("auto-host", "", "Pre-fill host")
interactiveCmd.Flags().Int("auto-port", 0, "Pre-fill port (0=use default)")
interactiveCmd.Flags().Bool("auto-confirm", false, "Auto-confirm all prompts")
interactiveCmd.Flags().Bool("dry-run", false, "Simulate operations without execution")
interactiveCmd.Flags().Bool("verbose-tui", false, "Enable verbose TUI logging")
interactiveCmd.Flags().String("tui-log-file", "", "Write TUI events to file")
}
var preflightCmd = &cobra.Command{
Use: "preflight",
Short: "Run preflight checks",

0
cmd/restore.go Normal file → Executable file
View File

0
cmd/root.go Normal file → Executable file
View File

0
cmd/status.go Normal file → Executable file
View File