-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathtest_processing.py
More file actions
1766 lines (1482 loc) · 67 KB
/
test_processing.py
File metadata and controls
1766 lines (1482 loc) · 67 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
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the \"license\" file accompanying this file. This file is
# distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
import pytest
import os
import tempfile
from unittest.mock import Mock, patch, MagicMock, mock_open
from sagemaker.core.processing import (
Processor,
ScriptProcessor,
FrameworkProcessor,
_processing_input_to_request_dict,
_processing_output_to_request_dict,
_get_process_request,
logs_for_processing_job,
)
from sagemaker.core.shapes import (
ProcessingInput,
ProcessingOutput,
ProcessingS3Input,
ProcessingS3Output,
)
from sagemaker.core.network import NetworkConfig
@pytest.fixture
def mock_session():
session = Mock()
session.boto_session = Mock()
session.boto_session.region_name = "us-west-2"
session.sagemaker_client = Mock()
session.default_bucket = Mock(return_value="test-bucket")
session.default_bucket_prefix = "sagemaker"
session.expand_role = Mock(side_effect=lambda x: x)
session.sagemaker_config = {}
return session
class TestProcessorNormalizeArgs:
def test_normalize_args_with_pipeline_variable_code(self, mock_session):
from sagemaker.core.workflow.pipeline_context import PipelineSession
from sagemaker.core.workflow import is_pipeline_variable
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
code_var = Mock()
with patch("sagemaker.core.processing.is_pipeline_variable", return_value=True):
with pytest.raises(ValueError, match="code argument has to be a valid S3 URI"):
processor._normalize_args(code=code_var)
class TestProcessorNormalizeInputs:
def test_normalize_inputs_with_dataset_definition(self, mock_session):
from sagemaker.core.shapes import DatasetDefinition, AthenaDatasetDefinition
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
athena_def = AthenaDatasetDefinition(
catalog="catalog",
database="database",
query_string="SELECT * FROM table",
output_s3_uri="s3://bucket/output",
output_format="PARQUET",
)
dataset_def = DatasetDefinition(athena_dataset_definition=athena_def)
inputs = [ProcessingInput(input_name="data", dataset_definition=dataset_def)]
result = processor._normalize_inputs(inputs)
assert len(result) == 1
assert result[0].dataset_definition == dataset_def
def test_normalize_inputs_with_pipeline_variable_s3_uri(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
# Create a mock that will pass pydantic validation
with patch("sagemaker.core.processing.is_pipeline_variable", return_value=True):
s3_input = ProcessingS3Input(
s3_uri="s3://bucket/input",
local_path="/opt/ml/processing/input",
s3_data_type="S3Prefix",
s3_input_mode="File",
)
inputs = [ProcessingInput(input_name="input-1", s3_input=s3_input)]
result = processor._normalize_inputs(inputs)
assert len(result) == 1
def test_normalize_inputs_with_pipeline_config(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_input = ProcessingS3Input(
s3_uri="/local/path",
local_path="/opt/ml/processing/input",
s3_data_type="S3Prefix",
s3_input_mode="File",
)
inputs = [ProcessingInput(input_name="input-1", s3_input=s3_input)]
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
mock_config.step_name = "test-step"
with patch("sagemaker.core.s3.S3Uploader.upload", return_value="s3://bucket/uploaded"):
result = processor._normalize_inputs(inputs)
assert len(result) == 1
def test_normalize_inputs_invalid_type(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
with pytest.raises(TypeError, match="must be provided as ProcessingInput objects"):
processor._normalize_inputs(["invalid"])
class TestProcessorNormalizeOutputs:
def test_normalize_outputs_with_pipeline_variable(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
with patch("sagemaker.core.processing.is_pipeline_variable", return_value=True):
s3_output = ProcessingS3Output(
s3_uri="s3://bucket/output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="output-1", s3_output=s3_output)]
result = processor._normalize_outputs(outputs)
assert len(result) == 1
def test_normalize_outputs_with_pipeline_config(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri="/local/output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="output-1", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
mock_config.step_name = "test-step"
result = processor._normalize_outputs(outputs)
assert len(result) == 1
def test_normalize_outputs_with_empty_bucket_prefix(self, mock_session):
mock_session.default_bucket_prefix = None
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri="/local/output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="output-1", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
mock_config.step_name = "test-step"
result = processor._normalize_outputs(outputs)
assert len(result) == 1
def test_normalize_outputs_invalid_type(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
with pytest.raises(TypeError, match="must be provided as ProcessingOutput objects"):
processor._normalize_outputs(["invalid"])
class TestBugConditionFileUriReplacedInLocalMode:
"""Bug condition exploration test: file:// URIs should be preserved in local mode.
**Validates: Requirements 1.1, 1.2, 2.1, 2.2**
EXPECTED TO FAIL on unfixed code — failure confirms the bug exists.
The bug is that _normalize_outputs() replaces file:// URIs with s3:// paths
even when the session is a LocalSession (local_mode=True).
"""
@pytest.fixture
def local_mock_session(self):
session = Mock()
session.boto_session = Mock()
session.boto_session.region_name = "us-west-2"
session.sagemaker_client = Mock()
session.default_bucket = Mock(return_value="default-bucket")
session.default_bucket_prefix = "prefix"
session.expand_role = Mock(side_effect=lambda x: x)
session.sagemaker_config = {}
session.local_mode = True
return session
@pytest.mark.parametrize(
"file_uri",
[
"file:///tmp/output",
"file:///home/user/results",
"file:///data/processed",
],
)
def test_normalize_outputs_preserves_file_uri_in_local_mode(self, local_mock_session, file_uri):
"""file:// URIs must be preserved when local_mode=True.
On unfixed code, _normalize_outputs replaces file:// URIs with
s3://default-bucket/prefix/job-name/output/output-1, which is the bug.
"""
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=local_mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri=file_uri,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="my-output", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output.s3_uri == file_uri, (
f"Expected file:// URI to be preserved as '{file_uri}' in local mode, "
f"but got '{result[0].s3_output.s3_uri}'"
)
class TestPreservationNonLocalFileBehavior:
"""Preservation property tests: Non-local-file behavior must remain unchanged.
**Validates: Requirements 3.1, 3.2, 3.3, 3.4**
These tests capture baseline behavior on UNFIXED code. They MUST PASS on both
unfixed and fixed code, confirming no regressions are introduced by the fix.
"""
@pytest.fixture
def session_local_mode_true(self):
session = Mock()
session.boto_session = Mock()
session.boto_session.region_name = "us-west-2"
session.sagemaker_client = Mock()
session.default_bucket = Mock(return_value="default-bucket")
session.default_bucket_prefix = "prefix"
session.expand_role = Mock(side_effect=lambda x: x)
session.sagemaker_config = {}
session.local_mode = True
return session
@pytest.fixture
def session_local_mode_false(self):
session = Mock()
session.boto_session = Mock()
session.boto_session.region_name = "us-west-2"
session.sagemaker_client = Mock()
session.default_bucket = Mock(return_value="default-bucket")
session.default_bucket_prefix = "prefix"
session.expand_role = Mock(side_effect=lambda x: x)
session.sagemaker_config = {}
session.local_mode = False
return session
def _make_processor(self, session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=session,
)
processor._current_job_name = "test-job"
return processor
# --- Requirement 3.1: S3 URIs pass through unchanged regardless of local_mode ---
@pytest.mark.parametrize(
"s3_uri,local_mode_fixture",
[
("s3://my-bucket/path", "session_local_mode_true"),
("s3://my-bucket/path", "session_local_mode_false"),
("s3://another-bucket/deep/nested/path", "session_local_mode_true"),
("s3://another-bucket/deep/nested/path", "session_local_mode_false"),
],
)
def test_s3_uri_preserved_regardless_of_local_mode(self, s3_uri, local_mode_fixture, request):
"""S3 URIs must pass through unchanged regardless of local_mode setting.
**Validates: Requirements 3.1**
"""
session = request.getfixturevalue(local_mode_fixture)
processor = self._make_processor(session)
s3_output = ProcessingS3Output(
s3_uri=s3_uri,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="my-output", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output.s3_uri == s3_uri
# --- Requirement 3.2: Non-S3 URIs with local_mode=False replaced with S3 paths ---
@pytest.mark.parametrize(
"non_s3_uri",
[
"/local/output/path",
"http://example.com/output",
"ftp://server/output",
],
)
def test_non_s3_uri_replaced_when_not_local_mode(self, non_s3_uri, session_local_mode_false):
"""Non-S3 URIs in non-local sessions are replaced with auto-generated S3 paths.
**Validates: Requirements 3.2**
"""
processor = self._make_processor(session_local_mode_false)
s3_output = ProcessingS3Output(
s3_uri=non_s3_uri,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="output-1", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output.s3_uri.startswith("s3://default-bucket/")
# --- Requirement 3.3: Pipeline variable URIs skip normalization ---
def test_pipeline_variable_uri_skips_normalization(self, session_local_mode_false):
"""Pipeline variable URIs skip normalization entirely.
**Validates: Requirements 3.3**
"""
processor = self._make_processor(session_local_mode_false)
s3_output = ProcessingS3Output(
s3_uri="s3://bucket/output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="output-1", s3_output=s3_output)]
with patch("sagemaker.core.processing.is_pipeline_variable", return_value=True):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
# Pipeline variable outputs are appended as-is without URI modification
assert result[0].s3_output.s3_uri == "s3://bucket/output"
# --- Requirement 3.4: Non-ProcessingOutput objects raise TypeError ---
@pytest.mark.parametrize(
"invalid_output",
[
["a string"],
[42],
[{"key": "value"}],
],
)
def test_non_processing_output_raises_type_error(self, invalid_output, session_local_mode_false):
"""Non-ProcessingOutput objects must raise TypeError.
**Validates: Requirements 3.4**
"""
processor = self._make_processor(session_local_mode_false)
with pytest.raises(TypeError, match="must be provided as ProcessingOutput objects"):
processor._normalize_outputs(invalid_output)
# --- Output name auto-generation ---
def test_multiple_outputs_with_s3_uris_preserved(self, session_local_mode_false):
"""Multiple outputs with S3 URIs are all preserved unchanged.
**Validates: Requirements 3.1, 3.2**
"""
processor = self._make_processor(session_local_mode_false)
outputs = [
ProcessingOutput(
output_name="first-output",
s3_output=ProcessingS3Output(
s3_uri="s3://my-bucket/first",
local_path="/opt/ml/processing/output1",
s3_upload_mode="EndOfJob",
),
),
ProcessingOutput(
output_name="second-output",
s3_output=ProcessingS3Output(
s3_uri="s3://my-bucket/second",
local_path="/opt/ml/processing/output2",
s3_upload_mode="EndOfJob",
),
),
]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 2
assert result[0].output_name == "first-output"
assert result[1].output_name == "second-output"
# S3 URIs should be preserved since they already have s3:// scheme
assert result[0].s3_output.s3_uri == "s3://my-bucket/first"
assert result[1].s3_output.s3_uri == "s3://my-bucket/second"
class TestProcessingS3OutputOptionalS3Uri:
"""Tests for ProcessingS3Output with optional s3_uri (issue #5559)."""
def test_processing_s3_output_with_none_s3_uri_creates_successfully(self):
"""Verify ProcessingS3Output can be created with s3_uri=None."""
s3_output = ProcessingS3Output(
s3_uri=None,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
assert s3_output.s3_uri is None
assert s3_output.local_path == "/opt/ml/processing/output"
assert s3_output.s3_upload_mode == "EndOfJob"
def test_processing_s3_output_without_s3_uri_param_creates_successfully(self):
"""Verify ProcessingS3Output works with default None for s3_uri."""
s3_output = ProcessingS3Output(
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
assert s3_output.s3_uri is None
def test_processing_s3_output_with_explicit_s3_uri_preserves_value(self):
"""Regression test: explicit s3_uri string is preserved in the model."""
s3_output = ProcessingS3Output(
s3_uri="s3://my-bucket/my-output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
assert s3_output.s3_uri == "s3://my-bucket/my-output"
assert s3_output.local_path == "/opt/ml/processing/output"
assert s3_output.s3_upload_mode == "EndOfJob"
def test_normalize_outputs_with_none_s3_uri_generates_s3_path(self, mock_session):
"""When s3_uri is None, _normalize_outputs should auto-generate an S3 URI."""
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri=None,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="my-output", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output.s3_uri is not None
assert result[0].s3_output.s3_uri.startswith("s3://")
assert "test-job" in result[0].s3_output.s3_uri
assert "my-output" in result[0].s3_output.s3_uri
def test_normalize_outputs_with_none_s3_uri_and_pipeline_config_generates_join(self, mock_session):
"""When in pipeline context with s3_uri=None, should generate a Join expression."""
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri=None,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="my-output", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
mock_config.step_name = "test-step"
result = processor._normalize_outputs(outputs)
assert len(result) == 1
# In pipeline context, the s3_uri should be a Join object
from sagemaker.core.workflow.functions import Join
assert isinstance(result[0].s3_output.s3_uri, Join)
def test_normalize_outputs_with_none_s3_output_generates_s3_path(self, mock_session):
"""When s3_output is None, _normalize_outputs should create s3_output and auto-generate URI."""
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
outputs = [ProcessingOutput(output_name="my-output")]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output is not None
assert result[0].s3_output.s3_uri is not None
assert result[0].s3_output.s3_uri.startswith("s3://")
assert result[0].s3_output.local_path == "/opt/ml/processing/output"
assert result[0].s3_output.s3_upload_mode == "EndOfJob"
def test_processing_output_to_request_dict_with_none_s3_uri_omits_key(self):
"""When s3_uri is None, S3Uri should be omitted from the request dict."""
s3_output = ProcessingS3Output(
s3_uri=None,
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
processing_output = ProcessingOutput(output_name="results", s3_output=s3_output)
result = _processing_output_to_request_dict(processing_output)
assert result["OutputName"] == "results"
assert "S3Output" in result
assert "S3Uri" not in result["S3Output"]
assert result["S3Output"]["LocalPath"] == "/opt/ml/processing/output"
assert result["S3Output"]["S3UploadMode"] == "EndOfJob"
def test_normalize_outputs_with_explicit_s3_uri_unchanged(self, mock_session):
"""Regression test: explicit s3:// URIs should be preserved."""
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
s3_output = ProcessingS3Output(
s3_uri="s3://my-bucket/my-output",
local_path="/opt/ml/processing/output",
s3_upload_mode="EndOfJob",
)
outputs = [ProcessingOutput(output_name="my-output", s3_output=s3_output)]
with patch("sagemaker.core.workflow.utilities._pipeline_config", None):
result = processor._normalize_outputs(outputs)
assert len(result) == 1
assert result[0].s3_output.s3_uri == "s3://my-bucket/my-output"
class TestProcessorStartNew:
def test_start_new_with_pipeline_session(self, mock_session):
from sagemaker.core.workflow.pipeline_context import PipelineSession
pipeline_session = PipelineSession()
pipeline_session.sagemaker_client = Mock()
pipeline_session.default_bucket = Mock(return_value="test-bucket")
pipeline_session.default_bucket_prefix = "sagemaker"
pipeline_session.expand_role = Mock(side_effect=lambda x: x)
pipeline_session.sagemaker_config = {}
pipeline_session._intercept_create_request = Mock()
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=pipeline_session,
)
with patch.object(
processor,
"_get_process_args",
return_value={
"job_name": "test-job",
"inputs": [],
"output_config": {"Outputs": []},
"resources": {"ClusterConfig": {}},
"stopping_condition": None,
"app_specification": {},
"environment": None,
"network_config": None,
"role_arn": "arn:aws:iam::123456789012:role/SageMakerRole",
"tags": [],
},
):
result = processor._start_new([], [], None)
assert result is None
class TestProcessorGetProcessArgs:
def test_get_process_args_with_stopping_condition(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
max_runtime_in_seconds=3600,
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
args = processor._get_process_args([], [], None)
assert args["stopping_condition"]["MaxRuntimeInSeconds"] == 3600
def test_get_process_args_without_stopping_condition(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
args = processor._get_process_args([], [], None)
assert args["stopping_condition"] is None
def test_get_process_args_with_arguments(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
processor.arguments = ["--arg1", "value1"]
args = processor._get_process_args([], [], None)
assert args["app_specification"]["ContainerArguments"] == ["--arg1", "value1"]
def test_get_process_args_with_entrypoint(self, mock_session):
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
entrypoint=["python", "script.py"],
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
args = processor._get_process_args([], [], None)
assert args["app_specification"]["ContainerEntrypoint"] == ["python", "script.py"]
def test_get_process_args_with_network_config(self, mock_session):
network_config = NetworkConfig(enable_network_isolation=True)
processor = Processor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
network_config=network_config,
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
args = processor._get_process_args([], [], None)
assert args["network_config"] is not None
class TestScriptProcessor:
def test_init_with_sklearn_image(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="sklearn:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
assert processor.command == ["python3"]
def test_get_user_code_name(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
result = processor._get_user_code_name("s3://bucket/path/script.py")
assert result == "script.py"
def test_handle_user_code_url_s3(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
result = processor._handle_user_code_url("s3://bucket/script.py")
assert result == "s3://bucket/script.py"
def test_handle_user_code_url_local_file(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
with tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".py") as f:
f.write("print('test')")
temp_file = f.name
try:
with patch("sagemaker.core.s3.S3Uploader.upload", return_value="s3://bucket/script.py"):
result = processor._handle_user_code_url(temp_file)
assert result == "s3://bucket/script.py"
finally:
os.unlink(temp_file)
def test_handle_user_code_url_file_not_found(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
with pytest.raises(ValueError, match="wasn't found"):
processor._handle_user_code_url("/nonexistent/file.py")
def test_handle_user_code_url_directory(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
with tempfile.TemporaryDirectory() as tmpdir:
with pytest.raises(ValueError, match="must be a file"):
processor._handle_user_code_url(tmpdir)
def test_handle_user_code_url_invalid_scheme(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
with pytest.raises(ValueError, match="url scheme .* is not recognized"):
processor._handle_user_code_url("http://example.com/script.py")
def test_upload_code_with_pipeline_config(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._current_job_name = "test-job"
with tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".py") as f:
f.write("print('test')")
temp_file = f.name
try:
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
mock_config.code_hash = "abc123"
with patch("sagemaker.core.s3.S3Uploader.upload", return_value="s3://bucket/code"):
result = processor._upload_code(temp_file)
assert result == "s3://bucket/code"
finally:
os.unlink(temp_file)
def test_convert_code_and_add_to_inputs(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
inputs = []
result = processor._convert_code_and_add_to_inputs(inputs, "s3://bucket/code.py")
assert len(result) == 1
assert result[0].input_name == "code"
def test_set_entrypoint(self, mock_session):
processor = ScriptProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._set_entrypoint(["python3"], "script.py")
assert processor.entrypoint[-1].endswith("script.py")
class TestFrameworkProcessor:
def test_init_default_command(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
assert processor.command == ["python"]
def test_init_with_code_location(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
code_location="s3://bucket/code/",
sagemaker_session=mock_session,
)
assert processor.code_location == "s3://bucket/code"
def test_patch_inputs_with_payload(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
inputs = []
result = processor._patch_inputs_with_payload(inputs, "s3://bucket/code/sourcedir.tar.gz")
assert len(result) == 1
assert result[0].input_name == "code"
def test_set_entrypoint_framework(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
processor._set_entrypoint(["python"], "runproc.sh")
assert processor.entrypoint[0] == "/bin/bash"
def test_generate_framework_script(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
command=["python3"],
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
script = processor._generate_framework_script("train.py")
assert "#!/bin/bash" in script
assert "train.py" in script
assert "python3" in script
def test_create_and_upload_runproc_with_pipeline(self, mock_session):
processor = FrameworkProcessor(
role="arn:aws:iam::123456789012:role/SageMakerRole",
image_uri="test-image:latest",
instance_count=1,
instance_type="ml.m5.xlarge",
sagemaker_session=mock_session,
)
with patch("sagemaker.core.workflow.utilities._pipeline_config") as mock_config:
mock_config.pipeline_name = "test-pipeline"
with patch(
"sagemaker.core.s3.S3Uploader.upload_string_as_file_body",
return_value="s3://bucket/runproc.sh",
):
result = processor._create_and_upload_runproc(
"train.py", None, "s3://bucket/runproc.sh"
)
assert result == "s3://bucket/runproc.sh"
def test_create_and_upload_runproc_without_pipeline(self, mock_session):