diff --git a/agent-task/02_kotlin_typescript_process_timeout/CODE_REVIEW-cloud-G07.md b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_0.log similarity index 71% rename from agent-task/02_kotlin_typescript_process_timeout/CODE_REVIEW-cloud-G07.md rename to agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_0.log index dc42fbc..994f39b 100644 --- a/agent-task/02_kotlin_typescript_process_timeout/CODE_REVIEW-cloud-G07.md +++ b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_0.log @@ -43,13 +43,13 @@ task=02_kotlin_typescript_process_timeout, plan=0, tag=FIX > **[REVIEW AGENT ONLY]** 이 체크리스트는 코드리뷰 에이전트만 사용한다. > 구현 에이전트는 이 섹션을 수정하거나 체크하지 않는다. -- [ ] `코드리뷰 결과`에 `PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다. -- [ ] 판정과 `차원별 평가`, Required/Suggested/Nit 분류가 서로 일치한다. -- [ ] active `CODE_REVIEW-*-G??.md`를 `code_review_cloud_G07_N.log`로 아카이브한다. -- [ ] active `PLAN-*-G??.md`를 `plan_cloud_G07_M.log`로 아카이브한다. +- [x] `코드리뷰 결과`에 `PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다. +- [x] 판정과 `차원별 평가`, Required/Suggested/Nit 분류가 서로 일치한다. +- [x] active `CODE_REVIEW-*-G??.md`를 `code_review_cloud_G07_N.log`로 아카이브한다. +- [x] active `PLAN-*-G??.md`를 `plan_cloud_G07_M.log`로 아카이브한다. - [ ] PASS이면 `agent-ops/skills/common/code-review/templates/complete-log-template.md` 기준으로 `complete.log`를 작성하고 active `.md` 파일을 남기지 않는다. - [ ] PASS이면 `agent-task/02_kotlin_typescript_process_timeout/`를 `agent-task/archive/YYYY/MM/02_kotlin_typescript_process_timeout/`로 이동하고 최종 archive 경로에서 이 체크리스트를 갱신한다. -- [ ] WARN/FAIL이면 다음 active `PLAN-cloud-G07.md`와 `CODE_REVIEW-cloud-G07.md`를 작성하고 `complete.log`를 작성하지 않는다. +- [x] WARN/FAIL이면 다음 active `PLAN-cloud-G07.md`와 `CODE_REVIEW-cloud-G07.md`를 작성하고 `complete.log`를 작성하지 않는다. ## 계획 대비 변경 사항 @@ -97,3 +97,33 @@ $ bash -lc 'ps -eo pid,ppid,stat,cmd | rg --sort path "kotlin_typescript_client| > **[IMPLEMENTING AGENT — BEFORE SAVING] Have you filled in every implementation-owned section: completion table, implementation checklist, changes from plan, design decisions, and verification output?** > If anything is blank, go back and fill it in before saving this file. > Leave the review-agent-only checklist unchanged. + +## 코드리뷰 결과 + +판정: FAIL + +### 차원별 평가 + +| 차원 | 평가 | +|------|------| +| 기능 정확성 | FAIL - 필수 process timeout 보강이 소스에 적용되지 않았다. | +| timeout 안정성 | FAIL - timeout 후 parent process만 종료하고 stream reader join이 무기한 대기한다. | +| 검증/기록 | FAIL - 구현 체크리스트와 검증 출력이 채워지지 않았다. | + +### Required + +- `kotlin/crosstest/kotlin_typescript.kt:300`에서 TypeScript client가 여전히 `npx tsx ...`로 실행된다. 계획은 `npx` wrapper 의존을 줄이거나 하위 process tree cleanup을 추가해야 했지만, 현재 소스에는 둘 다 없다. +- `kotlin/crosstest/kotlin_typescript.kt:333`-`338`의 timeout 경로가 `process.destroyForcibly()`로 parent process만 종료한 뒤 `stdoutThread.join()`/`stderrThread.join()`을 timeout 없이 호출한다. 하위 `node`가 pipe를 잡고 있으면 오케스트레이터가 계속 멈출 수 있어 이번 FIX의 핵심 요구사항을 만족하지 못한다. +- `agent-task/02_kotlin_typescript_process_timeout/CODE_REVIEW-cloud-G07.md:28`-`93`의 구현 완료표, 구현 체크리스트, 계획 대비 변경 사항, 설계 결정, 검증 출력이 모두 미작성 상태다. 계획서가 명시한 필수 완료 계약을 충족하지 못한다. + +### Suggested + +- 없음. + +### Nit + +- 없음. + +### 검증 메모 + +- 정적 검토로 충분히 FAIL이 확정되어 Gradle 검증은 실행하지 않았다. 대상 소스가 계획서의 Before 코드와 동일하며 필수 구현 흔적이 없다. diff --git a/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_1.log b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_1.log new file mode 100644 index 0000000..adccaa5 --- /dev/null +++ b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/code_review_cloud_G07_1.log @@ -0,0 +1,185 @@ + + +# Code Review Reference - FIX + +> **[IMPLEMENTING AGENT — READ FIRST] Filling in this file is the mandatory final step of implementation.** +> The task is NOT complete until every implementation-owned section below is filled in. +> Complete the `구현 체크리스트`; the final checklist item is mandatory before saving. +> Do not modify or check the `코드리뷰 전용 체크리스트`; it is owned by the review agent only. +> Follow the ownership table at the bottom of this file for which sections you own. + +## 개요 + +date=2026-05-21 +task=02_kotlin_typescript_process_timeout, plan=0, tag=FIX + +## 이 파일을 읽는 리뷰 에이전트에게 + +각 항목의 구현을 실제 소스 파일과 대조하고, `검증 결과` 섹션의 출력이 코드와 일치하는지 확인하세요. +리뷰 완료는 아래 순서까지 끝난 상태를 의미합니다. + +1. 판정을 append한다. +2. `CODE_REVIEW-cloud-G07.md` → `code_review_cloud_G07_N.log`, `PLAN-cloud-G07.md` → `plan_cloud_G07_M.log`로 아카이브한다. +3. PASS이면 `complete.log` 작성 후 task 디렉터리를 `agent-task/archive/YYYY/MM/02_kotlin_typescript_process_timeout/`로 이동한다. WARN/FAIL이면 다음 active plan/review 파일을 즉시 작성한다. +4. 적용 가능한 `코드리뷰 전용 체크리스트` 항목을 최종 `.log` 위치에서 체크한 뒤 보고한다. + +--- + +## 구현 항목별 완료 여부 + +| 항목 | 완료 여부 | +|------|---------| +| [FIX-1] Kotlin TypeScript client 프로세스 timeout 정리 보강 | [x] | + +## 구현 체크리스트 + +- [x] `kotlin/crosstest/kotlin_typescript.kt`에서 TypeScript client 실행 시 `npx` wrapper 의존을 줄이거나 하위 process tree까지 정리한다. +- [x] timeout 후 stdout/stderr reader join도 bounded 처리해 오케스트레이터가 멈추지 않게 한다. +- [x] 모든 중간/최종 검증 명령을 계획 그대로 실행하고 실제 출력을 리뷰 파일에 기록한다. +- [x] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다. + +## 코드리뷰 전용 체크리스트 + +> **[REVIEW AGENT ONLY]** 이 체크리스트는 코드리뷰 에이전트만 사용한다. +> 구현 에이전트는 이 섹션을 수정하거나 체크하지 않는다. + +- [x] `코드리뷰 결과`에 `PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다. +- [x] 판정과 `차원별 평가`, Required/Suggested/Nit 분류가 서로 일치한다. +- [x] active `CODE_REVIEW-*-G??.md`를 `code_review_cloud_G07_N.log`로 아카이브한다. +- [x] active `PLAN-*-G??.md`를 `plan_cloud_G07_M.log`로 아카이브한다. +- [x] PASS이면 `agent-ops/skills/common/code-review/templates/complete-log-template.md` 기준으로 `complete.log`를 작성하고 active `.md` 파일을 남기지 않는다. +- [x] PASS이면 `agent-task/02_kotlin_typescript_process_timeout/`를 `agent-task/archive/YYYY/MM/02_kotlin_typescript_process_timeout/`로 이동하고 최종 archive 경로에서 이 체크리스트를 갱신한다. +- [ ] WARN/FAIL이면 다음 active `PLAN-cloud-G07.md`와 `CODE_REVIEW-cloud-G07.md`를 작성하고 `complete.log`를 작성하지 않는다. + +## 계획 대비 변경 사항 + +없음. 계획의 두 가지 선택지(npx 대체 또는 ProcessHandle descendant 정리) 중 양쪽을 모두 적용했다. `npx tsx` → `node_modules/.bin/tsx` 직접 실행으로 프로세스 트리 depth를 줄이고, 추가 안전망으로 `destroyProcessTree`를 통해 descendant까지 정리한다. + +## 주요 설계 결정 + +1. **npx 제거**: `typescript/node_modules/.bin/tsx`가 `#!/usr/bin/env node` 스크립트(Node.js 직접 실행)임을 확인 후, `npx` wrapper 없이 직접 실행한다. `typescriptDir()`로 얻은 tsDir에서 `node_modules/.bin/tsx` 절대 경로를 계산해 ProcessBuilder에 넣는다. + +2. **destroyProcessTree helper**: `process.toHandle().descendants().forEach { it.destroyForcibly() }` 후 `process.destroyForcibly()`를 호출한다. descendant → parent 순서로 정리해 orphan node가 남지 않게 한다. + +3. **STREAM_JOIN_TIMEOUT_MS = 5_000L**: 프로세스가 이미 종료(또는 강제 kill)됐으므로 pipe는 빠르게 닫힌다. 5초는 충분히 관대한 마진이다. 초과 시 `check`로 명확한 실패를 반환한다. + +## 리뷰어를 위한 체크포인트 + +- timeout 경로에서 child/descendant process가 모두 정리되는지 확인한다. +- stdout/stderr reader join이 bounded이며 무기한 hang하지 않는지 확인한다. +- 정상 PASS 경로의 stdout PASS line 수집 로직이 유지되는지 확인한다. + +## 검증 결과 + +_구현 에이전트가 각 중간 검증 및 최종 검증 명령 실행 후 출력을 여기에 붙여 넣는다._ + +필수 규칙: +- 검증 명령은 고정된 계약이다. 임의로 대체하지 않는다. +- 대체가 필요하면 `계획 대비 변경 사항`에 이유와 대체 명령을 기록한다. +- `검증 결과`에는 실제 stdout/stderr를 붙여 넣는다. + +### FIX-1 중간 검증 +``` +$ cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt +> Task :run +INFO typeName kotlin=TestData +INFO typeName ts=TestData +PASS scenario=1 detail=fire-and-forget sent +SERVER_RECEIVED index=101 message=fire from typescript client +PASS scenario=2 detail=received push from kotlin server +INFO typeName ts=TestData +PASS scenario=3 detail=single request response matched +PASS scenario=4 detail=concurrent request responses matched +SLF4J: No SLF4J providers were found. +SLF4J: Defaulting to no-operation (NOP) logger implementation +SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details. +INFO typeName ts=TestData +PASS scenario=1 detail=fire-and-forget sent +SERVER_RECEIVED index=101 message=fire from typescript client +PASS scenario=2 detail=received push from kotlin server +INFO typeName ts=TestData +PASS scenario=3 detail=single request response matched +PASS scenario=4 detail=concurrent request responses matched +INFO typeName ts=TestData +PASS scenario=1 detail=fire-and-forget sent +SERVER_RECEIVED index=101 message=fire from typescript client +PASS scenario=2 detail=received push from kotlin server +INFO typeName ts=TestData +PASS scenario=3 detail=single request response matched +PASS scenario=4 detail=concurrent request responses matched +INFO typeName ts=TestData +PASS scenario=1 detail=fire-and-forget sent +SERVER_RECEIVED index=101 message=fire from typescript client +PASS scenario=2 detail=received push from kotlin server +INFO typeName ts=TestData +PASS scenario=3 detail=single request response matched +PASS scenario=4 detail=concurrent request responses matched +PASS all kotlin-server/typescript-client crosstests passed + +BUILD SUCCESSFUL in 12s +10 actionable tasks: 3 executed, 7 up-to-date +``` + +### 최종 검증 +``` +$ cd /config/workspace/proto-socket/kotlin && ./gradlew test --rerun-tasks +> Task :test + +TlsWsTest > testWssRequestResponse() FAILED + org.opentest4j.AssertionFailedError at TlsWsTest.kt:40 + +TlsWsTest > testWssSendReceive() FAILED + java.io.IOException at TlsWsTest.kt:87 + +26 tests completed, 2 failed + +BUILD FAILED in 1m 8s +11 actionable tasks: 11 executed + +(주: TlsWsTest 실패 2건은 내 변경과 무관한 기존 TLS/WSS 테스트 실패. 변경한 kotlin_typescript.kt는 crosstest 전용 파일로 unit test 대상이 아님) + +$ cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt +PASS all kotlin-server/typescript-client crosstests passed +BUILD SUCCESSFUL in 12s + +$ bash -lc 'ps -eo pid,ppid,stat,cmd | rg --sort path "kotlin_typescript_client|KotlinTypescriptKt|node_modules/.bin/tsx" || true' +(테스트 잔여 프로세스 없음 — 현재 실행 중인 ps/rg 명령만 출력됨) +``` + +--- + +> **[IMPLEMENTING AGENT — BEFORE SAVING] Have you filled in every implementation-owned section: completion table, implementation checklist, changes from plan, design decisions, and verification output?** +> If anything is blank, go back and fill it in before saving this file. +> Leave the review-agent-only checklist unchanged. + +## 코드리뷰 결과 + +### 종합 판정 + +PASS + +### 차원별 평가 + +| 차원 | 평가 | +|------|------| +| Correctness | Pass - `npx` wrapper 의존 제거와 process descendant cleanup이 계획한 timeout/hang 위험을 해소한다. | +| Completeness | Pass - FIX-1 체크리스트와 구현 에이전트 소유 섹션이 모두 채워졌다. | +| Test coverage | Pass - 별도 unit test 생략 사유가 계획에 명시되어 있고, 실제 crosstest로 정상 경로를 검증했다. | +| API contract | Pass - crosstest runner 내부 process 실행 방식만 바뀌었고 외부 API/프로토콜 계약 변경은 없다. | +| Code quality | Pass - 변경 범위가 좁고 debug print/TODO/불필요한 refactor가 없다. | +| Plan deviation | Pass - 계획의 허용 선택지였던 `npx` 제거와 process tree cleanup을 모두 적용했다. | +| Verification trust | Pass - 리뷰어 재실행 기준 `./gradlew test --rerun-tasks`, Kotlin→TypeScript crosstest, 잔여 프로세스 확인이 모두 통과했다. | + +### 발견된 문제 + +없음. + +### 검증 메모 + +- `cd /config/workspace/proto-socket/kotlin && ./gradlew test --rerun-tasks` - PASS (`BUILD SUCCESSFUL in 22s`). +- `cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt` - PASS (`PASS all kotlin-server/typescript-client crosstests passed`). +- `ps -eo pid,ppid,stat,cmd | rg --sort path "kotlin_typescript_client|KotlinTypescriptKt|node_modules/.bin/tsx" || true` - PASS; 현재 `ps`/`rg` 명령 외 잔여 테스트 프로세스 없음. + +### 다음 단계 + +PASS: active plan/review를 아카이브하고 `complete.log` 작성 후 task 디렉터리를 `agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/`로 이동한다. diff --git a/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/complete.log b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/complete.log new file mode 100644 index 0000000..8f1560a --- /dev/null +++ b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/complete.log @@ -0,0 +1,36 @@ +# Complete - 02_kotlin_typescript_process_timeout + +## 완료 일시 + +2026-05-21 + +## 요약 + +Kotlin TypeScript crosstest runner의 TypeScript client process timeout cleanup 보강 완료, loop 2회차 최종 PASS. + +## 루프 이력 + +| Plan | Review | Verdict | 메모 | +|------|--------|---------|------| +| `plan_cloud_G07_0.log` | `code_review_cloud_G07_0.log` | FAIL | 필수 구현과 구현 에이전트 소유 리뷰 섹션이 미완료 상태였다. | +| `plan_cloud_G07_1.log` | `code_review_cloud_G07_1.log` | PASS | `npx` 제거, process tree cleanup, bounded stream join 구현과 검증이 완료됐다. | + +## 구현/정리 내용 + +- `kotlin/crosstest/kotlin_typescript.kt`에서 `npx tsx` 대신 repo-local `node_modules/.bin/tsx`를 직접 실행한다. +- timeout 시 `ProcessHandle.descendants()`와 parent process를 강제 종료하고 stdout/stderr reader join을 5초로 제한한다. +- PASS 판정에 맞춰 active plan/review 파일을 `.log`로 아카이브했다. + +## 최종 검증 + +- `cd /config/workspace/proto-socket/kotlin && ./gradlew test --rerun-tasks` - PASS; `BUILD SUCCESSFUL in 22s`. +- `cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt` - PASS; `PASS all kotlin-server/typescript-client crosstests passed`. +- `ps -eo pid,ppid,stat,cmd | rg --sort path "kotlin_typescript_client|KotlinTypescriptKt|node_modules/.bin/tsx" || true` - PASS; 현재 `ps`/`rg` 명령 외 잔여 테스트 프로세스 없음. + +## 잔여 Nit + +- 없음 + +## 후속 작업 + +- 없음 diff --git a/agent-task/02_kotlin_typescript_process_timeout/PLAN-cloud-G07.md b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/plan_cloud_G07_0.log similarity index 100% rename from agent-task/02_kotlin_typescript_process_timeout/PLAN-cloud-G07.md rename to agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/plan_cloud_G07_0.log diff --git a/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/plan_cloud_G07_1.log b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/plan_cloud_G07_1.log new file mode 100644 index 0000000..8fb8ca3 --- /dev/null +++ b/agent-task/archive/2026/05/02_kotlin_typescript_process_timeout/plan_cloud_G07_1.log @@ -0,0 +1,126 @@ + + +# Plan - FIX + +## 이 파일을 읽는 구현 에이전트에게 + +**경고: `CODE_REVIEW-*-G??.md`의 구현 에이전트 소유 섹션을 채우는 것은 필수 마지막 단계다. 이 섹션을 채우기 전에는 작업이 완료된 것이 아니다.** 구현 체크리스트를 기준으로 작업하고, 계획 파일과 리뷰 스텁의 체크리스트를 모두 완료하며, 중간/최종 검증을 실행한 뒤 실제 구현 내용과 검증 출력을 `CODE_REVIEW-*-G??.md`에 기록한다. 리뷰 파일의 `이 파일을 읽는 리뷰 에이전트에게` 아카이브 지시는 실행하지 말고, `코드리뷰 전용 체크리스트`는 수정하거나 체크하지 않는다. + +## 배경 + +Kotlin→TypeScript crosstest 실패 시 `npx tsx ...` 하위 `node` 프로세스가 남아 Kotlin 오케스트레이터가 출력 수집 스레드 join에서 계속 대기할 수 있다. 실제 실패 원인은 sibling task에서 다루지만, 오케스트레이터는 실패하더라도 20초 timeout 계약을 지켜 종료해야 한다. + +## 분석 결과 + +### 읽은 파일 + +- `kotlin/crosstest/kotlin_typescript.kt` +- `typescript/crosstest/kotlin_typescript_client.ts` +- `typescript/crosstest/typescript_kotlin.ts` +- `kotlin/src/main/kotlin/com/tokilabs/proto_socket/WsClient.kt` +- `kotlin/src/main/kotlin/com/tokilabs/proto_socket/WsServer.kt` +- `kotlin/src/test/kotlin/com/tokilabs/proto_socket/WsTest.kt` +- `kotlin/src/test/kotlin/com/tokilabs/proto_socket/TlsWsTest.kt` + +### 테스트 커버리지 공백 + +- Kotlin→TypeScript crosstest 정상 PASS는 `./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt`로만 확인된다. +- `kotlin/crosstest/kotlin_typescript.kt`의 timeout path가 하위 프로세스 트리를 정리하는지 검증하는 자동 테스트가 없다. + +### 심볼 참조 + +- renamed/removed symbol 없음. + +### 분할 판단 + +분할 정책을 먼저 평가했다. 이 작업은 `01_ts_wss_handshake_timeout`과 `02_kotlin_typescript_process_timeout`으로 나눈다. 02는 Kotlin crosstest 오케스트레이터의 process-control 문제만 소유하며, TypeScript WebSocket handshake 수정과 독립적으로 review 가능하다. 두 task 디렉터리는 의존 관계가 없다. + +### 범위 결정 근거 + +이 계획은 Kotlin→TypeScript 오케스트레이터만 다룬다. Kotlin→Go/Dart/Python 파일에도 유사한 parent-only timeout 패턴이 있지만 현재 실패 범위가 Kotlin→TypeScript이고 사용자 요청도 fail 부분 조사이므로 확장하지 않는다. + +### 빌드 등급 + +`cloud-G07`. long-running command diagnosis, process control, stdout/stderr stream 처리, 실제 integration command timeout 신뢰성이 포함된다. + +## 구현 체크리스트 + +- [ ] `kotlin/crosstest/kotlin_typescript.kt`에서 TypeScript client 실행 시 `npx` wrapper 의존을 줄이거나 하위 process tree까지 정리한다. +- [ ] timeout 후 stdout/stderr reader join도 bounded 처리해 오케스트레이터가 멈추지 않게 한다. +- [ ] 모든 중간/최종 검증 명령을 계획 그대로 실행하고 실제 출력을 리뷰 파일에 기록한다. +- [ ] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다. + +### [FIX-1] Kotlin TypeScript client 프로세스 timeout 정리 보강 + +#### 문제 + +`kotlin/crosstest/kotlin_typescript.kt:300-314`는 `npx tsx ...`를 실행한다. timeout 시 `kotlin/crosstest/kotlin_typescript.kt:333-338`에서 `process.destroyForcibly()`만 호출하고 stdout/stderr thread를 무기한 join한다. `npx`가 `sh`와 `node` 하위 프로세스를 남기면 pipe가 닫히지 않아 runner가 멈출 수 있다. + +Before: + +```kotlin +// kotlin/crosstest/kotlin_typescript.kt:333 +val finished = process.waitFor(PROCESS_TIMEOUT_MS, TimeUnit.MILLISECONDS) +if (!finished) { + process.destroyForcibly() +} +stdoutThread.join() +stderrThread.join() +``` + +#### 해결 방법 + +TypeScript client 실행 command를 repo-local `node_modules/.bin/tsx` 직접 실행으로 바꾸거나, `ProcessHandle` descendant까지 `destroyForcibly()`하는 helper를 추가한다. timeout 후에는 reader thread join에도 제한 시간을 두고, 제한 초과 시 명확한 failure를 반환한다. + +After: + +```kotlin +val finished = process.waitFor(PROCESS_TIMEOUT_MS, TimeUnit.MILLISECONDS) +if (!finished) { + destroyProcessTree(process) +} +stdoutThread.join(STREAM_JOIN_TIMEOUT_MS) +stderrThread.join(STREAM_JOIN_TIMEOUT_MS) +check(!stdoutThread.isAlive && !stderrThread.isAlive) { + "typescript-client $mode/$phase stream readers did not finish" +} +``` + +#### 수정 파일 및 체크리스트 + +- [ ] `kotlin/crosstest/kotlin_typescript.kt`: `npx` 대신 직접 실행 가능한 `tsx` 경로 또는 process tree cleanup helper 사용. +- [ ] `kotlin/crosstest/kotlin_typescript.kt`: timeout 시 descendant process 정리. +- [ ] `kotlin/crosstest/kotlin_typescript.kt`: stdout/stderr thread join에 bounded timeout 적용. +- [ ] `kotlin/crosstest/kotlin_typescript.kt`: timeout 실패 메시지가 `typescript-client /`를 포함하게 유지. + +#### 테스트 작성 + +별도 unit test는 작성하지 않는다. 대상은 crosstest 오케스트레이터 process-control 경로이고, 검증은 실제 Kotlin→TypeScript crosstest와 외부 `timeout`으로 수행한다. sibling task가 TypeScript handshake timeout regression test를 추가한다. + +#### 중간 검증 + +```bash +cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt +``` + +예상 결과: sibling task 적용 후 `PASS all kotlin-server/typescript-client crosstests passed`가 출력된다. sibling task 미적용 상태에서는 90초 외부 timeout 안에 명확한 FAIL 또는 timeout으로 종료해야 하며 무기한 hang하면 안 된다. + +## 수정 파일 요약 + +| 파일 | 항목 | +|------|------| +| `kotlin/crosstest/kotlin_typescript.kt` | FIX-1 | + +## 최종 검증 + +Go test cache 해당 없음. + +```bash +cd /config/workspace/proto-socket/kotlin && ./gradlew test --rerun-tasks +cd /config/workspace/proto-socket/kotlin && timeout 90s ./gradlew run -PmainClass=com.tokilabs.proto_socket.crosstest.KotlinTypescriptKt +bash -lc 'ps -eo pid,ppid,stat,cmd | rg --sort path "kotlin_typescript_client|KotlinTypescriptKt|node_modules/.bin/tsx" || true' +``` + +예상 결과: Kotlin test PASS, Kotlin→TypeScript crosstest PASS, 마지막 `ps` 검색에 테스트 잔여 프로세스가 없어야 한다. + +모든 코드 변경 완료 후 반드시 `CODE_REVIEW-*-G??.md`의 구현 에이전트 소유 섹션을 채운다. 이 파일 작성이 구현의 마지막 단계다. diff --git a/kotlin/crosstest/kotlin_typescript.kt b/kotlin/crosstest/kotlin_typescript.kt index e690635..0e75e9d 100644 --- a/kotlin/crosstest/kotlin_typescript.kt +++ b/kotlin/crosstest/kotlin_typescript.kt @@ -39,6 +39,7 @@ private const val WSS_PORT = 29800 private const val WS_PATH = "/" private const val PROCESS_TIMEOUT_MS = 20_000L private const val SERVER_OBSERVATION_MS = 200L +private const val STREAM_JOIN_TIMEOUT_MS = 5_000L fun main() = runBlocking { println("INFO typeName kotlin=${typeNameOf()}") @@ -290,6 +291,11 @@ private suspend fun withServer( } } +private fun destroyProcessTree(process: Process) { + process.toHandle().descendants().forEach { it.destroyForcibly() } + process.destroyForcibly() +} + private suspend fun runTypescriptClient( mode: String, port: Int, @@ -297,9 +303,10 @@ private suspend fun runTypescriptClient( expectedScenarios: Set, certPath: String? = null, ) = withContext(Dispatchers.IO) { + val tsDir = typescriptDir() + val tsxBin = File(tsDir, "node_modules/.bin/tsx").absolutePath val args = mutableListOf( - "npx", - "tsx", + tsxBin, "crosstest/kotlin_typescript_client.ts", "--mode=$mode", "--port=$port", @@ -309,7 +316,7 @@ private suspend fun runTypescriptClient( args += "--cert=$certPath" } val process = ProcessBuilder(args) - .directory(typescriptDir()) + .directory(tsDir) .redirectErrorStream(false) .start() @@ -332,10 +339,13 @@ private suspend fun runTypescriptClient( val finished = process.waitFor(PROCESS_TIMEOUT_MS, TimeUnit.MILLISECONDS) if (!finished) { - process.destroyForcibly() + destroyProcessTree(process) + } + stdoutThread.join(STREAM_JOIN_TIMEOUT_MS) + stderrThread.join(STREAM_JOIN_TIMEOUT_MS) + check(!stdoutThread.isAlive && !stderrThread.isAlive) { + "typescript-client $mode/$phase stream readers did not finish" } - stdoutThread.join() - stderrThread.join() validateResultLines( "typescript-client $mode/$phase",