92 lines
2.1 KiB
Python
92 lines
2.1 KiB
Python
import base64
|
|
import json
|
|
import os
|
|
import uuid
|
|
from typing import List
|
|
|
|
import databases
|
|
import pydantic
|
|
import pytest
|
|
import sqlalchemy
|
|
from fastapi import FastAPI
|
|
from starlette.testclient import TestClient
|
|
|
|
import ormar
|
|
from tests.settings import DATABASE_URL
|
|
|
|
app = FastAPI()
|
|
|
|
database = databases.Database(DATABASE_URL, force_rollback=True)
|
|
metadata = sqlalchemy.MetaData()
|
|
app.state.database = database
|
|
|
|
|
|
@app.on_event("startup")
|
|
async def startup() -> None:
|
|
database_ = app.state.database
|
|
if not database_.is_connected:
|
|
await database_.connect()
|
|
|
|
|
|
@app.on_event("shutdown")
|
|
async def shutdown() -> None:
|
|
database_ = app.state.database
|
|
if database_.is_connected:
|
|
await database_.disconnect()
|
|
|
|
|
|
blob3 = b"\xc3\x28"
|
|
blob4 = b"\xf0\x28\x8c\x28"
|
|
blob5 = b"\xee"
|
|
blob6 = b"\xff"
|
|
|
|
|
|
class BaseMeta(ormar.ModelMeta):
|
|
metadata = metadata
|
|
database = database
|
|
|
|
|
|
class BinaryThing(ormar.Model):
|
|
class Meta(BaseMeta):
|
|
tablename = "things"
|
|
|
|
id: uuid.UUID = ormar.UUID(primary_key=True, default=uuid.uuid4)
|
|
name: str = ormar.Text(default="")
|
|
bt: bytes = ormar.LargeBinary(
|
|
max_length=1000,
|
|
choices=[blob3, blob4, blob5, blob6],
|
|
represent_as_base64_str=True,
|
|
)
|
|
|
|
|
|
@app.get("/things", response_model=List[BinaryThing])
|
|
async def read_things():
|
|
return await BinaryThing.objects.order_by("name").all()
|
|
|
|
|
|
@app.post("/things", response_model=BinaryThing)
|
|
async def create_things(thing: BinaryThing):
|
|
thing = await thing.save()
|
|
return thing
|
|
|
|
|
|
@pytest.fixture(autouse=True, scope="module")
|
|
def create_test_database():
|
|
engine = sqlalchemy.create_engine(DATABASE_URL)
|
|
metadata.create_all(engine)
|
|
yield
|
|
metadata.drop_all(engine)
|
|
|
|
|
|
def test_read_main():
|
|
client = TestClient(app)
|
|
with client as client:
|
|
response = client.post(
|
|
"/things", data=json.dumps({"bt": base64.b64encode(blob3).decode()})
|
|
)
|
|
assert response.status_code == 200
|
|
response = client.get("/things")
|
|
assert response.json()[0]["bt"] == base64.b64encode(blob3).decode()
|
|
thing = BinaryThing(**response.json()[0])
|
|
assert thing.__dict__["bt"] == blob3
|