diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-13 08:09:33 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-13 08:10:16 +0300 |
| commit | f2dd8d8a515c1a2a220836231ad1a671a5e9b73d (patch) | |
| tree | 5b19585afb01b60d03d24a96b57bc7b986ea4cc0 /internal/askcli/runlock_stale_linux_test.go | |
| parent | 56002ff942de1bfb0ce467ec37a692b8c4ca01e9 (diff) | |
ask: serialize concurrent CLI with repo lock and stale PID recovery
Add advisory lock under .git/hexai-ask.lock around Taskwarrior execution,
with metadata (PID and process basename) and Linux /proc comm checks to
remove orphan lock files when the recorded holder is gone or not ask.
Extract internal/filelock for shared flock helpers; stats uses it too.
Made-with: Cursor
Diffstat (limited to 'internal/askcli/runlock_stale_linux_test.go')
| -rw-r--r-- | internal/askcli/runlock_stale_linux_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/internal/askcli/runlock_stale_linux_test.go b/internal/askcli/runlock_stale_linux_test.go new file mode 100644 index 0000000..7c581fb --- /dev/null +++ b/internal/askcli/runlock_stale_linux_test.go @@ -0,0 +1,19 @@ +//go:build linux + +package askcli + +import ( + "os/exec" + "testing" +) + +func TestLockHolderIsStale_NonAskLiveProcess(t *testing.T) { + cmd := exec.Command("sleep", "60") + if err := cmd.Start(); err != nil { + t.Skip("sleep not available:", err) + } + defer func() { _ = cmd.Process.Kill() }() + if !lockHolderIsStale(cmd.Process.Pid, "ask") { + t.Fatal("expected sleep process to be stale when expecting ask") + } +} |
