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.

Post History

66%
+2 −0
Q&A how can I run pytest on Flask routes?

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_pyfil...

0 answers  ·  posted 2mo ago by GeraldS‭  ·  edited 2mo ago by GeraldS‭

Question python flask pytest
#2: Post edited by user avatar GeraldS‭ · 2024-08-16T09:17:33Z (2 months ago)
corrected argument, still not working
  • I'm trying to implement pytest for one of my Python Flask projects.
  • The application is instanciated like this in `appname.py`
  • ```python
  • 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:
  • ```python
  • 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", data={"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()`](https://flask.palletsprojects.com/en/3.0.x/testing/#sending-requests-with-the-test-client) function.
  • All I get is a 404 response for every route.
  • What am I missing?
  • I'm trying to implement pytest for one of my Python Flask projects.
  • The application is instanciated like this in `appname.py`
  • ```python
  • 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:
  • ```python
  • 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()`](https://flask.palletsprojects.com/en/3.0.x/testing/#sending-requests-with-the-test-client) function.
  • All I get is a 404 response for every route.
  • What am I missing?
#1: Initial revision by user avatar GeraldS‭ · 2024-08-16T08:47:42Z (2 months ago)
how can I run pytest on Flask routes?
I'm trying to implement pytest for one of my Python Flask projects.

The application is instanciated like this in `appname.py`

```python
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:

```python
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", data={"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()`](https://flask.palletsprojects.com/en/3.0.x/testing/#sending-requests-with-the-test-client) function.

All I get is a 404 response for every route.

What am I missing?