Tortoise.get_connection in pytest test raises a KeyError
See original GitHub issueDescribe the bug My project uses some raw SQL. For this, I use Tortoise.get_connection() to get a DB connection. This fails when I run unit tests with pytest with a KeyError.
To Reproduce
test_connection.py:
from tortoise import Tortoise
async def test_get_connection():
c = Tortoise.get_connection('default')
$ pytest test_connection.py
Expected behavior The test should succeed without an exception. I also tried ‘models’ and ‘test’ for the connection name.
Additional context
This seems to be caused by tortoise.contrib.test.initializer()
which contains this code:
_CONNECTIONS = Tortoise._connections.copy()
_CONN_MAP = current_transaction_map.copy()
Tortoise.apps = {}
Tortoise._connections = {}
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Tortoise-orm raise KeyError in High Concurrency
I use Tortoise-orm in FastAPI, Mysql connection pool settings is {"minsize":8, "maxsize":16} 。 # models.py class Device(models.
Read more >How to write and report assertions in tests - Pytest
pytest allows you to use the standard Python assert for verifying expectations and values in Python tests. For example, you can write the...
Read more >Changelog — Tortoise ORM v0.17.3 Documentation
.clone() will raise a ParamsError if tortoise can't generate a primary key. ... Check whether charset name is valid for the MySQL connection...
Read more >KeyError: 'TEST' during running pytest - M220P - MongoDB
Hi, Really need some help for running pytest here. ... raise KeyError(key) ... (mflix) linxz-MAC:tests linxz$ pytest -m connection.
Read more >How to Check if an Exception Is Raised (or Not) With pytest
Solution: Enclose your code in a try/except block and and if the code raises, you can catch it and print a nice message....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve found a workaround. This is my create_db fixture.
And the function looks like this:
@janpascal I have the same problems with pytest (and to be honest I don’t want to switch to other test framework or unittest class-based style), but I found a solution to use a connection name in
transaction.atomic
decorator. The general difference between my and your setup is that I use module names during Tortoise initialize (in conftest and the application)Like this:
In that case Tortoise will create current_transaction_map[name] link in
tortoise.Tortoise._init_connections
and you can get it with@transaction.atomic("models")
.Hope this will help.
UPD: No, it’s not, now I’ve got a problem in the application 😅
UPD2 I made this ugly hack to get what I want. I’m using TESTING in my settings to understand is this a test environment, so I’ve added this to the decorator:
Looks awful, but it works.
I believe the reason that it works is here:
The we clear
Tortoise._connections
intortoise.contrib.test.initializer
, butcurrent_transaction_map
left untouched.