cmd/codeaf: TestHostedWelcomeCarriesUnreadProfileKeysToSurface fails under load — the conversation writes into its temp folder after the host closes
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 ngày
- Mức phù hợp với người mới
- 72/100
- Loại issue
- Lỗi
- Độ rõ ràng
- Đặc tả rõ ràng
- Mức độ hoạt động
- Sôi nổi
- Công nghệ
- go
- Lĩnh vực
- backend, testing-qa
Hướng nghiên cứu
Start with cmd/codeaf/chatv3_host_test.go and TestHostedWelcomeCarriesUnreadProfileKeysToSurface, then inspect v3TrackedAgent and remote.Loopback close behavior. Run the deterministic probe and the loaded -count=200 command. Done means no LATE writes, the stress loop passes three times, and every v3TrackedAgent use has a matching close.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
What happened
cmd/codeaf TestHostedWelcomeCarriesUnreadProfileKeysToSurface fails under load because the conversation it opens keeps writing into its temp folder after the test has closed it:
--- FAIL: TestHostedWelcomeCarriesUnreadProfileKeysToSurface (0.00s)
testing.go:1464: TempDir RemoveAll cleanup: unlinkat /tmp/TestHostedWelcomeCarriesUnreadProfileKeysToSurface3740933646/002/574f9f6350df202f: directory not empty
It was seen once in a make pr-ready run for #1410 (santos/dev2 at 19a5a77c5, 2026-09-24). It passed 200 of 200 runs alone and passed a full go test -count=1 ./cmd/codeaf rerun. The late write reproduces on the untouched santos/dev2 head 008363c98, so the merge that surfaced it did not cause it.
The test builds its agent with v3TrackedAgent(t, workspace), serves it through remote.Loopback and closes the loop in t.Cleanup, but it never closes the agent itself. A probe (below) found a write into the agent's place directory (002/<hash>) about 50 µs after loop.Close() returned. On a quiet box that write finishes before t.TempDir's RemoveAll. On a loaded box it lands during the removal.
Replication
Deterministic (no model). Drop this probe into cmd/codeaf as zz_hostprobe_test.go and run go test -count=1 -run TestProbeHostedWelcomeLateWrites -v ./cmd/codeaf. It prints LATE <path> <duration> after end for every file written after the close. There should be none, and today there is at least one under the place directory.
package main
import (
"io/fs"
"path/filepath"
"testing"
"time"
"github.com/Agent-Field/codeaf/internal/remote"
)
func TestProbeHostedWelcomeLateWrites(t *testing.T) {
workspace := t.TempDir()
agent := v3TrackedAgent(t, workspace)
loop, err := remote.Loopback(remote.Hello{Version: remote.Version, Workspace: workspace}, remote.Options{
Boot: func(remote.Hello) (*remote.Engine, error) {
return &remote.Engine{Agent: agent, Workspace: workspace, UnreadProfileKeys: []string{"models"}}, nil
},
})
if err != nil {
t.Fatal(err)
}
_, _ = hostOptions(onePipeFleet("devbox", loop.Client), loop.Client.Welcome(), false)
_ = loop.Close()
end := time.Now()
time.Sleep(3 * time.Second)
_ = filepath.WalkDir(filepath.Dir(workspace), func(p string, d fs.DirEntry, err error) error {
if err != nil {
return nil
}
if info, _ := d.Info(); info != nil && info.ModTime().After(end) {
t.Logf("LATE %s %v after end", p, info.ModTime().Sub(end))
}
return nil
})
}
The probe shows the late write on every run. The failure itself needs load, and how often it fails under load has not been measured. The recipe: with one busy loop per core (for i in $(seq "$(nproc)"); do yes >/dev/null & done), run GOMAXPROCS=2 go test -count=200 -run '^TestHostedWelcomeCarriesUnreadProfileKeysToSurface$' ./cmd/codeaf.
Field. Not needed. No model is involved.
Where
cmd/codeaf/chatv3_host_test.go,TestHostedWelcomeCarriesUnreadProfileKeysToSurface: noagent.Close()in its cleanup.v3TrackedAgent(the test helper), and whatever the agent orremote.Loopback's engine still writes into the place directory after the loop closes. That is the product half: a closed host should not write.
The fix
Closing the loopback host leaves nothing writing under the agent's place, or the host's Close waits for those writes. The test closes the agent it opened, before its temp folders are removed. Fixing only the test would hide the product half, so both are wanted.
Acceptance
- Unit: the probe above prints no
LATEline. - Unit (under load): the
-count=200loop above is green with one busy loop per core, three times in a row. - Sibling tests that build an agent with
v3TrackedAgentclose it; a grep forv3TrackedAgent(incmd/codeafshows a matching close for each one.
- Ngôn ngữ chính
- Go
- Star
- 115
- Fork
- 14
- Merge trung bình
- 9 giờ 38 phút
- Pull request đã merge (30 ngày)
- 730
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Issue khác của Agent-Field/CodeAF
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 82/100
Agent-Field/CodeAF#1489 ·
-
area:chat bug good first issue sev:papercut
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
Agent-Field/CodeAF#1470 ·
-
area:chat bug good first issue sev:papercut
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 85/100
Agent-Field/CodeAF#1469 ·
-
area:chat bug sev:papercut
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 88/100
Agent-Field/CodeAF#1468 ·
-
area:tests bug hygiene sev:papercut
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 84/100
Agent-Field/CodeAF#1460 ·
Tất cả issue của Agent-Field/CodeAF
Issue tương tự
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 84/100
-
Remove obsolete ipAllocationPolicy field from containernodepool-subnetworkref test dependency Đang mở
Độ khó 1/5 Dưới một giờ Mức phù hợp với người mới 92/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 84/100
microsoft/TypeScript#64453 ·
-
OpenAI-compatible endpoint: response ids have only 999 possible values (chatcmpl-rand.Intn(999)) Đang mở
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100