Skip to content

Commit 50367b3

Browse files
chore(plan): archive plan 17 fix-pytest-warnings
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d57df15 commit 50367b3

5 files changed

Lines changed: 365 additions & 0 deletions

File tree

Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
---
2+
id: 17
3+
summary: "Fix all 8 RuntimeWarning instances (unawaited coroutines) emitted during pytest execution"
4+
created: 2026-03-02
5+
---
6+
7+
# Plan: Fix Unawaited Coroutine Warnings in Test Suite
8+
9+
## Original Work Order
10+
> Fix warnings shown while running tests with `uv run pytest --cov=flameconnect --cov-report=term-missing --tb=short --cov-fail-under=95`.
11+
12+
## Executive Summary
13+
14+
Running the test suite produces 8 `RuntimeWarning: coroutine '...' was never awaited` warnings across three test files. All warnings share the same root cause pattern: async coroutines are created during test execution but never awaited or explicitly closed, causing Python's garbage collector to emit warnings when it finalizes them.
15+
16+
The warnings originate from three distinct patterns: (1) mocking `asyncio` without also mocking the async function passed to it, (2) creating `AsyncMock()()` coroutines that are intentionally abandoned by early-return guard clauses or never-executed workers, and (3) patching `run_worker` with a `MagicMock` that discards the coroutine argument without awaiting or closing it. Each pattern requires a targeted fix in the test code itself—no production code changes are needed.
17+
18+
## Context
19+
20+
### Current State vs Target State
21+
22+
| Current State | Target State | Why? |
23+
|---|---|---|
24+
| `pytest` emits 8 `RuntimeWarning` lines in the warnings summary | `pytest` emits 0 warnings | Clean test output improves signal-to-noise; unawaited coroutine warnings can mask real bugs |
25+
| `TestMain` tests mock `asyncio` but leave `async_main` as the real function, creating unawaited coroutines | `TestMain` tests also mock `async_main` so no real coroutine is created | Prevents the coroutine from being passed to mocked `asyncio.run()` and discarded |
26+
| `TestRunCommand` tests create `AsyncMock()()` coroutines that are intentionally never awaited | Unawaited coroutines are explicitly closed after assertions | `coro.close()` prevents the GC warning while preserving the test's intent |
27+
| `TestAuthScreen` tests patch `run_worker` with `MagicMock`, discarding the `_do_credential_login` coroutine passed to it | Close the coroutine arg after assertions, same pattern as Group 2 | Prevents GC from emitting warnings when the abandoned coroutine is finalized |
28+
29+
### Background
30+
31+
All 8 warnings are `RuntimeWarning` instances about unawaited coroutines. Python emits these when a coroutine object is garbage-collected without ever being awaited. The warnings are often attributed to a *different* test than the one that created the coroutine, because GC timing is non-deterministic.
32+
33+
The 8 warnings reported by pytest originate from **7 source tests** across 3 test files. Note: GC timing is non-deterministic, so pytest attributes each warning to whichever test is running when GC collects the coroutine—not necessarily the test that created it.
34+
35+
| # | Source Test | Unawaited Coroutine | Count |
36+
|---|---|---|---|
37+
| 1–3 | `TestMain.test_main_calls_async_main`, `test_main_verbose_logging`, `test_main_no_verbose_logging` | `async_main(args)` | 3 |
38+
| 4 | `TestRunCommand.test_no_op_when_not_dashboard` | `AsyncMock()()` | 1 |
39+
| 5 | `TestRunCommand.test_sets_write_in_progress` | `AsyncMock()()` + `_worker()` | 2 |
40+
| 6 | `TestAuthScreen.test_credential_submit_triggers_worker` | `_do_credential_login(email, password)` | 1 |
41+
| 7 | `TestAuthScreen.test_password_submitted_triggers_on_submit` | `_do_credential_login(email, password)` | 1 |
42+
| | **Total** | | **8** |
43+
44+
## Architectural Approach
45+
46+
All fixes are confined to test code. No production code changes are required.
47+
48+
```mermaid
49+
flowchart TD
50+
A[8 RuntimeWarnings] --> B{Root Cause Analysis}
51+
B --> C["Group 1: TestMain\n(test_cli_commands.py)"]
52+
B --> D["Group 2: TestRunCommand\n(test_tui_actions.py)"]
53+
B --> E["Group 3: TestAuthScreen\n(test_tui_screens.py)"]
54+
55+
C --> C1["Fix: Also patch async_main\nso no real coroutine is created"]
56+
D --> D1["Fix: Close abandoned coroutines\nwith coro.close()"]
57+
E --> E1["Fix: Close coroutine arg passed\nto mocked run_worker"]
58+
```
59+
60+
### Group 1: `TestMain` in `test_cli_commands.py`
61+
62+
**Objective**: Eliminate the `coroutine 'async_main' was never awaited` warnings produced by all three `TestMain` tests.
63+
64+
All three tests (`test_main_calls_async_main`, `test_main_verbose_logging`, `test_main_no_verbose_logging`) patch `flameconnect.cli.asyncio` with a `MagicMock`, so `asyncio.run` becomes a no-op. However, `async_main(args)` at `cli.py:894` is the real function—calling it creates a real coroutine that is passed to the mocked `asyncio.run()` and discarded without being awaited.
65+
66+
The fix is to additionally patch `flameconnect.cli.async_main` in each test. When `async_main` is a `MagicMock`, calling `async_main(args)` returns a `MagicMock` instance (not a coroutine), so no `RuntimeWarning` is produced. The tests' existing assertions on `mock_asyncio.run.assert_called_once()` remain valid.
67+
68+
### Group 2: `TestRunCommand` in `test_tui_actions.py`
69+
70+
**Objective**: Eliminate the `coroutine 'AsyncMockMixin._execute_mock_call' was never awaited` and `coroutine '_worker' was never awaited` warnings from `test_no_op_when_not_dashboard` and `test_sets_write_in_progress`.
71+
72+
**`test_no_op_when_not_dashboard`** creates `coro = AsyncMock()()` and passes it to `_run_command`. Since `screen` is not a `DashboardScreen`, `_run_command` returns early and `coro` is abandoned. Fix: call `coro.close()` after the assertion to suppress the GC warning.
73+
74+
**`test_sets_write_in_progress`** creates `coro = AsyncMock()()` and passes it to `_run_command`. This time `_run_command` proceeds (mock_dashboard passes the guard), creating an inner `_worker()` coroutine stored via `_capture_worker`. The test intentionally never runs the workers. Both `coro` (inside `_worker`) and `_worker` itself are abandoned. Fix: close all captured workers after assertions with a loop over `app._captured_workers` calling `.close()`.
75+
76+
### Group 3: `TestAuthScreen` in `test_tui_screens.py`
77+
78+
**Objective**: Eliminate the `coroutine 'AuthScreen._do_credential_login' was never awaited` warnings from `test_credential_submit_triggers_worker` and `test_password_submitted_triggers_on_submit` (GC artifacts surface on later tests like `test_credential_login_success_dismisses` and `test_button_pressed_non_sign_in_ignored`).
79+
80+
Both source tests follow the same pattern: they set email/password input values, then trigger `_submit_credentials` (via button press or input submit). `_submit_credentials` calls `self.run_worker(self._do_credential_login(email, password), ...)`, creating a `_do_credential_login` coroutine. Since `run_worker` is already patched with a `MagicMock` in both tests, the mock receives and discards the coroutine without awaiting it.
81+
82+
The fix is the same pattern as Group 2: after assertions, retrieve the coroutine from `mock_worker.call_args[0][0]` and call `.close()` on it. This explicitly finalizes the coroutine without triggering the GC warning.
83+
84+
### Validation: Promote Warnings to Errors
85+
86+
**Objective**: Ensure no new unawaited-coroutine warnings are introduced in the future.
87+
88+
Add a `filterwarnings` entry to `pyproject.toml` under `[tool.pytest.ini_options]` that turns `RuntimeWarning` about unawaited coroutines into hard test failures. The filter pattern should match the specific warning message (e.g., `"error::RuntimeWarning:.*was never awaited"` or the broader `"error::RuntimeWarning"`). This makes the test suite self-enforcing — any new unawaited coroutine will fail the build immediately rather than producing a quiet warning.
89+
90+
## Risk Considerations and Mitigation Strategies
91+
92+
<details>
93+
<summary>Technical Risks</summary>
94+
95+
- **GC non-determinism**: Warnings are attributed to different tests depending on GC timing. The fixes must eliminate the root cause (unawaited coroutine creation) rather than suppress the symptom.
96+
- **Mitigation**: Each fix prevents the unawaited coroutine from being created in the first place, or explicitly closes it. The `filterwarnings = error` setting will catch any remaining cases.
97+
98+
- **Coroutine arg retrieval from mock**: The fix for Groups 2 and 3 relies on `mock.call_args[0][0]` to retrieve the discarded coroutine. If the mock's call signature changes, this index could break.
99+
- **Mitigation**: The `filterwarnings = error` setting will catch any regressions immediately. The call_args pattern is well-established in unittest.mock.
100+
</details>
101+
102+
<details>
103+
<summary>Implementation Risks</summary>
104+
105+
- **Over-mocking in TestMain**: Adding a patch for `async_main` changes what the test verifies slightly (it no longer proves that the real `async_main` is called—just that something named `async_main` is called).
106+
- **Mitigation**: The test already only asserts `mock_asyncio.run.assert_called_once()`. The real integration between `main()` and `async_main()` is validated by the existing async tests that test `async_main` directly.
107+
108+
- **Closing coroutines may hide real bugs**: Explicitly closing unawaited coroutines in tests could mask issues if the production code is supposed to await them.
109+
- **Mitigation**: The tests in Group 2 intentionally test guard-clause and early-return paths where the coroutine is expected to be abandoned. Closing them is the correct cleanup.
110+
</details>
111+
112+
## Success Criteria
113+
114+
### Primary Success Criteria
115+
1. `uv run pytest --cov=flameconnect --cov-report=term-missing --tb=short --cov-fail-under=95` produces **0 warnings**
116+
2. All 1080 tests continue to pass
117+
3. Coverage remains at or above 95%
118+
4. `filterwarnings` configuration in `pyproject.toml` promotes unawaited coroutine warnings to errors for future protection
119+
5. `uv run ruff check .` and `uv run mypy src/` pass without new issues
120+
121+
## Resource Requirements
122+
123+
### Development Skills
124+
- Python async/await patterns and coroutine lifecycle
125+
- `unittest.mock` (`MagicMock`, `AsyncMock`, `patch`) expertise
126+
- Textual framework test patterns (`run_test`, workers)
127+
128+
### Technical Infrastructure
129+
- Existing `uv` + `pytest` + `pytest-asyncio` + `pytest-cov` toolchain (no new dependencies)
130+
131+
## Task Dependency Visualization
132+
133+
```mermaid
134+
graph TD
135+
001[Task 01: Fix TestMain warnings] --> 004[Task 04: Add filterwarnings & validate]
136+
002[Task 02: Fix TestRunCommand warnings] --> 004
137+
003[Task 03: Fix TestAuthScreen warnings] --> 004
138+
```
139+
140+
## Execution Blueprint
141+
142+
**Validation Gates:**
143+
- Reference: `/config/hooks/POST_PHASE.md`
144+
145+
### ✅ Phase 1: Fix Unawaited Coroutine Sources
146+
**Parallel Tasks:**
147+
- ✔️ Task 01: Fix TestMain unawaited coroutine warnings in test_cli_commands.py
148+
- ✔️ Task 02: Fix TestRunCommand unawaited coroutine warnings in test_tui_actions.py
149+
- ✔️ Task 03: Fix TestAuthScreen unawaited coroutine warnings in test_tui_screens.py
150+
151+
### ✅ Phase 2: Add Filterwarnings and Full Validation
152+
**Parallel Tasks:**
153+
- ✔️ Task 04: Add filterwarnings to pyproject.toml and run full validation (depends on: 01, 02, 03)
154+
155+
### Post-phase Actions
156+
Archive plan upon successful completion.
157+
158+
### Execution Summary
159+
- Total Phases: 2
160+
- Total Tasks: 4
161+
- Maximum Parallelism: 3 tasks (in Phase 1)
162+
- Critical Path Length: 2 phases
163+
164+
## Notes
165+
166+
- No production code changes are required; all fixes are in test files and `pyproject.toml`.
167+
- The warning-to-error promotion in `pyproject.toml` ensures this class of bug is caught immediately in CI going forward.
168+
169+
### Change Log
170+
- 2026-03-02: Initial plan created.
171+
- 2026-03-02: Refinement — corrected Group 3 root cause analysis. Source tests are `test_credential_submit_triggers_worker` and `test_password_submitted_triggers_on_submit` (not `test_credential_login_success_dismisses`). Both already mock `run_worker`; fix is closing the coroutine arg, matching Group 2 pattern. Added missing source test to summary table. Specified `filterwarnings` pattern. Corrected source count from 5 to 7.
172+
173+
## Execution Summary
174+
175+
**Status**: Completed Successfully
176+
**Completed Date**: 2026-03-02
177+
178+
### Results
179+
All 8 original RuntimeWarnings eliminated. One additional unawaited coroutine (`test_sets_media_theme` in `TestApplyMediaTheme`) was discovered during validation — it was hidden among the original 8 GC-attributed warnings but became visible once the other sources were fixed. Total: 9 unawaited coroutines fixed across 4 test files + 1 config file.
180+
181+
**Files modified:**
182+
- `tests/test_cli_commands.py` — patched `async_main` in 3 `TestMain` tests
183+
- `tests/test_tui_actions.py` — closed abandoned coroutines in `TestRunCommand` (2 tests) and `TestApplyMediaTheme` (1 test)
184+
- `tests/test_tui_screens.py` — closed coroutine args in `TestAuthScreen` (2 tests)
185+
- `pyproject.toml` — added `filterwarnings = ["error::RuntimeWarning"]`
186+
187+
**Validation results:**
188+
- 1080 tests passed, 0 warnings
189+
- Coverage: 97.62% (above 95% threshold)
190+
- ruff: all checks passed
191+
- mypy: no issues found
192+
193+
### Noteworthy Events
194+
- During Phase 2 validation, the `filterwarnings = ["error::RuntimeWarning"]` setting exposed a 9th unawaited coroutine in `TestApplyMediaTheme.test_sets_media_theme` that was not identified in the original plan. This test mocks `_run_command` with `MagicMock()`, which discards the `write_parameters` coroutine passed to it. This was fixed immediately during Phase 2.
195+
- Task 2 agent replaced `AsyncMock()()` with plain `async def _noop()` functions in `TestRunCommand` tests (instead of just adding `.close()`). This is an equally valid approach that avoids the `AsyncMock` internal `_execute_mock_call` coroutine leak entirely.
196+
197+
### Recommendations
198+
- The `filterwarnings = ["error::RuntimeWarning"]` setting now serves as a permanent safety net. Any future tests that create unawaited coroutines will fail immediately rather than producing silent warnings.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
id: 1
3+
group: "fix-pytest-warnings"
4+
dependencies: []
5+
status: "completed"
6+
created: 2026-03-02
7+
skills:
8+
- python-testing
9+
- unittest-mock
10+
---
11+
# Fix TestMain unawaited coroutine warnings in test_cli_commands.py
12+
13+
## Objective
14+
Eliminate the `coroutine 'async_main' was never awaited` RuntimeWarnings produced by all three `TestMain` tests in `tests/test_cli_commands.py`.
15+
16+
## Skills Required
17+
- Python testing with pytest
18+
- unittest.mock (MagicMock, patch)
19+
20+
## Acceptance Criteria
21+
- [ ] All three `TestMain` tests (`test_main_calls_async_main`, `test_main_verbose_logging`, `test_main_no_verbose_logging`) no longer produce unawaited coroutine warnings
22+
- [ ] All three tests continue to pass with their existing assertions
23+
- [ ] No new warnings introduced
24+
25+
## Technical Requirements
26+
27+
All three tests patch `flameconnect.cli.asyncio` with a `MagicMock`, making `asyncio.run` a no-op. However, `async_main(args)` at `cli.py:894` is the real function — calling it creates a real coroutine that is passed to the mocked `asyncio.run()` and discarded.
28+
29+
**Fix**: Additionally patch `flameconnect.cli.async_main` in each test. When `async_main` is a `MagicMock`, calling `async_main(args)` returns a `MagicMock` (not a coroutine), so no RuntimeWarning is produced.
30+
31+
**File to modify**: `tests/test_cli_commands.py`
32+
**Tests to modify**: Lines 1421-1471, class `TestMain`
33+
34+
## Input Dependencies
35+
None — this is an independent fix.
36+
37+
## Output Artifacts
38+
Modified `tests/test_cli_commands.py` with the three `TestMain` tests updated to also patch `async_main`.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
id: 2
3+
group: "fix-pytest-warnings"
4+
dependencies: []
5+
status: "completed"
6+
created: 2026-03-02
7+
skills:
8+
- python-testing
9+
- async-coroutines
10+
---
11+
# Fix TestRunCommand unawaited coroutine warnings in test_tui_actions.py
12+
13+
## Objective
14+
Eliminate the `coroutine 'AsyncMockMixin._execute_mock_call' was never awaited` and `coroutine '_worker' was never awaited` RuntimeWarnings from `test_no_op_when_not_dashboard` and `test_sets_write_in_progress` in `tests/test_tui_actions.py`.
15+
16+
## Skills Required
17+
- Python async/await and coroutine lifecycle
18+
- unittest.mock (AsyncMock)
19+
20+
## Acceptance Criteria
21+
- [ ] `test_no_op_when_not_dashboard` no longer produces an unawaited coroutine warning
22+
- [ ] `test_sets_write_in_progress` no longer produces unawaited coroutine warnings (both AsyncMock and _worker)
23+
- [ ] Both tests continue to pass with their existing assertions
24+
- [ ] No new warnings introduced
25+
26+
## Technical Requirements
27+
28+
**`test_no_op_when_not_dashboard`** (line 2307): Creates `coro = AsyncMock()()` and passes it to `_run_command`. Since `screen` is not a `DashboardScreen`, `_run_command` returns early and `coro` is abandoned.
29+
**Fix**: Call `coro.close()` after the assertion.
30+
31+
**`test_sets_write_in_progress`** (line 2320): Creates `coro = AsyncMock()()` and passes it to `_run_command`. `_run_command` proceeds, creating an inner `_worker()` coroutine stored via `_capture_worker`. The test intentionally never runs the workers.
32+
**Fix**: Close all captured workers after assertions: loop over `app._captured_workers` calling `.close()`.
33+
34+
**File to modify**: `tests/test_tui_actions.py`
35+
**Tests to modify**: Lines 2307-2329, class `TestRunCommand`
36+
37+
## Input Dependencies
38+
None — this is an independent fix.
39+
40+
## Output Artifacts
41+
Modified `tests/test_tui_actions.py` with the two `TestRunCommand` tests updated to close abandoned coroutines.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: 3
3+
group: "fix-pytest-warnings"
4+
dependencies: []
5+
status: "completed"
6+
created: 2026-03-02
7+
skills:
8+
- python-testing
9+
- unittest-mock
10+
---
11+
# Fix TestAuthScreen unawaited coroutine warnings in test_tui_screens.py
12+
13+
## Objective
14+
Eliminate the `coroutine 'AuthScreen._do_credential_login' was never awaited` RuntimeWarnings from `test_credential_submit_triggers_worker` and `test_password_submitted_triggers_on_submit` in `tests/test_tui_screens.py`.
15+
16+
## Skills Required
17+
- Python testing with pytest
18+
- unittest.mock (MagicMock, patch, call_args)
19+
20+
## Acceptance Criteria
21+
- [ ] `test_credential_submit_triggers_worker` no longer produces an unawaited coroutine warning
22+
- [ ] `test_password_submitted_triggers_on_submit` no longer produces an unawaited coroutine warning
23+
- [ ] Both tests continue to pass with their existing assertions
24+
- [ ] No new warnings introduced
25+
26+
## Technical Requirements
27+
28+
Both source tests follow the same pattern: they set email/password input values, trigger `_submit_credentials` (via button press or input submit), which calls `self.run_worker(self._do_credential_login(email, password), ...)`. Since `run_worker` is already patched with a `MagicMock`, the mock receives and discards the `_do_credential_login` coroutine without awaiting it.
29+
30+
**Fix**: After assertions, retrieve the coroutine from `mock_worker.call_args[0][0]` and call `.close()` on it. This explicitly finalizes the coroutine.
31+
32+
**`test_credential_submit_triggers_worker`** (line 1238): Uses `patch.object(app.screen, "run_worker") as mock_worker`. Add `mock_worker.call_args[0][0].close()` after `mock_worker.assert_called_once()`.
33+
34+
**`test_password_submitted_triggers_on_submit`** (line 1308): Uses `patch.object(app.screen, "run_worker")` without naming the mock. Capture the mock via `as mock_worker` and close the coroutine arg after the test body.
35+
36+
**File to modify**: `tests/test_tui_screens.py`
37+
**Tests to modify**: Lines 1238-1248 and lines 1308-1318, class `TestAuthScreen`
38+
39+
## Input Dependencies
40+
None — this is an independent fix.
41+
42+
## Output Artifacts
43+
Modified `tests/test_tui_screens.py` with the two `TestAuthScreen` tests updated to close abandoned coroutines.

0 commit comments

Comments
 (0)