Files
beads/cmd/bd/import_mtime_test.go
Charles P. Cross 04a1996fd9 fix: Fix daemon export leaving JSONL newer than database (issues #301, #321)
After daemon auto-export, JSONL mtime could be newer than database mtime
due to SQLite WAL mode not updating beads.db until checkpoint. This caused
validatePreExport to incorrectly block subsequent exports with "JSONL is
newer than database" error, leading to daemon shutdown.

Solution: Call TouchDatabaseFile after all export operations to ensure
database mtime >= JSONL mtime. This prevents false positives in validation
2025-11-19 05:06:12 -05:00

89 lines
2.4 KiB
Go

package main
import (
"os"
"path/filepath"
"testing"
"time"
)
// TestTouchDatabaseFile verifies the TouchDatabaseFile helper function
func TestTouchDatabaseFile(t *testing.T) {
tmpDir := t.TempDir()
testFile := filepath.Join(tmpDir, "test.db")
// Create a test file
if err := os.WriteFile(testFile, []byte("test"), 0600); err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
// Get initial mtime
infoBefore, err := os.Stat(testFile)
if err != nil {
t.Fatalf("Failed to stat file: %v", err)
}
// Wait a bit to ensure mtime difference (1s for filesystems with coarse resolution)
time.Sleep(1 * time.Second)
// Touch the file
if err := TouchDatabaseFile(testFile, ""); err != nil {
t.Fatalf("TouchDatabaseFile failed: %v", err)
}
// Get new mtime
infoAfter, err := os.Stat(testFile)
if err != nil {
t.Fatalf("Failed to stat file after touch: %v", err)
}
// Verify mtime was updated
if !infoAfter.ModTime().After(infoBefore.ModTime()) {
t.Errorf("File mtime should be updated after touch")
}
}
// TestTouchDatabaseFileWithClockSkew verifies handling of future JSONL timestamps
func TestTouchDatabaseFileWithClockSkew(t *testing.T) {
tmpDir := t.TempDir()
dbFile := filepath.Join(tmpDir, "test.db")
jsonlFile := filepath.Join(tmpDir, "issues.jsonl")
// Create test files
if err := os.WriteFile(dbFile, []byte("db"), 0600); err != nil {
t.Fatalf("Failed to create db file: %v", err)
}
if err := os.WriteFile(jsonlFile, []byte("jsonl"), 0600); err != nil {
t.Fatalf("Failed to create jsonl file: %v", err)
}
// Set JSONL mtime to 1 hour in the future (simulating clock skew)
futureTime := time.Now().Add(1 * time.Hour)
if err := os.Chtimes(jsonlFile, futureTime, futureTime); err != nil {
t.Fatalf("Failed to set future mtime: %v", err)
}
// Touch the DB file with JSONL path
if err := TouchDatabaseFile(dbFile, jsonlFile); err != nil {
t.Fatalf("TouchDatabaseFile failed: %v", err)
}
// Get DB mtime
dbInfo, err := os.Stat(dbFile)
if err != nil {
t.Fatalf("Failed to stat db file: %v", err)
}
jsonlInfo, err := os.Stat(jsonlFile)
if err != nil {
t.Fatalf("Failed to stat jsonl file: %v", err)
}
// Verify DB mtime is at least as new as JSONL mtime
// (should be JSONL mtime + 1ns to handle clock skew)
if dbInfo.ModTime().Before(jsonlInfo.ModTime()) {
t.Errorf("DB mtime should be >= JSONL mtime when JSONL is in future")
t.Errorf("DB mtime: %v, JSONL mtime: %v", dbInfo.ModTime(), jsonlInfo.ModTime())
}
}