Giter Club home page Giter Club logo

Comments (4)

EdLeafe avatar EdLeafe commented on September 7, 2024 1

ok, I think I understand. I guess that I wasn't using matching correctly. Thanks for the help!

from pytest_httpx.

Colin-b avatar Colin-b commented on September 7, 2024

Hello @EdLeafe ,

Can you confirm my understanding of the issue first?

  1. You want to mock a 401 response to URL1.
  2. You want to mock the auth API response with the token.
  3. You want to mock a 2xx response to URL1 with the provided token (in headers I assume)?

Ad placement: Please note that I am also the author of httpx-auth, aiming at handling authentication logic for you. ;)

from pytest_httpx.

EdLeafe avatar EdLeafe commented on September 7, 2024

Thanks for the ad, but we're using an internal auth system. 😁

The system caches auth tokens which expire after a period of time. So the general flow is this:

async def call_api(...):
    try:
       await make_request(<args with cached token>)
    except Unauthorized:
       new_token = get_new_token()
       await make_request(<args with new token>)

To test this case there are 3 async calls needed: failed auth, new token, succeed. How can I test the call_api() method with httpx?

from pytest_httpx.

Colin-b avatar Colin-b commented on September 7, 2024

You can match on headers, so I would do something along this line (assuming you send your token in the standard way):

def test_new_token_is_used_when_token_is_expired(httpx_mock):
    # Mock request with expired token response
    httpx_mock.add_response(match_headers={'Authorization': 'Bearer EXPIRED_TOKEN'}, status_code=401)
    # Mock new token response
    httpx_mock.add_response(url="AUTH_URL", json={"token": "NEW_TOKEN"})
    # Mock request with new token response
    httpx_mock.add_response(match_headers={'Authorization': 'Bearer NEW_TOKEN'})

Of course you have to return the proper body and filter on the proper information but that's the spirit. All those information can be found in the documentation.

Don't hesitate to ask if something is not clear. Always a good opportunity to clean up documentation.

from pytest_httpx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.