5
5
import gc
6
6
import itertools
7
7
import os
8
- import re
9
8
import sqlite3
10
9
from typing import MutableMapping
11
10
from unittest .mock import MagicMock , patch
@@ -179,7 +178,9 @@ async def test_queries(database_url):
179
178
assert result == "example1"
180
179
181
180
# fetch_val() with no rows
182
- query = sqlalchemy .sql .select (* [notes .c .text ]).where (notes .c .text == "impossible" )
181
+ query = sqlalchemy .sql .select (* [notes .c .text ]).where (
182
+ notes .c .text == "impossible"
183
+ )
183
184
result = await database .fetch_val (query = query )
184
185
assert result is None
185
186
@@ -496,7 +497,9 @@ async def check_transaction(transaction, active_transaction):
496
497
assert transaction ._transaction is active_transaction
497
498
498
499
async with database .transaction () as transaction :
499
- await asyncio .create_task (check_transaction (transaction , transaction ._transaction ))
500
+ await asyncio .create_task (
501
+ check_transaction (transaction , transaction ._transaction )
502
+ )
500
503
501
504
502
505
@pytest .mark .parametrize ("database_url" , DATABASE_URLS )
@@ -509,18 +512,24 @@ async def test_transaction_context_child_task_inheritance_example(database_url):
509
512
async with Database (database_url ) as database :
510
513
async with database .transaction ():
511
514
# Create a note
512
- await database .execute (notes .insert ().values (id = 1 , text = "setup" , completed = True ))
515
+ await database .execute (
516
+ notes .insert ().values (id = 1 , text = "setup" , completed = True )
517
+ )
513
518
514
519
# Change the note from the same task
515
- await database .execute (notes .update ().where (notes .c .id == 1 ).values (text = "prior" ))
520
+ await database .execute (
521
+ notes .update ().where (notes .c .id == 1 ).values (text = "prior" )
522
+ )
516
523
517
524
# Confirm the change
518
525
result = await database .fetch_one (notes .select ().where (notes .c .id == 1 ))
519
526
assert result .text == "prior"
520
527
521
528
async def run_update_from_child_task (connection ):
522
529
# Change the note from a child task
523
- await connection .execute (notes .update ().where (notes .c .id == 1 ).values (text = "test" ))
530
+ await connection .execute (
531
+ notes .update ().where (notes .c .id == 1 ).values (text = "test" )
532
+ )
524
533
525
534
await asyncio .create_task (run_update_from_child_task (database .connection ()))
526
535
@@ -573,7 +582,9 @@ async def test_transaction_context_sibling_task_isolation_example(database_url):
573
582
574
583
async def tx1 (connection ):
575
584
async with connection .transaction ():
576
- await db .execute (notes .insert (), values = {"id" : 1 , "text" : "tx1" , "completed" : False })
585
+ await db .execute (
586
+ notes .insert (), values = {"id" : 1 , "text" : "tx1" , "completed" : False }
587
+ )
577
588
setup .set ()
578
589
await done .wait ()
579
590
@@ -875,7 +886,9 @@ async def test_transaction_decorator_concurrent(database_url):
875
886
876
887
@database .transaction ()
877
888
async def insert_data ():
878
- await database .execute (query = notes .insert ().values (text = "example" , completed = True ))
889
+ await database .execute (
890
+ query = notes .insert ().values (text = "example" , completed = True )
891
+ )
879
892
880
893
async with database :
881
894
await asyncio .gather (
0 commit comments