-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtest_api_server_sql.py
More file actions
972 lines (886 loc) · 32.3 KB
/
Copy pathtest_api_server_sql.py
File metadata and controls
972 lines (886 loc) · 32.3 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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
import json
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
from cloud_pipelines_backend import filter_query_sql
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_raises(self, session_factory, service):
with session_factory() as session:
with pytest.raises(errors.ApiValidationError, match="non-empty value"):
service.list(
session=session,
filter="created_by:",
)
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
def test_create_writes_created_by_annotation(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="alice@example.com",
)
with session_factory() as session:
annotations = service.list_annotations(session=session, id=run.id)
assert (
annotations[filter_query_sql.PipelineRunAnnotationSystemKey.CREATED_BY]
== "alice@example.com"
)
def test_create_without_created_by_no_annotation(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 (
filter_query_sql.PipelineRunAnnotationSystemKey.CREATED_BY
not in annotations
)
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 "team" not in 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 == {}
def test_set_annotation_rejects_system_key(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
with pytest.raises(
errors.ApiValidationError, match="reserved for system use"
):
service.set_annotation(
session=session,
id=run.id,
key="system/pipeline_run.created_by",
value="hacker",
user_name="user1",
)
def test_delete_annotation_rejects_system_key(self, session_factory, service):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="user1",
)
with session_factory() as session:
with pytest.raises(
errors.ApiValidationError, match="reserved for system use"
):
service.delete_annotation(
session=session,
id=run.id,
key="system/pipeline_run.created_by",
user_name="user1",
)
class TestFilterQueryApiWiring:
def test_filter_query_validates_invalid_json(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"}}]}',
)
class TestFilterQueryIntegration:
def _set_annotation(self, *, session_factory, service, run_id, key, value):
with session_factory() as session:
service.set_annotation(
session=session,
id=run_id,
key=key,
value=value,
user_name="test-user",
)
def test_annotation_key_exists(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="team",
value="ml-ops",
)
fq = json.dumps({"and": [{"key_exists": {"key": "team"}}]})
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].id == run1.id
def test_annotation_value_equals(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="team",
value="ml-ops",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run2.id,
key="team",
value="data-eng",
)
fq = json.dumps({"and": [{"value_equals": {"key": "team", "value": "ml-ops"}}]})
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].id == run1.id
def test_annotation_value_contains(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="team",
value="ml-ops",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run2.id,
key="team",
value="data-eng",
)
fq = json.dumps(
{"and": [{"value_contains": {"key": "team", "value_substring": "ml"}}]}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].id == run1.id
def test_annotation_value_in(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run3 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="env",
value="prod",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run2.id,
key="env",
value="staging",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run3.id,
key="env",
value="dev",
)
fq = json.dumps(
{"and": [{"value_in": {"key": "env", "values": ["prod", "staging"]}}]}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 2
result_ids = {r.id for r in result.pipeline_runs}
assert run1.id in result_ids
assert run2.id in result_ids
def test_and_multiple_annotations(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="team",
value="ml-ops",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="env",
value="prod",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run2.id,
key="team",
value="ml-ops",
)
fq = json.dumps(
{
"and": [
{"key_exists": {"key": "team"}},
{"value_equals": {"key": "env", "value": "prod"}},
]
}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].id == run1.id
def test_or_annotations(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run3 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="team",
value="ml-ops",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run2.id,
key="project",
value="search",
)
fq = json.dumps(
{
"or": [
{"key_exists": {"key": "team"}},
{"key_exists": {"key": "project"}},
]
}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 2
result_ids = {r.id for r in result.pipeline_runs}
assert run1.id in result_ids
assert run2.id in result_ids
def test_not_annotation(self, session_factory, service):
run1 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
run2 = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run1.id,
key="deprecated",
value="true",
)
fq = json.dumps({"and": [{"not": {"key_exists": {"key": "deprecated"}}}]})
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].id == run2.id
def test_no_match(self, session_factory, service):
_create_run(session_factory, service, root_task=_make_task_spec())
fq = json.dumps({"and": [{"key_exists": {"key": "nonexistent"}}]})
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 0
def test_time_range_raises_not_implemented(self, session_factory, service):
fq = json.dumps(
{
"and": [
{
"time_range": {
"key": "system/pipeline_run.date.created_at",
"start_time": "2024-01-01T00:00:00Z",
}
}
]
}
)
with session_factory() as session:
with pytest.raises(NotImplementedError, match="TimeRangePredicate"):
service.list(
session=session,
filter_query=fq,
)
def test_pagination_preserves_filter_query(self, session_factory, service):
for _ in range(12):
run = _create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="test-user",
)
self._set_annotation(
session_factory=session_factory,
service=service,
run_id=run.id,
key="team",
value="ml-ops",
)
fq = json.dumps({"and": [{"key_exists": {"key": "team"}}]})
with session_factory() as session:
page1 = service.list(
session=session,
filter_query=fq,
)
assert len(page1.pipeline_runs) == 10
assert page1.next_page_token is not None
decoded = filter_query_sql._decode_page_token(page_token=page1.next_page_token)
assert decoded["filter_query"] == fq
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_filter_query_created_by(self, session_factory, service):
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="alice",
)
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="bob",
)
fq = json.dumps(
{
"and": [
{
"value_equals": {
"key": filter_query_sql.PipelineRunAnnotationSystemKey.CREATED_BY,
"value": "alice",
}
}
]
}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].created_by == "alice"
def test_filter_query_created_by_me(self, session_factory, service):
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="alice",
)
_create_run(
session_factory,
service,
root_task=_make_task_spec(),
created_by="bob",
)
fq = json.dumps(
{
"and": [
{
"value_equals": {
"key": filter_query_sql.PipelineRunAnnotationSystemKey.CREATED_BY,
"value": "me",
}
}
]
}
)
with session_factory() as session:
result = service.list(
session=session,
filter_query=fq,
current_user="alice",
)
assert len(result.pipeline_runs) == 1
assert result.pipeline_runs[0].created_by == "alice"
def test_filter_query_created_by_unsupported_predicate(
self, session_factory, service
):
fq = json.dumps(
{
"and": [
{
"value_contains": {
"key": filter_query_sql.PipelineRunAnnotationSystemKey.CREATED_BY,
"value_substring": "al",
}
}
]
}
)
with session_factory() as session:
with pytest.raises(errors.ApiValidationError, match="not supported"):
service.list(
session=session,
filter_query=fq,
)