-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,27 @@ | ||
from anyio import Path | ||
|
||
import pytest | ||
from fastapi import status | ||
from httpx import AsyncClient | ||
|
||
# Integration tests | ||
pytestmark = pytest.mark.anyio | ||
|
||
|
||
async def test_import_animals(client: AsyncClient): | ||
# Arrange | ||
expected_status = status.HTTP_201_CREATED | ||
headers = {"Content-type": "multipart/form-data; boundary={}"} | ||
|
||
path = Path("tests/api/nonsense.xlsx") | ||
|
||
_bytes = await path.read_bytes() | ||
|
||
response = await client.post( | ||
"/nonsense/import", | ||
files={"xlsx": ("nonsense.xlsx", _bytes)}, | ||
headers=headers, | ||
) | ||
|
||
assert response.status_code == expected_status | ||
assert response.json() == {'filename': 'nonsense.xlsx', 'nonsense_records': 10} |