-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
fix: reject non-200 download responses #9085
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
zouyonghe
merged 2 commits into
AstrBotDevs:master
from
VectorPeak:fix/download-file-http-errors
Jul 2, 2026
+219
−118
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| import pytest | ||
|
|
||
| from astrbot.core.utils import io | ||
|
|
||
|
|
||
| class _FakeContent: | ||
| def __init__(self, chunks: list[bytes]): | ||
| self._chunks = chunks | ||
|
|
||
| async def read(self, _size: int) -> bytes: | ||
| if self._chunks: | ||
| return self._chunks.pop(0) | ||
| return b"" | ||
|
|
||
|
|
||
| class _FakeResponse: | ||
| def __init__(self, *, status: int, chunks: list[bytes]): | ||
| self.status = status | ||
| self.headers = {"content-length": str(sum(len(chunk) for chunk in chunks))} | ||
| self.content = _FakeContent(chunks) | ||
|
|
||
| async def __aenter__(self): | ||
| return self | ||
|
|
||
| async def __aexit__(self, exc_type, exc, tb): | ||
| return False | ||
|
|
||
|
|
||
| class _FakeSession: | ||
| def __init__(self, response: _FakeResponse): | ||
| self._response = response | ||
|
|
||
| async def __aenter__(self): | ||
| return self | ||
|
|
||
| async def __aexit__(self, exc_type, exc, tb): | ||
| return False | ||
|
|
||
| def get(self, *_args, **_kwargs): | ||
| return self._response | ||
|
|
||
|
|
||
| def _patch_download_session(monkeypatch, response: _FakeResponse): | ||
| monkeypatch.setattr(io.aiohttp, "TCPConnector", lambda **_kwargs: object()) | ||
| monkeypatch.setattr( | ||
| io.aiohttp, | ||
| "ClientSession", | ||
| lambda **_kwargs: _FakeSession(response), | ||
| ) | ||
|
|
||
|
|
||
| @pytest.mark.asyncio | ||
| async def test_download_file_rejects_non_200_response(monkeypatch, tmp_path): | ||
| target_path = tmp_path / "missing.bin" | ||
| _patch_download_session( | ||
| monkeypatch, | ||
| _FakeResponse(status=404, chunks=[b"not found"]), | ||
| ) | ||
|
|
||
| with pytest.raises(RuntimeError, match="HTTP status code: 404"): | ||
| await io.download_file("https://example.test/missing", str(target_path)) | ||
|
|
||
| assert not target_path.exists() | ||
|
sourcery-ai[bot] marked this conversation as resolved.
Outdated
|
||
|
|
||
|
|
||
| @pytest.mark.asyncio | ||
| async def test_download_file_writes_successful_response(monkeypatch, tmp_path): | ||
| target_path = tmp_path / "ok.bin" | ||
| _patch_download_session( | ||
| monkeypatch, | ||
| _FakeResponse(status=200, chunks=[b"hello", b" world"]), | ||
| ) | ||
|
|
||
| await io.download_file("https://example.test/ok.bin", str(target_path)) | ||
|
|
||
| assert target_path.read_bytes() == b"hello world" | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.