2021-06-29 19:43:31 -07:00
|
|
|
import json
|
|
|
|
|
|
|
|
from botocore.stub import Stubber
|
|
|
|
from freezegun import freeze_time
|
|
|
|
|
|
|
|
from datahub.ingestion.api.common import PipelineContext
|
2021-07-26 13:06:52 -07:00
|
|
|
from datahub.ingestion.source.aws.sagemaker import (
|
|
|
|
SagemakerSource,
|
|
|
|
SagemakerSourceConfig,
|
|
|
|
)
|
|
|
|
from datahub.ingestion.source.aws.sagemaker_processors.jobs import SAGEMAKER_JOB_TYPES
|
2021-06-29 19:43:31 -07:00
|
|
|
from tests.test_helpers import mce_helpers
|
|
|
|
from tests.unit.test_sagemaker_source_stubs import (
|
2021-07-19 11:30:43 -07:00
|
|
|
describe_endpoint_response_1,
|
|
|
|
describe_endpoint_response_2,
|
2021-06-29 19:43:31 -07:00
|
|
|
describe_feature_group_response_1,
|
|
|
|
describe_feature_group_response_2,
|
|
|
|
describe_feature_group_response_3,
|
2021-07-19 11:30:43 -07:00
|
|
|
describe_group_response,
|
2021-07-08 16:16:16 -07:00
|
|
|
describe_model_response_1,
|
|
|
|
describe_model_response_2,
|
2021-07-19 11:30:43 -07:00
|
|
|
get_first_model_package_incoming_response,
|
|
|
|
get_model_group_incoming_response,
|
|
|
|
get_second_model_package_incoming_response,
|
2021-07-08 16:16:16 -07:00
|
|
|
job_stubs,
|
2021-07-19 11:30:43 -07:00
|
|
|
list_actions_response,
|
|
|
|
list_artifacts_response,
|
|
|
|
list_contexts_response,
|
|
|
|
list_endpoints_response,
|
2021-06-29 19:43:31 -07:00
|
|
|
list_feature_groups_response,
|
2021-07-19 11:30:43 -07:00
|
|
|
list_first_endpoint_incoming_response,
|
|
|
|
list_first_endpoint_outgoing_response,
|
|
|
|
list_groups_response,
|
2021-07-08 16:16:16 -07:00
|
|
|
list_models_response,
|
2021-07-19 11:30:43 -07:00
|
|
|
list_second_endpoint_incoming_response,
|
|
|
|
list_second_endpoint_outgoing_response,
|
2021-06-29 19:43:31 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
FROZEN_TIME = "2020-04-14 07:00:00"
|
|
|
|
|
|
|
|
|
|
|
|
def sagemaker_source() -> SagemakerSource:
|
|
|
|
return SagemakerSource(
|
|
|
|
ctx=PipelineContext(run_id="sagemaker-source-test"),
|
|
|
|
config=SagemakerSourceConfig(aws_region="us-west-2"),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@freeze_time(FROZEN_TIME)
|
|
|
|
def test_sagemaker_ingest(tmp_path, pytestconfig):
|
|
|
|
|
|
|
|
sagemaker_source_instance = sagemaker_source()
|
|
|
|
|
|
|
|
with Stubber(sagemaker_source_instance.sagemaker_client) as sagemaker_stubber:
|
|
|
|
|
2021-07-19 11:30:43 -07:00
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_actions",
|
|
|
|
list_actions_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_artifacts",
|
|
|
|
list_artifacts_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_contexts",
|
|
|
|
list_contexts_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
list_first_endpoint_incoming_response,
|
|
|
|
{
|
|
|
|
"DestinationArn": "arn:aws:sagemaker:us-west-2:123412341234:action/deploy-the-first-endpoint"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
list_first_endpoint_outgoing_response,
|
|
|
|
{
|
|
|
|
"SourceArn": "arn:aws:sagemaker:us-west-2:123412341234:action/deploy-the-first-endpoint"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
list_second_endpoint_incoming_response,
|
|
|
|
{
|
|
|
|
"DestinationArn": "arn:aws:sagemaker:us-west-2:123412341234:action/deploy-the-second-endpoint"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
list_second_endpoint_outgoing_response,
|
|
|
|
{
|
|
|
|
"SourceArn": "arn:aws:sagemaker:us-west-2:123412341234:action/deploy-the-second-endpoint"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
get_model_group_incoming_response,
|
|
|
|
{
|
|
|
|
"DestinationArn": "arn:aws:sagemaker:us-west-2:123412341234:context/a-model-package-group-context"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
get_first_model_package_incoming_response,
|
|
|
|
{
|
|
|
|
"DestinationArn": "arn:aws:sagemaker:us-west-2:123412341234:artifact/the-first-model-package-artifact"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_associations",
|
|
|
|
get_second_model_package_incoming_response,
|
|
|
|
{
|
|
|
|
"DestinationArn": "arn:aws:sagemaker:us-west-2:123412341234:artifact/the-second-model-package-artifact"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-06-29 19:43:31 -07:00
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_feature_groups",
|
|
|
|
list_feature_groups_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_feature_group",
|
|
|
|
describe_feature_group_response_1,
|
|
|
|
{
|
|
|
|
"FeatureGroupName": "test-2",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_feature_group",
|
|
|
|
describe_feature_group_response_2,
|
|
|
|
{
|
|
|
|
"FeatureGroupName": "test-1",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_feature_group",
|
|
|
|
describe_feature_group_response_3,
|
|
|
|
{
|
|
|
|
"FeatureGroupName": "test",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-07-08 16:16:16 -07:00
|
|
|
for job_type, job in job_stubs.items():
|
|
|
|
|
|
|
|
job_info = SAGEMAKER_JOB_TYPES[job_type]
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
job_info.list_command,
|
|
|
|
job["list"],
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
for job_type, job in job_stubs.items():
|
|
|
|
|
|
|
|
job_info = SAGEMAKER_JOB_TYPES[job_type]
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
job_info.describe_command,
|
|
|
|
job["describe"],
|
|
|
|
{job_info.describe_name_key: job["describe_name"]},
|
|
|
|
)
|
|
|
|
|
2021-07-19 11:30:43 -07:00
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_endpoints",
|
|
|
|
list_endpoints_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_endpoint",
|
|
|
|
describe_endpoint_response_1,
|
|
|
|
{"EndpointName": "the-first-endpoint"},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_endpoint",
|
|
|
|
describe_endpoint_response_2,
|
|
|
|
{"EndpointName": "the-second-endpoint"},
|
|
|
|
)
|
|
|
|
|
2021-07-22 13:33:15 -07:00
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_model_package_groups",
|
|
|
|
list_groups_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_model_package_group",
|
|
|
|
describe_group_response,
|
|
|
|
{"ModelPackageGroupName": "a-model-package-group"},
|
|
|
|
)
|
|
|
|
|
2021-07-15 18:56:13 -07:00
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"list_models",
|
|
|
|
list_models_response,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_model",
|
|
|
|
describe_model_response_1,
|
|
|
|
{"ModelName": "the-first-model"},
|
|
|
|
)
|
|
|
|
|
|
|
|
sagemaker_stubber.add_response(
|
|
|
|
"describe_model",
|
|
|
|
describe_model_response_2,
|
|
|
|
{"ModelName": "the-second-model"},
|
|
|
|
)
|
|
|
|
|
2021-06-29 19:43:31 -07:00
|
|
|
mce_objects = [
|
|
|
|
wu.mce.to_obj() for wu in sagemaker_source_instance.get_workunits()
|
|
|
|
]
|
|
|
|
|
|
|
|
with open(str(tmp_path / "sagemaker_mces.json"), "w") as f:
|
|
|
|
json.dump(mce_objects, f, indent=2)
|
|
|
|
|
2021-06-30 16:53:20 -07:00
|
|
|
# Verify the output.
|
2021-06-29 19:43:31 -07:00
|
|
|
test_resources_dir = pytestconfig.rootpath / "tests/unit/sagemaker"
|
2021-06-30 16:53:20 -07:00
|
|
|
mce_helpers.check_golden_file(
|
|
|
|
pytestconfig,
|
|
|
|
output_path=tmp_path / "sagemaker_mces.json",
|
|
|
|
golden_path=test_resources_dir / "sagemaker_mces_golden.json",
|
2021-06-29 19:43:31 -07:00
|
|
|
)
|