move home route into web diretory
This commit is contained in:
@@ -33,11 +33,6 @@ class ProxyState:
|
||||
app = Quart(__name__)
|
||||
|
||||
|
||||
@app.route('/')
|
||||
async def hello():
|
||||
return Response(response="Hello, world")
|
||||
|
||||
|
||||
@app.route('/-/ready')
|
||||
async def ready():
|
||||
if ProxyState.is_up():
|
||||
|
||||
8
app/src/web/route.py
Normal file
8
app/src/web/route.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from quart import Response
|
||||
|
||||
from server import app
|
||||
|
||||
|
||||
@app.route('/')
|
||||
async def hello():
|
||||
return Response(response="Hello, world")
|
||||
@@ -33,16 +33,6 @@ def test_get_log_level():
|
||||
log_lvl = get_log_level()
|
||||
assert log_lvl == None
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_home():
|
||||
"""Test the home route."""
|
||||
client = app.test_client()
|
||||
response = await client.get('/')
|
||||
assert response.status_code == 200
|
||||
result = await response.get_data()
|
||||
assert result == b"Hello, world"
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_ready():
|
||||
"""Test the ready route."""
|
||||
|
||||
15
app/tests/test_web_route.py
Normal file
15
app/tests/test_web_route.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# test_with_pytest.py
|
||||
import pytest
|
||||
from web.route import app
|
||||
|
||||
pytest_plugins = ('pytest_asyncio',)
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_home():
|
||||
"""Test the home route."""
|
||||
client = app.test_client()
|
||||
response = await client.get('/')
|
||||
assert response.status_code == 200
|
||||
result = await response.get_data()
|
||||
assert result == b"Hello, world"
|
||||
Reference in New Issue
Block a user