Giter Club home page Giter Club logo

Comments (10)

tomchristie avatar tomchristie commented on August 24, 2024 1

@yeraydiazdiaz Final remaining line here is in write_no_block. We use that interface in the HTTP/2 case in order to strictly write the HTTP/2 connection initialization, without allowing for any race conditions of "we've hit an async/await, so the task switched out under us, and wrote some different data first".

Because uvicorn doesn't currently have HTTP/2 support we're only ever testing out against a mock HTTP/2 server implementation, and we're never hitting that line.

I'm just going to pragma: nocover it for now as unreachable in test.

from httpx.

yeraydiazdiaz avatar yeraydiazdiaz commented on August 24, 2024

The merged PRs and #64 is as much as I've been able to increase the coverage, the report on that branch is as follows:

+ venv/bin/coverage report -m
Name                                      Stmts   Miss  Cover   Missing
-----------------------------------------------------------------------
httpcore/__init__.py                         10      0   100%
httpcore/client.py                          132      0   100%
httpcore/concurrency.py                      90      3    97%   79, 93-94
httpcore/config.py                           88      0   100%
httpcore/decoders.py                         63      0   100%
httpcore/dispatch/__init__.py                 0      0   100%
httpcore/dispatch/connection.py              58      0   100%
httpcore/dispatch/connection_pool.py         96      3    97%   78-80
httpcore/dispatch/http11.py                  73      3    96%   69, 100-103
httpcore/dispatch/http2.py                   91      0   100%
httpcore/exceptions.py                       17      0   100%
httpcore/interfaces.py                       36      0   100%
httpcore/models.py                          482      0   100%
httpcore/status_codes.py                      2      0   100%
httpcore/utils.py                            22      0   100%
tests/client/test_async_client.py            72      0   100%
tests/client/test_client.py                  86      0   100%
tests/client/test_redirects.py              158      0   100%
tests/conftest.py                            49      0   100%
tests/dispatch/__init__.py                    0      0   100%
tests/dispatch/test_connection_pools.py      68      0   100%
tests/dispatch/test_connections.py           20      0   100%
tests/dispatch/test_http2.py                 32      0   100%
tests/dispatch/utils.py                      58      0   100%
tests/models/test_headers.py                 94      0   100%
tests/models/test_queryparams.py             26      0   100%
tests/models/test_requests.py                61      0   100%
tests/models/test_responses.py              113      0   100%
tests/models/test_url.py                     23      0   100%
tests/test_config.py                         56      0   100%
tests/test_decoders.py                       59      0   100%
tests/test_timeouts.py                       19      0   100%
-----------------------------------------------------------------------
TOTAL                                      2254      9    99%
  • httpcore/dispatch/http11.py 73 3 96% 69, 100-103
    • Line 69 covers receiving an informational response which I haven't been able to reproduce from our server fixture.
    • Lines 100-103: Close with H11 protocol error, I've tried manually reproducing an error but it would require reaching into the connection pool and manually closing the connection simply to trigger a pass, I'd say it's a candidate for pragma: nocover
  • httpcore/concurrency.py 90 3 97% 79, 93-94
    • Line 79: Covers the Writer.write_no_block method, which I'm not sure what it does or how to reproduce it.
    • Lines 93-94: Handles an exception on stream_writer.drain to raise a WriteTimeout, I don't know how to recreate its conditions in a test.
  • httpcore/dispatch/connection_pool.py 96 3 97% 78-80
    • Lines 78-80: are the body of ConnectionStore.__getitem__ which I'm not clear on what it does as it seems to return the key if it's in the store or None otherwise, which seems like a membership test?

Any pointers?

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

Stonkin great work here!
Sending an Expect : 100-continue header ought to trigger Uvicorn to issue a 100 informational response. That’d knock off one more!

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

I think closing a steaming response without reading it should trigger the h11 protocol error case, but I’m not 100% without reviewing it more thoroughly.

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

For the WriteTimeout, try sending a large request in test_timeouts.py, to the slow_response endpoint, using a tiny write timeout.

from httpx.

yeraydiazdiaz avatar yeraydiazdiaz commented on August 24, 2024

Awesome, thanks for the tips! I'll try those out (in separate PRs) today 👍

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

Rad.

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

Thanks so much for your help on this!

from httpx.

yeraydiazdiaz avatar yeraydiazdiaz commented on August 24, 2024

No worries, glad we could get it done 🎉

from httpx.

tomchristie avatar tomchristie commented on August 24, 2024

🤩

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