-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
198 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
"""Unit tests for sagemaker-supported APIs.""" | ||
import re | ||
from datetime import datetime | ||
|
||
import boto3 | ||
|
||
from moto import mock_sagemaker | ||
|
||
# See our Development Tips on writing tests for hints on how to write good tests: | ||
# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html | ||
|
||
|
||
@mock_sagemaker | ||
def test_create_feature_group(): | ||
client = boto3.client("sagemaker", region_name="us-east-2") | ||
resp = client.create_feature_group( | ||
FeatureGroupName="some-feature-group-name", | ||
RecordIdentifierFeatureName="some_record_identifier", | ||
EventTimeFeatureName="EventTime", | ||
FeatureDefinitions=[ | ||
{"FeatureName": "some_feature", "FeatureType": "String"}, | ||
{"FeatureName": "EventTime", "FeatureType": "Fractional"}, | ||
{"FeatureName": "some_record_identifier", "FeatureType": "String"}, | ||
], | ||
RoleArn="arn:aws:iam::123456789012:role/AWSFeatureStoreAccess", | ||
OfflineStoreConfig={ | ||
"DisableGlueTableCreation": False, | ||
"S3StorageConfig": {"S3Uri": "s3://mybucket"}, | ||
}, | ||
) | ||
|
||
assert ( | ||
resp["FeatureGroupArn"] | ||
== "arn:aws:sagemaker:us-east-2:123456789012:feature-group/some-feature-group-name" | ||
) | ||
|
||
|
||
@mock_sagemaker | ||
def test_describe_feature_group(): | ||
client = boto3.client("sagemaker", region_name="us-east-2") | ||
feature_group_name = "some-feature-group-name" | ||
record_identifier_feature_name = "some_record_identifier" | ||
event_time_feature_name = "EventTime" | ||
role_arn = "arn:aws:iam::123456789012:role/AWSFeatureStoreAccess" | ||
feature_definitions = [ | ||
{"FeatureName": "some_feature", "FeatureType": "String"}, | ||
{"FeatureName": event_time_feature_name, "FeatureType": "Fractional"}, | ||
{"FeatureName": record_identifier_feature_name, "FeatureType": "String"}, | ||
] | ||
client.create_feature_group( | ||
FeatureGroupName=feature_group_name, | ||
RecordIdentifierFeatureName=record_identifier_feature_name, | ||
EventTimeFeatureName=event_time_feature_name, | ||
FeatureDefinitions=feature_definitions, | ||
RoleArn=role_arn, | ||
OfflineStoreConfig={ | ||
"DisableGlueTableCreation": False, | ||
"S3StorageConfig": {"S3Uri": "s3://mybucket"}, | ||
}, | ||
) | ||
resp = client.describe_feature_group(FeatureGroupName=feature_group_name) | ||
|
||
assert resp["FeatureGroupName"] == feature_group_name | ||
assert ( | ||
resp["FeatureGroupArn"] | ||
== "arn:aws:sagemaker:us-east-2:123456789012:feature-group/some-feature-group-name" | ||
) | ||
assert resp["RecordIdentifierFeatureName"] == record_identifier_feature_name | ||
assert resp["EventTimeFeatureName"] == event_time_feature_name | ||
assert resp["FeatureDefinitions"] == feature_definitions | ||
assert resp["RoleArn"] == role_arn | ||
assert re.match( | ||
r"^some_feature_group_name_[0-9]+$", | ||
resp["OfflineStoreConfig"]["DataCatalogConfig"]["TableName"], | ||
) | ||
assert ( | ||
resp["OfflineStoreConfig"]["DataCatalogConfig"]["Catalog"] == "AwsDataCatalog" | ||
) | ||
assert ( | ||
resp["OfflineStoreConfig"]["DataCatalogConfig"]["Database"] | ||
== "sagemaker_featurestore" | ||
) | ||
assert resp["OfflineStoreConfig"]["S3StorageConfig"]["S3Uri"] == "s3://mybucket" | ||
assert isinstance(resp["CreationTime"], datetime) | ||
assert resp["FeatureGroupStatus"] == "Created" |