- Add testutil.TempDirInMemory() using /dev/shm on Linux for 20-30% I/O speedup - Update slow hash multiclone tests to use in-memory filesystem - Convert 17 scripttest tests (~200+s) to fast CLI tests (31s) with --no-daemon - Disable slow scripttest suite behind build tag - Add README_TESTING.md documenting test strategy and optimizations - Update CI to use -short flag for PR checks, full tests nightly Results: - TestHashIDs_* reduced from ~20s to ~11s (45% reduction) - Scripttest suite eliminated from default runs (massive speedup) - Total integration test time significantly reduced Closes bd-gm7p, bd-l5gq Amp-Thread-ID: https://ampcode.com/threads/T-c2b9434a-cd29-4725-b8e0-cbea50b36fe2 Co-authored-by: Amp <amp@ampcode.com>
64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
package testutil
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestTempDirInMemory(t *testing.T) {
|
|
tmpDir := TempDirInMemory(t)
|
|
|
|
// Verify directory exists
|
|
if stat, err := os.Stat(tmpDir); err != nil || !stat.IsDir() {
|
|
t.Fatalf("TempDirInMemory() did not create valid directory: %v", err)
|
|
}
|
|
|
|
// Verify it's a beads test directory
|
|
if !strings.Contains(filepath.Base(tmpDir), "beads-test") {
|
|
t.Errorf("Expected directory name to contain 'beads-test', got: %s", tmpDir)
|
|
}
|
|
|
|
// On Linux CI, verify we're using /dev/shm if available
|
|
if runtime.GOOS == "linux" {
|
|
if stat, err := os.Stat("/dev/shm"); err == nil && stat.IsDir() {
|
|
if !strings.HasPrefix(tmpDir, "/dev/shm") {
|
|
t.Errorf("On Linux with /dev/shm available, expected tmpDir to use it, got: %s", tmpDir)
|
|
} else {
|
|
t.Logf("✓ Using tmpfs ramdisk: %s", tmpDir)
|
|
}
|
|
}
|
|
} else {
|
|
t.Logf("Platform: %s, using standard temp: %s", runtime.GOOS, tmpDir)
|
|
}
|
|
|
|
// Verify cleanup happens
|
|
testFile := filepath.Join(tmpDir, "test.txt")
|
|
if err := os.WriteFile(testFile, []byte("test"), 0644); err != nil {
|
|
t.Fatalf("Failed to write test file: %v", err)
|
|
}
|
|
|
|
if _, err := os.Stat(testFile); err != nil {
|
|
t.Fatalf("Test file should exist: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestTempDirInMemory_Cleanup(t *testing.T) {
|
|
var tmpDir string
|
|
|
|
// Run in subtest to trigger cleanup
|
|
t.Run("create", func(t *testing.T) {
|
|
tmpDir = TempDirInMemory(t)
|
|
if err := os.WriteFile(filepath.Join(tmpDir, "data"), []byte("test"), 0644); err != nil {
|
|
t.Fatalf("Failed to write file: %v", err)
|
|
}
|
|
})
|
|
|
|
// After subtest completes, cleanup should have run
|
|
if _, err := os.Stat(tmpDir); !os.IsNotExist(err) {
|
|
t.Errorf("Expected tmpDir to be cleaned up, but it still exists: %s", tmpDir)
|
|
}
|
|
}
|