diff options
Diffstat (limited to 'python/tests/web_routes.py')
-rw-r--r-- | python/tests/web_routes.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/python/tests/web_routes.py b/python/tests/web_routes.py new file mode 100644 index 00000000..e6387882 --- /dev/null +++ b/python/tests/web_routes.py @@ -0,0 +1,34 @@ + +import json +import tempfile +import pytest +from fatcat_client.rest import ApiException +from fixtures import * + + +def test_static_routes(app): + for route in ('/health.json', '/robots.txt', '/', '/about'): + rv = app.get(route) + assert rv.status_code == 200 + + assert app.get("/static/bogus/route").status_code == 404 + + +def test_all_views(app): + + rv = app.get('/editgroup/aaaaaaaaaaaabo53aaaaaaaaae') + assert rv.status_code == 200 + + rv = app.get('/editgroup/ccccccccccccccccccccccccca') + print(rv) + print(rv.data) + assert rv.status_code == 404 + + #rv = app.get('/editgroup/current') + #assert rv.status_code == 302 + + rv = app.get('/editor/aaaaaaaaaaaabkvkaaaaaaaaae') + assert rv.status_code == 200 + + rv = app.get('/editor/aaaaaaaaaaaabkvkaaaaaaaaae/editgroups') + assert rv.status_code == 200 |