Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Comments on how can I run pytest on Flask routes?

Post

how can I run pytest on Flask routes?

+2
−0

I'm trying to implement pytest for one of my Python Flask projects.

The application is instanciated like this in appname.py

def create_app():
    app = Flask(__name__)
    app.config.from_pyfile("settings.cfg")
    jinja_partials.register_extensions(app)
    app.wsgi_app = ProxyFix(app.wsgi_app, x_for=1, x_proto=1, x_host=1, x_prefix=1)
    babel = Babel(app, locale_selector=get_locale)
    return app

test_app.py contains, among other test functions this:

import pytest
from appname import *

@pytest.fixture(scope='module')
def client():
    app = create_app()
    app.config.update({
        "TESTING": True,
    })

    with app.app_context():
        with app.test_client() as client:
            yield client

def test_index(client):
    response = client.get("/")
    assert response.status_code == 200

def test_search(client):
    response = client.get("/search", query_string={"search": "someone"})
    assert response.status_code == 200
    print(response)
    assert False

Calling app functions directly from the test functions works fine and I can assert the expected results. But I have trouble testing the responses from the routes of the Flask app with the client.get() function.

All I get is a 404 response for every route.

What am I missing?

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Mock server or run it for real? (2 comments)
Mock server or run it for real?
matthewsnyder‭ wrote about 2 months ago

Are you trying to run your whole server, and test the routes "realistically"? So for example if /search is supposed to do a DB query, will your test also set up that DB and check for a correct response? Or do you want to ignore Flask and its @app.get etc decorators, and only check that the method you wrote is returning the correct thing?

I'm probably less knowledgeable than you on this, but from what I've seen pytest is good for unit tests where you look at a few methods in isolation. To do integration tests where you check if the whole server is working, it makes more sense to just spin up a test instance of that server and hit its API. You could still use pytest, but it would be just making naive API calls with requests and doing asserts on the response, without getting into the internals of your Flask code.

GeraldS‭ wrote about 2 months ago

I want to do test the functionality completely, including proper DB queries. I also plan to set up proper front end testing, but from what I gathered so far this is a) far more complex to set up and b) takes a lot longer, so it is recommended to do unit testing with pytest or similar tools for every commit and do the longer running tests only before doing releases.

Apart from that, Flask does provide the means to do theses tests so I would like to know how to utilize them properly.