From 481bc70a364c38f112a58e69d1f5e1088ab23dcc Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 20 Apr 2018 15:34:12 -0700 Subject: refactor tests --- tests/frontend.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/frontend.py (limited to 'tests/frontend.py') diff --git a/tests/frontend.py b/tests/frontend.py new file mode 100644 index 00000000..e177f8c0 --- /dev/null +++ b/tests/frontend.py @@ -0,0 +1,32 @@ + +import os +import json +import pytest +import fatcat +import fatcat.sql +from fatcat.models import * +import unittest +import tempfile + + +@pytest.fixture +def app(): + fatcat.app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite://' + fatcat.app.testing = True + fatcat.app.debug = True + fatcat.db.session.remove() + fatcat.db.drop_all() + fatcat.db.create_all() + fatcat.sql.populate_db() + return fatcat.app.test_client() + + +def test_static_routes(app): + + for route in ('/health', '/robots.txt', '/', '/about'): + rv = app.get(route) + assert rv.status_code == 200 + + assert app.get("/static/bogus/route").status_code == 404 + + -- cgit v1.2.3