Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sniffio fails to detect asyncio when run via twisted internet asyncio reactor #51

Open
BrynGibson opened this issue Jan 22, 2025 · 2 comments

Comments

@BrynGibson
Copy link

I have been experimenting with using httpx as an async http client and have built an api client around this. I have been attempting to run test cases using twisted trial unittests. However running this fails as get an error with sniffio failing to detect that it is within an asyncio event loop.

Here is an example of showing what causes the error.

from twisted.trial import unittest
from foo import APIClientAsync


import asyncio
from twisted.internet import asyncioreactor
asyncioreactor.install(asyncio.get_event_loop())

class TestAPIClient(unittest.TestCase):

    def setUp(self):
        self.client = APIClientAsync()


    async def test_client(self):

        result = await self.client.request()

This will give the following error:

sniffio/_impl.py", line 93, in current_async_library raise AsyncLibraryNotFoundError( sniffio._impl.AsyncLibraryNotFoundError: unknown async library, or not in async context

Is this a known error, or is there any known workaround for this? Or should I switch to a different testing framework to enable asyncio detection?

@A5rocks
Copy link
Contributor

A5rocks commented Feb 24, 2025

sniffio is ultimately an attempt at standardizing figuring out the current async library. As part of this, things like trio and trio-asyncio have to tell it what is the current async library -- twisted's asyncio support seems like it would require this too? (so this is a feature twisted would have to implement)

I'm not too sure about how twisted does asyncio support under the hood so I won't immediately close this too.

@A5rocks
Copy link
Contributor

A5rocks commented Feb 24, 2025

Looking at sniffio's code, I'm surprised it doesn't work -- does asyncio.current_task() not work via twisted's asyncio support?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants