-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsqlalchemy_driver_test.py
More file actions
569 lines (476 loc) · 19.7 KB
/
sqlalchemy_driver_test.py
File metadata and controls
569 lines (476 loc) · 19.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
import json
import pytest
import pytest_asyncio
from riverqueue.job import AttemptError
import sqlalchemy
import sqlalchemy.ext.asyncio
from datetime import datetime, timezone
from typing import AsyncIterator, Iterator
from unittest.mock import patch
from riverqueue import (
MAX_ATTEMPTS_DEFAULT,
PRIORITY_DEFAULT,
QUEUE_DEFAULT,
AsyncClient,
Client,
InsertManyParams,
InsertOpts,
JobState,
UniqueOpts,
)
from riverqueue.driver import riversqlalchemy
from riverqueue.driver.riversqlalchemy import dbsqlc
class TestAsyncClient:
#
# fixtures
#
@pytest_asyncio.fixture
@staticmethod
async def test_tx(
engine_async: sqlalchemy.ext.asyncio.AsyncEngine,
) -> AsyncIterator[sqlalchemy.ext.asyncio.AsyncConnection]:
async with engine_async.connect() as conn_tx:
# Force SQLAlchemy to open a transaction.
#
# SQLAlchemy seems to be designed to operate as surprisingly as
# possible. Invoking `begin()` doesn't actually start a transaction.
# Instead, it only does so lazily when a command is first issued. This
# can be a big problem for our internal code, because when it wants to
# start a transaction of its own to do say, a uniqueness check, unless
# another SQL command has already executed it'll accidentally start a
# top-level transaction instead of one in a test transaction that'll be
# rolled back, and cause our tests to commit test jobs. So to work
# around that, we make sure to fire an initial command, thereby forcing
# a transaction to begin. Absolutely terrible design.
await conn_tx.execute(sqlalchemy.text("SELECT 1"))
yield conn_tx
await conn_tx.rollback()
@pytest_asyncio.fixture
@staticmethod
async def client(
test_tx: sqlalchemy.ext.asyncio.AsyncConnection,
) -> AsyncClient:
return AsyncClient(riversqlalchemy.AsyncDriver(test_tx))
#
# tests
#
@pytest.mark.asyncio
async def test_insert_job_from_row(self, client, simple_args, test_tx):
insert_res = await client.insert(simple_args)
job = insert_res.job
assert job
assert isinstance(job.args, dict)
assert job.attempt == 0
assert job.attempted_by is None
assert job.created_at.tzinfo == timezone.utc
assert job.errors is None
assert job.kind == "simple"
assert job.max_attempts == MAX_ATTEMPTS_DEFAULT
assert isinstance(job.metadata, dict)
assert job.priority == PRIORITY_DEFAULT
assert job.queue == QUEUE_DEFAULT
assert job.scheduled_at.tzinfo == timezone.utc
assert job.state == JobState.AVAILABLE
assert job.tags == []
now = datetime.now(timezone.utc)
job_row = await dbsqlc.river_job.AsyncQuerier(test_tx).job_insert_full(
dbsqlc.river_job.JobInsertFullParams(
args=json.dumps(dict(foo="args")),
attempt=0,
attempted_at=None,
created_at=datetime.now(),
errors=[
AttemptError(
at=now,
attempt=1,
error="message",
trace="trace",
).to_json(),
],
finalized_at=datetime.now(),
kind="custom_kind",
max_attempts=MAX_ATTEMPTS_DEFAULT,
metadata=json.dumps(dict(foo="metadata")),
priority=PRIORITY_DEFAULT,
queue=QUEUE_DEFAULT,
scheduled_at=datetime.now(),
state=JobState.COMPLETED,
tags=[],
unique_key=b"unique_key",
)
)
job = riversqlalchemy.sql_alchemy_driver.job_from_row(job_row)
assert job
assert job.args == dict(foo="args")
assert job.errors == [
AttemptError(
at=now,
attempt=1,
error="message",
trace="trace",
)
]
assert job.finalized_at.tzinfo == timezone.utc
assert job.metadata == dict(foo="metadata")
assert job.unique_key == b"unique_key"
#
# tests below this line should match what are in the sync client tests below
#
@pytest.mark.asyncio
async def test_insert_with_only_args(self, client, simple_args):
insert_res = await client.insert(simple_args)
assert insert_res.job
@pytest.mark.asyncio
async def test_insert_tx(self, client, engine_async, simple_args, test_tx):
insert_res = await client.insert_tx(test_tx, simple_args)
assert insert_res.job
job = await dbsqlc.river_job.AsyncQuerier(test_tx).job_get_by_id(
id=insert_res.job.id
)
assert job
async with engine_async.begin() as test_tx2:
job = await dbsqlc.river_job.AsyncQuerier(test_tx2).job_get_by_id(
id=insert_res.job.id
)
assert job is None
await test_tx2.rollback()
@pytest.mark.asyncio
async def test_insert_with_opts(self, client, simple_args):
insert_opts = InsertOpts(queue="high_priority", unique_opts=None)
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert insert_res.job.unique_key is None
assert insert_res.job.unique_states is None
@pytest.mark.asyncio
async def test_insert_with_unique_opts_by_args(self, client, simple_args):
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_args=True))
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
@pytest.mark.asyncio
async def test_insert_with_unique_opts_by_period(
self, mock_datetime, client, simple_args
):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_period=900))
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@pytest.mark.asyncio
async def test_insert_with_unique_opts_by_queue(self, client, simple_args):
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_queue=True))
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@pytest.mark.asyncio
async def test_insert_with_unique_opts_by_state(self, client, simple_args):
insert_opts = InsertOpts(
unique_opts=UniqueOpts(
by_state=[
JobState.AVAILABLE,
JobState.PENDING,
JobState.RUNNING,
JobState.SCHEDULED,
]
)
)
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
@pytest.mark.asyncio
async def test_insert_with_unique_opts_all_fast_path(
self, mock_datetime, client, simple_args
):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(
unique_opts=UniqueOpts(by_args=True, by_period=900, by_queue=True)
)
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
@pytest.mark.asyncio
async def test_insert_with_unique_opts_all(
self, mock_datetime, client, simple_args
):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(
unique_opts=UniqueOpts(
by_args=True,
by_period=900,
by_queue=True,
by_state=[
JobState.AVAILABLE,
JobState.COMPLETED,
JobState.PENDING,
JobState.RUNNING,
JobState.SCHEDULED,
],
)
)
insert_res = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = await client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@pytest.mark.asyncio
async def test_insert_many_with_only_args(self, client, simple_args):
results = await client.insert_many([simple_args])
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
@pytest.mark.asyncio
async def test_insert_many_with_insert_opts(self, client, simple_args):
results = await client.insert_many(
[
InsertManyParams(
args=simple_args,
insert_opts=InsertOpts(queue="high_priority", unique_opts=None),
)
]
)
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
@pytest.mark.asyncio
async def test_insert_many_tx(self, client, simple_args, test_tx):
results = await client.insert_many_tx(test_tx, [simple_args])
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
@pytest.mark.asyncio
async def test_insert_many_preserves_distinct_args(self, client):
# Insert mixed types and ensure each row retains its own args and kind
from dataclasses import dataclass
@dataclass
class TypeA:
n: int
kind: str = "simple_a"
def to_json(self) -> str:
return json.dumps({"a": self.n})
@dataclass
class TypeB:
s: str
kind: str = "simple_b"
def to_json(self) -> str:
return json.dumps({"b": self.s})
batch = [TypeA(1), TypeB("x"), TypeA(2), TypeB("y")]
results = await client.insert_many(batch)
assert len(results) == 4
for res, arg in zip(results, batch):
if isinstance(arg, TypeA):
assert res.job.kind == "simple_a"
assert res.job.args == {"a": arg.n}
else:
assert res.job.kind == "simple_b"
assert res.job.args == {"b": arg.s}
class TestSyncClient:
#
# fixtures
#
@pytest.fixture
@staticmethod
def test_tx(engine: sqlalchemy.Engine) -> Iterator[sqlalchemy.Connection]:
with engine.connect() as conn_tx:
# Force SQLAlchemy to open a transaction.
#
# See explanatory comment in `test_tx()` above.
conn_tx.execute(sqlalchemy.text("SELECT 1"))
yield conn_tx
conn_tx.rollback()
@pytest.fixture
@staticmethod
def client(test_tx: sqlalchemy.Connection) -> Client:
return Client(riversqlalchemy.Driver(test_tx))
#
# tests; should match with tests for the async client above
#
def test_insert_with_only_args(self, client, simple_args):
insert_res = client.insert(simple_args)
assert insert_res.job
def test_insert_tx(self, client, engine, simple_args, test_tx):
insert_res = client.insert_tx(test_tx, simple_args)
assert insert_res.job
job = dbsqlc.river_job.Querier(test_tx).job_get_by_id(id=insert_res.job.id)
assert job
with engine.begin() as test_tx2:
job = dbsqlc.river_job.Querier(test_tx2).job_get_by_id(id=insert_res.job.id)
assert job is None
test_tx2.rollback()
def test_insert_with_opts(self, client, simple_args):
insert_opts = InsertOpts(queue="high_priority", unique_opts=None)
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert insert_res.job.unique_key is None
assert insert_res.job.unique_states is None
def test_insert_with_unique_opts_by_args(self, client, simple_args):
print("self", self)
print("client", client)
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_args=True))
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
def test_insert_with_unique_opts_by_period(
self, mock_datetime, client, simple_args
):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_period=900))
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
def test_insert_with_unique_opts_by_queue(self, client, simple_args):
insert_opts = InsertOpts(unique_opts=UniqueOpts(by_queue=True))
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
def test_insert_with_unique_opts_by_state(self, client, simple_args):
insert_opts = InsertOpts(
unique_opts=UniqueOpts(
by_state=[
JobState.AVAILABLE,
JobState.COMPLETED,
JobState.PENDING,
JobState.RETRYABLE,
JobState.RUNNING,
JobState.SCHEDULED,
]
)
)
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert insert_res.job.unique_states == [
JobState.AVAILABLE,
JobState.COMPLETED,
JobState.PENDING,
JobState.RETRYABLE,
JobState.RUNNING,
JobState.SCHEDULED,
]
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
def test_insert_with_unique_opts_all_fast_path(
self, mock_datetime, client, simple_args
):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(
unique_opts=UniqueOpts(by_args=True, by_period=900, by_queue=True)
)
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
@patch("datetime.datetime")
def test_insert_with_unique_opts_all(self, mock_datetime, client, simple_args):
mock_datetime.now.return_value = datetime(
2024, 6, 1, 12, 0, 0, tzinfo=timezone.utc
)
insert_opts = InsertOpts(
unique_opts=UniqueOpts(
by_args=True,
by_period=900,
by_queue=True,
by_state=[
JobState.AVAILABLE,
JobState.COMPLETED,
JobState.PENDING,
JobState.RUNNING,
JobState.SCHEDULED,
], # non-default states activate slow path
)
)
insert_res = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res.job
assert not insert_res.unique_skipped_as_duplicated
insert_res2 = client.insert(simple_args, insert_opts=insert_opts)
assert insert_res2.job == insert_res.job
assert insert_res2.unique_skipped_as_duplicated
def test_insert_many_with_only_args(self, client, simple_args):
results = client.insert_many([simple_args])
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
def test_insert_many_with_insert_opts(self, client, simple_args):
results = client.insert_many(
[
InsertManyParams(
args=simple_args,
insert_opts=InsertOpts(queue="high_priority", unique_opts=None),
)
]
)
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
def test_insert_many_tx(self, client, simple_args, test_tx):
results = client.insert_many_tx(test_tx, [simple_args])
assert len(results) == 1
assert results[0].unique_skipped_as_duplicated is False
assert results[0].job.id > 0
def test_insert_many_preserves_distinct_args(self, client):
# Insert mixed types and ensure each row retains its own args and kind
from dataclasses import dataclass
@dataclass
class TypeA:
n: int
kind: str = "simple_a"
def to_json(self) -> str:
return json.dumps({"a": self.n})
@dataclass
class TypeB:
s: str
kind: str = "simple_b"
def to_json(self) -> str:
return json.dumps({"b": self.s})
batch = [TypeA(1), TypeB("x"), TypeA(2), TypeB("y")]
results = client.insert_many(batch)
assert len(results) == 4
for res, arg in zip(results, batch):
if isinstance(arg, TypeA):
assert res.job.kind == "simple_a"
assert res.job.args == {"a": arg.n}
else:
assert res.job.kind == "simple_b"
assert res.job.args == {"b": arg.s}