# 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. from __future__ import absolute_import from mock.mock import patch from sagemaker import script_uris from tests.unit.sagemaker.jumpstart.utils import get_special_model_spec @patch("sagemaker.jumpstart.accessors.JumpStartModelsAccessor.get_model_specs") def test_jumpstart_combined_artifacts(patched_get_model_specs): patched_get_model_specs.side_effect = get_special_model_spec model_id_combined_script_artifact = "mock-model-training-prepacked-script-key" uri = script_uris.retrieve( region="us-west-2", script_scope="training", model_id=model_id_combined_script_artifact, model_version="*", ) assert ( uri == "s3://jumpstart-cache-prod-us-west-2/some/key/to/" "training_prepacked_script_key.tar.gz" )