Skip to content

Commit

Permalink
✅ test: remove unneeded vars
Browse files Browse the repository at this point in the history
  • Loading branch information
gazorby committed Nov 18, 2022
1 parent 9ad03e3 commit 9a9606d
Showing 1 changed file with 0 additions and 51 deletions.
51 changes: 0 additions & 51 deletions tests/integrations/starlite/test_starlite.py
Expand Up @@ -18,57 +18,6 @@
from starlite.status_codes import HTTP_500_INTERNAL_SERVER_ERROR
from starlite.testing import TestClient

PICTURE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "photo.jpg")

BODY_JSON = {"some": "json", "for": "testing", "nested": {"numbers": 123}}

BODY_FORM = """--fd721ef49ea403a6\r\nContent-Disposition: form-data; name="username"\r\n\r\nJane\r\n--fd721ef49ea403a6\r\nContent-Disposition: form-data; name="password"\r\n\r\nhello123\r\n--fd721ef49ea403a6\r\nContent-Disposition: form-data; name="photo"; filename="photo.jpg"\r\nContent-Type: image/jpg\r\nContent-Transfer-Encoding: base64\r\n\r\n{{image_data}}\r\n--fd721ef49ea403a6--\r\n""".replace(
"{{image_data}}", str(base64.b64encode(open(PICTURE, "rb").read()))
)

PARSED_FORM = starlite.datastructures.FormMultiDict(
[
("username", "Jane"),
("password", "hello123"),
(
"photo",
starlite.datastructures.UploadFile(
filename="photo.jpg",
file=open(PICTURE, "rb"),
content_type="image/jpeg",
),
),
]
)
PARSED_BODY = {
"username": "Jane",
"password": "hello123",
"photo": AnnotatedValue(
"", {"len": 28023, "rem": [["!raw", "x", 0, 28023]]}
), # size of photo.jpg read above
}

# Dummy ASGI scope for creating mock Starlette requests
SCOPE = {
"client": ("172.29.0.10", 34784),
"headers": [
[b"host", b"example.com"],
[b"user-agent", b"Mozilla/5.0 Gecko/20100101 Firefox/60.0"],
[b"content-type", b"application/json"],
[b"accept-language", b"en-US,en;q=0.5"],
[b"accept-encoding", b"gzip, deflate, br"],
[b"upgrade-insecure-requests", b"1"],
[b"cookie", b"yummy_cookie=choco; tasty_cookie=strawberry"],
],
"http_version": "0.0",
"method": "GET",
"path": "/path",
"query_string": b"qs=hello",
"scheme": "http",
"server": ("172.28.0.10", 8000),
"type": "http",
}


class SampleMiddleware(AbstractMiddleware):
async def __call__(self, scope, receive, send) -> None:
Expand Down

0 comments on commit 9a9606d

Please sign in to comment.