Skip to content

Commit 9e2ef9e

Browse files
committed
Update views.py
update to sqlalchemy 2.0
1 parent 734df09 commit 9e2ef9e

File tree

5 files changed

+48
-40
lines changed

5 files changed

+48
-40
lines changed

src/allocation/adapters/orm.py

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
import logging
22
from sqlalchemy import (
33
Table,
4-
MetaData,
54
Column,
65
Integer,
76
String,
87
Date,
98
ForeignKey,
109
event,
1110
)
12-
from sqlalchemy.orm import mapper, relationship
11+
from sqlalchemy.orm import registry, relationship
1312

1413
from allocation.domain import model
1514

1615
logger = logging.getLogger(__name__)
1716

18-
metadata = MetaData()
17+
mapper_registry = registry()
1918

2019
order_lines = Table(
2120
"order_lines",
22-
metadata,
21+
mapper_registry.metadata,
2322
Column("id", Integer, primary_key=True, autoincrement=True),
2423
Column("sku", String(255)),
2524
Column("qty", Integer, nullable=False),
@@ -28,14 +27,14 @@
2827

2928
products = Table(
3029
"products",
31-
metadata,
30+
mapper_registry.metadata,
3231
Column("sku", String(255), primary_key=True),
3332
Column("version_number", Integer, nullable=False, server_default="0"),
3433
)
3534

3635
batches = Table(
3736
"batches",
38-
metadata,
37+
mapper_registry.metadata,
3938
Column("id", Integer, primary_key=True, autoincrement=True),
4039
Column("reference", String(255)),
4140
Column("sku", ForeignKey("products.sku")),
@@ -45,15 +44,15 @@
4544

4645
allocations = Table(
4746
"allocations",
48-
metadata,
47+
mapper_registry.metadata,
4948
Column("id", Integer, primary_key=True, autoincrement=True),
5049
Column("orderline_id", ForeignKey("order_lines.id")),
5150
Column("batch_id", ForeignKey("batches.id")),
5251
)
5352

5453
allocations_view = Table(
5554
"allocations_view",
56-
metadata,
55+
mapper_registry.metadata,
5756
Column("orderid", String(255)),
5857
Column("sku", String(255)),
5958
Column("batchref", String(255)),
@@ -62,8 +61,8 @@
6261

6362
def start_mappers():
6463
logger.info("Starting mappers")
65-
lines_mapper = mapper(model.OrderLine, order_lines)
66-
batches_mapper = mapper(
64+
lines_mapper = mapper_registry.map_imperatively(model.OrderLine, order_lines)
65+
batches_mapper = mapper_registry.map_imperatively(
6766
model.Batch,
6867
batches,
6968
properties={
@@ -74,7 +73,7 @@ def start_mappers():
7473
)
7574
},
7675
)
77-
mapper(
76+
mapper_registry.map_imperatively(
7877
model.Product,
7978
products,
8079
properties={"batches": relationship(batches_mapper)},

src/allocation/service_layer/handlers.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from typing import List, Dict, Callable, Type, TYPE_CHECKING
55
from allocation.domain import commands, events, model
66
from allocation.domain.model import OrderLine
7+
from sqlalchemy.sql import text
78

89
if TYPE_CHECKING:
910
from allocation.adapters import notifications
@@ -83,10 +84,10 @@ def add_allocation_to_read_model(
8384
):
8485
with uow:
8586
uow.session.execute(
86-
"""
87-
INSERT INTO allocations_view (orderid, sku, batchref)
88-
VALUES (:orderid, :sku, :batchref)
89-
""",
87+
text(
88+
"INSERT INTO allocations_view (orderid, sku, batchref)"
89+
" VALUES (:orderid, :sku, :batchref)"
90+
),
9091
dict(orderid=event.orderid, sku=event.sku, batchref=event.batchref),
9192
)
9293
uow.commit()
@@ -98,10 +99,10 @@ def remove_allocation_from_read_model(
9899
):
99100
with uow:
100101
uow.session.execute(
101-
"""
102-
DELETE FROM allocations_view
103-
WHERE orderid = :orderid AND sku = :sku
104-
""",
102+
text(
103+
"DELETE FROM allocations_view"
104+
" WHERE orderid = :orderid AND sku = :sku"
105+
),
105106
dict(orderid=event.orderid, sku=event.sku),
106107
)
107108
uow.commit()

src/allocation/views.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from allocation.service_layer import unit_of_work
2+
from sqlalchemy.sql import text
23

34

45
def allocations(orderid: str, uow: unit_of_work.SqlAlchemyUnitOfWork):
56
with uow:
67
results = uow.session.execute(
7-
"""
8-
SELECT sku, batchref FROM allocations_view WHERE orderid = :orderid
9-
""",
8+
text(
9+
"SELECT sku, batchref FROM allocations_view WHERE orderid = :orderid"
10+
),
1011
dict(orderid=orderid),
1112
)
12-
return [dict(r) for r in results]
13+
return [r._asdict() for r in results]

tests/conftest.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from sqlalchemy.orm import sessionmaker, clear_mappers
1212
from tenacity import retry, stop_after_delay
1313

14-
from allocation.adapters.orm import metadata, start_mappers
14+
from allocation.adapters.orm import mapper_registry, start_mappers
1515
from allocation import config
1616

1717
pytest.register_assert_rewrite("tests.e2e.api_client")
@@ -20,7 +20,7 @@
2020
@pytest.fixture
2121
def in_memory_sqlite_db():
2222
engine = create_engine("sqlite:///:memory:")
23-
metadata.create_all(engine)
23+
mapper_registry.metadata.create_all(engine)
2424
return engine
2525

2626

@@ -56,7 +56,7 @@ def wait_for_redis_to_come_up():
5656
def postgres_db():
5757
engine = create_engine(config.get_postgres_uri(), isolation_level="SERIALIZABLE")
5858
wait_for_postgres_to_come_up(engine)
59-
metadata.create_all(engine)
59+
mapper_registry.metadata.create_all(engine)
6060
return engine
6161

6262

tests/integration/test_uow.py

+21-14
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,35 @@
88
from allocation.domain import model
99
from allocation.service_layer import unit_of_work
1010
from ..random_refs import random_sku, random_batchref, random_orderid
11+
from sqlalchemy.sql import text
1112

1213
pytestmark = pytest.mark.usefixtures("mappers")
1314

1415

1516
def insert_batch(session, ref, sku, qty, eta, product_version=1):
1617
session.execute(
17-
"INSERT INTO products (sku, version_number) VALUES (:sku, :version)",
18+
text("INSERT INTO products (sku, version_number)" " VALUES (:sku, :version)"),
1819
dict(sku=sku, version=product_version),
1920
)
2021
session.execute(
21-
"INSERT INTO batches (reference, sku, _purchased_quantity, eta)"
22-
" VALUES (:ref, :sku, :qty, :eta)",
22+
text(
23+
"INSERT INTO batches (reference, sku, _purchased_quantity, eta)"
24+
" VALUES (:ref, :sku, :qty, :eta)"
25+
),
2326
dict(ref=ref, sku=sku, qty=qty, eta=eta),
2427
)
2528

2629

2730
def get_allocated_batch_ref(session, orderid, sku):
2831
[[orderlineid]] = session.execute(
29-
"SELECT id FROM order_lines WHERE orderid=:orderid AND sku=:sku",
32+
text("SELECT id FROM order_lines WHERE orderid=:orderid AND sku=:sku"),
3033
dict(orderid=orderid, sku=sku),
3134
)
3235
[[batchref]] = session.execute(
33-
"SELECT b.reference FROM allocations JOIN batches AS b ON batch_id = b.id"
34-
" WHERE orderline_id=:orderlineid",
36+
text(
37+
"SELECT b.reference FROM allocations JOIN batches AS b ON batch_id = b.id"
38+
" WHERE orderline_id=:orderlineid"
39+
),
3540
dict(orderlineid=orderlineid),
3641
)
3742
return batchref
@@ -59,7 +64,7 @@ def test_rolls_back_uncommitted_work_by_default(sqlite_session_factory):
5964
insert_batch(uow.session, "batch1", "MEDIUM-PLINTH", 100, None)
6065

6166
new_session = sqlite_session_factory()
62-
rows = list(new_session.execute('SELECT * FROM "batches"'))
67+
rows = list(new_session.execute(text('SELECT * FROM "batches"')))
6368
assert rows == []
6469

6570

@@ -74,7 +79,7 @@ class MyException(Exception):
7479
raise MyException()
7580

7681
new_session = sqlite_session_factory()
77-
rows = list(new_session.execute('SELECT * FROM "batches"'))
82+
rows = list(new_session.execute(text('SELECT * FROM "batches"')))
7883
assert rows == []
7984

8085

@@ -113,20 +118,22 @@ def test_concurrent_updates_to_version_are_not_allowed(postgres_session_factory)
113118
thread2.join()
114119

115120
[[version]] = session.execute(
116-
"SELECT version_number FROM products WHERE sku=:sku",
121+
text("SELECT version_number FROM products WHERE sku=:sku"),
117122
dict(sku=sku),
118123
)
119124
assert version == 2
120125
[exception] = exceptions
121126
assert "could not serialize access due to concurrent update" in str(exception)
122127

123128
orders = session.execute(
124-
"SELECT orderid FROM allocations"
125-
" JOIN batches ON allocations.batch_id = batches.id"
126-
" JOIN order_lines ON allocations.orderline_id = order_lines.id"
127-
" WHERE order_lines.sku=:sku",
129+
text(
130+
"SELECT orderid FROM allocations"
131+
" JOIN batches ON allocations.batch_id = batches.id"
132+
" JOIN order_lines ON allocations.orderline_id = order_lines.id"
133+
" WHERE order_lines.sku=:sku"
134+
),
128135
dict(sku=sku),
129136
)
130137
assert orders.rowcount == 1
131138
with unit_of_work.SqlAlchemyUnitOfWork(postgres_session_factory) as uow:
132-
uow.session.execute("select 1")
139+
uow.session.execute(text("select 1"))

0 commit comments

Comments
 (0)