2021-10-01 02:32:18 +03:00
|
|
|
import json
|
2021-02-27 17:45:49 +03:00
|
|
|
|
|
|
|
# Runtime import to avoid syntax errors in samples on Python < 3.5 and reach top-dir
|
|
|
|
import os
|
|
|
|
_TOP_DIR = os.path.abspath(
|
|
|
|
os.path.sep.join((
|
|
|
|
os.path.dirname(__file__),
|
2021-10-01 02:32:18 +03:00
|
|
|
"../",
|
2021-02-27 17:45:49 +03:00
|
|
|
)),
|
|
|
|
)
|
|
|
|
_SAMPLES_DIR = os.path.abspath(
|
|
|
|
os.path.sep.join((
|
|
|
|
os.path.dirname(__file__),
|
2021-10-01 02:32:18 +03:00
|
|
|
"../samples/",
|
2021-02-27 17:45:49 +03:00
|
|
|
)),
|
|
|
|
)
|
|
|
|
import sys
|
|
|
|
sys.path.append(_TOP_DIR)
|
|
|
|
sys.path.append(_SAMPLES_DIR)
|
|
|
|
|
|
|
|
from wiringflask import web
|
|
|
|
|
|
|
|
|
2021-10-18 23:19:03 +03:00
|
|
|
def test_wiring_with_flask():
|
|
|
|
client = web.app.test_client()
|
2021-02-27 17:45:49 +03:00
|
|
|
|
2021-10-18 23:19:03 +03:00
|
|
|
with web.app.app_context():
|
|
|
|
response = client.get("/")
|
2021-02-27 17:45:49 +03:00
|
|
|
|
2021-10-18 23:19:03 +03:00
|
|
|
assert response.status_code == 200
|
|
|
|
assert json.loads(response.data) == {"result": "OK"}
|