-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtest_api_server_sql.py
More file actions
571 lines (502 loc) · 20.4 KB
/
test_api_server_sql.py
File metadata and controls
571 lines (502 loc) · 20.4 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
570
571
import pytest
from sqlalchemy import orm
from cloud_pipelines_backend import api_server_sql
from cloud_pipelines_backend import backend_types_sql as bts
from cloud_pipelines_backend import component_structures as structures
from cloud_pipelines_backend import database_ops
from cloud_pipelines_backend import errors
class TestExecutionStatusSummary:
def test_initial_state(self):
summary = api_server_sql.ExecutionStatusSummary()
assert summary.total_executions == 0
assert summary.ended_executions == 0
assert summary.has_ended is False
def test_accumulate_all_ended_statuses(self):
"""Add each ended status with 2^i count for robust uniqueness."""
summary = api_server_sql.ExecutionStatusSummary()
ended_statuses = sorted(bts.CONTAINER_STATUSES_ENDED, key=lambda s: s.value)
expected_total = 0
expected_ended = 0
for i, status in enumerate(ended_statuses):
count = 2**i
summary.count_execution_status(status=status, count=count)
expected_total += count
expected_ended += count
assert summary.total_executions == expected_total
assert summary.ended_executions == expected_ended
assert summary.has_ended is True
def test_accumulate_all_in_progress_statuses(self):
"""Add each in-progress status with 2^i count for robust uniqueness."""
summary = api_server_sql.ExecutionStatusSummary()
in_progress_statuses = sorted(
set(bts.ContainerExecutionStatus) - bts.CONTAINER_STATUSES_ENDED,
key=lambda s: s.value,
)
expected_total = 0
for i, status in enumerate(in_progress_statuses):
count = 2**i
summary.count_execution_status(status=status, count=count)
expected_total += count
assert summary.total_executions == expected_total
assert summary.ended_executions == 0
assert summary.has_ended is False
def test_accumulate_all_statuses(self):
"""Add every status with 2^i count. Summary math must be exact."""
summary = api_server_sql.ExecutionStatusSummary()
all_statuses = sorted(bts.ContainerExecutionStatus, key=lambda s: s.value)
expected_total = 0
expected_ended = 0
for i, status in enumerate(all_statuses):
count = 2**i
expected_total += count
if status in bts.CONTAINER_STATUSES_ENDED:
expected_ended += count
summary.count_execution_status(status=status, count=count)
assert summary.total_executions == expected_total
assert summary.ended_executions == expected_ended
assert summary.has_ended == (expected_ended == expected_total)
def _make_task_spec(pipeline_name: str = "test-pipeline") -> structures.TaskSpec:
return structures.TaskSpec(
component_ref=structures.ComponentReference(
spec=structures.ComponentSpec(
name=pipeline_name,
implementation=structures.ContainerImplementation(
container=structures.ContainerSpec(image="test-image:latest"),
),
),
),
)
@pytest.fixture()
def session_factory():
engine = database_ops.create_db_engine(database_uri="sqlite://")
bts._TableBase.metadata.create_all(engine)
return orm.sessionmaker(engine)
@pytest.fixture()
def db_session(session_factory):
with session_factory() as session:
yield session
@pytest.fixture()
def service():
return api_server_sql.PipelineRunsApiService_Sql()
def _create_run(session_factory, service, **kwargs):
"""Create a pipeline run using a fresh session (mirrors production per-request sessions)."""
with session_factory() as session:
return service.create(session, **kwargs)
class TestPipelineRunServiceList:
def test_list_empty(self, session_factory, service):
with session_factory() as session:
result = service.list(
session=session,
)
assert result.pipeline_runs == []
assert result.next_page_token is None
def test_list_returns_pipeline_runs(self, session_factory, service):
_create_run(session_factory, service, root_task=_make_task_spec("pipeline-a"))
_create_run(session_factory, service, root_task=_make_task_spec("pipeline-b"))
with session_factory() as session:
result = service.list(
session=session,
)
assert len(result.pipeline_runs) == 2
def test_list_with_execution_stats(self, session_factory, service):
_create_run(session_factory, service, root_task=_make_task_spec())
with session_factory() as session:
result = service.list(
session=session,
include_execution_stats=True,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].execution_status_stats is not None
def test_list_filter_created_by(self, session_factory, service):
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user2",
)
with session_factory() as session:
result = service.list(
session=session,
filter="created_by:user1",
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].created_by == "user1"
def test_list_filter_created_by_empty(self, session_factory, service):
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by=None,
)
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
result = service.list(
session=session,
filter="created_by:",
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].created_by is None
def test_list_pagination(self, session_factory, service):
for i in range(12):
_create_run(
session_factory,
service,
root_task=_make_task_spec(f"pipeline-{i}"),
)
with session_factory() as session:
page1 = service.list(
session=session,
)
assert len(page1.pipeline_runs) == 10
assert page1.next_page_token is not None
with session_factory() as session:
page2 = service.list(
session=session,
page_token=page1.next_page_token,
)
assert len(page2.pipeline_runs) == 2
assert page2.next_page_token is None
def test_list_filter_unsupported(self, session_factory, service):
with session_factory() as session:
with pytest.raises(NotImplementedError, match="Unsupported filter"):
service.list(
session=session,
filter="unknown_key:value",
)
def test_list_with_pipeline_names(self, session_factory, service):
_create_run(session_factory, service, root_task=_make_task_spec("my-pipeline"))
with session_factory() as session:
result = service.list(
session=session,
include_pipeline_names=True,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].pipeline_name == "my-pipeline"
def test_list_filter_created_by_me(self, session_factory, service):
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="alice@example.com",
)
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="bob@example.com",
)
with session_factory() as session:
result = service.list(
session=session,
current_user="alice@example.com",
filter="created_by:me",
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].created_by == "alice@example.com"
class TestCreatePipelineRunResponse:
def test_base_response(self, session_factory, service):
run = _create_run(session_factory, service, root_task=_make_task_spec())
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
response = service._create_pipeline_run_response(
session=session,
pipeline_run=db_run,
include_pipeline_names=False,
include_execution_stats=False,
)
assert response.id == run.id
assert response.pipeline_name is None
assert response.execution_status_stats is None
def test_pipeline_name_from_task_spec(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec("my-pipeline"),
)
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
response = service._create_pipeline_run_response(
session=session,
pipeline_run=db_run,
include_pipeline_names=True,
include_execution_stats=False,
)
assert response.pipeline_name == "my-pipeline"
def test_pipeline_name_from_extra_data(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec("spec-name"),
)
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
db_run.extra_data = {"pipeline_name": "cached-name"}
session.commit()
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
response = service._create_pipeline_run_response(
session=session,
pipeline_run=db_run,
include_pipeline_names=True,
include_execution_stats=False,
)
assert response.pipeline_name == "cached-name"
def test_pipeline_name_none_when_no_execution_node(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec("some-name"),
)
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
db_run.root_execution_id = "nonexistent-id"
db_run.extra_data = {}
session.commit()
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
response = service._create_pipeline_run_response(
session=session,
pipeline_run=db_run,
include_pipeline_names=True,
include_execution_stats=False,
)
assert response.pipeline_name is None
def test_with_execution_stats(self, session_factory, service):
run = _create_run(session_factory, service, root_task=_make_task_spec())
with session_factory() as session:
db_run = session.get(bts.PipelineRun, run.id)
response = service._create_pipeline_run_response(
session=session,
pipeline_run=db_run,
include_pipeline_names=False,
include_execution_stats=True,
)
assert response.execution_status_stats is not None
class TestPipelineRunServiceCreate:
def test_create_returns_pipeline_run(self, session_factory, service):
result = _create_run(
session_factory, service, root_task=_make_task_spec("my-pipeline")
)
assert result.id is not None
assert result.root_execution_id is not None
assert result.created_at is not None
def test_create_with_created_by(self, session_factory, service):
result = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1@example.com",
)
assert result.created_by == "user1@example.com"
def test_create_with_annotations(self, session_factory, service):
annotations = {"team": "ml-ops", "project": "search"}
result = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
annotations=annotations,
)
assert result.annotations == annotations
def test_create_without_created_by(self, session_factory, service):
result = _create_run(session_factory, service, root_task=_make_task_spec())
assert result.created_by is None
class TestPipelineRunAnnotationCrud:
def test_set_annotation(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
service.set_annotation(
session=session,
id=run.id,
key="team",
value="ml-ops",
user_name="user1",
)
with session_factory() as session:
annotations = service.list_annotations(session=session, id=run.id)
assert annotations == {"team": "ml-ops"}
def test_set_annotation_overwrites(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
service.set_annotation(
session=session,
id=run.id,
key="team",
value="old-value",
user_name="user1",
)
with session_factory() as session:
service.set_annotation(
session=session,
id=run.id,
key="team",
value="new-value",
user_name="user1",
)
with session_factory() as session:
annotations = service.list_annotations(session=session, id=run.id)
assert annotations == {"team": "new-value"}
def test_delete_annotation(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
service.set_annotation(
session=session,
id=run.id,
key="team",
value="ml-ops",
user_name="user1",
)
with session_factory() as session:
service.delete_annotation(
session=session,
id=run.id,
key="team",
user_name="user1",
)
with session_factory() as session:
annotations = service.list_annotations(session=session, id=run.id)
assert annotations == {}
def test_list_annotations_empty(self, session_factory, service):
run = _create_run(session_factory, service, root_task=_make_task_spec())
with session_factory() as session:
annotations = service.list_annotations(session=session, id=run.id)
assert annotations == {}
class TestResolveFilterValue:
def test_no_page_token_no_filter(self):
filter_value, offset = api_server_sql._resolve_filter_value(
filter=None, page_token=None
)
assert filter_value is None
assert offset == 0
def test_no_page_token_with_filter(self):
filter_value, offset = api_server_sql._resolve_filter_value(
filter="created_by:alice",
page_token=None,
)
assert filter_value == "created_by:alice"
assert offset == 0
def test_page_token_overrides_filter(self):
token = api_server_sql._encode_page_token(
{"offset": 20, "filter": "created_by:bob"}
)
filter_value, offset = api_server_sql._resolve_filter_value(
filter="created_by:alice",
page_token=token,
)
assert filter_value == "created_by:bob"
assert offset == 20
def test_page_token_without_filter_key(self):
token = api_server_sql._encode_page_token({"offset": 10})
filter_value, offset = api_server_sql._resolve_filter_value(
filter="created_by:alice",
page_token=token,
)
assert filter_value is None
assert offset == 10
def test_page_token_without_offset_key(self):
token = api_server_sql._encode_page_token({"filter": "created_by:bob"})
filter_value, offset = api_server_sql._resolve_filter_value(
filter=None,
page_token=token,
)
assert filter_value == "created_by:bob"
assert offset == 0
class TestBuildFilterWhereClauses:
def test_no_filter(self):
clauses, next_filter = api_server_sql._build_filter_where_clauses(
filter_value=None,
current_user=None,
)
assert clauses == []
assert next_filter is None
def test_created_by_literal(self):
clauses, next_filter = api_server_sql._build_filter_where_clauses(
filter_value="created_by:alice",
current_user=None,
)
assert len(clauses) == 1
assert next_filter == "created_by:alice"
def test_created_by_me_resolves(self):
clauses, next_filter = api_server_sql._build_filter_where_clauses(
filter_value="created_by:me",
current_user="alice@example.com",
)
assert len(clauses) == 1
assert next_filter == "created_by:alice@example.com"
def test_created_by_me_no_current_user(self):
clauses, next_filter = api_server_sql._build_filter_where_clauses(
filter_value="created_by:me",
current_user=None,
)
assert len(clauses) == 1
assert next_filter == "created_by:"
def test_created_by_empty_value(self):
clauses, next_filter = api_server_sql._build_filter_where_clauses(
filter_value="created_by:",
current_user=None,
)
assert len(clauses) == 1
assert next_filter == "created_by:"
def test_unsupported_key_raises(self):
with pytest.raises(NotImplementedError, match="Unsupported filter"):
api_server_sql._build_filter_where_clauses(
filter_value="unknown_key:value",
current_user=None,
)
def test_text_search_raises(self):
with pytest.raises(NotImplementedError, match="Text search"):
api_server_sql._build_filter_where_clauses(
filter_value="some_text_without_colon",
current_user=None,
)
class TestFilterQueryApiWiring:
def test_filter_query_returns_not_implemented(self, session_factory, service):
valid_json = '{"and": [{"key_exists": {"key": "team"}}]}'
with session_factory() as session:
with pytest.raises(NotImplementedError, match="not yet implemented"):
service.list(
session=session,
filter_query=valid_json,
)
def test_filter_query_validates_before_501(self, session_factory, service):
from pydantic import ValidationError
invalid_json = '{"bad_key": "not_valid"}'
with session_factory() as session:
with pytest.raises(ValidationError):
service.list(
session=session,
filter_query=invalid_json,
)
def test_mutual_exclusivity_rejected(self, session_factory, service):
with session_factory() as session:
with pytest.raises(errors.ApiValidationError, match="Cannot use both"):
service.list(
session=session,
filter="created_by:alice",
filter_query='{"and": [{"key_exists": {"key": "team"}}]}',
)