package software.amazon.sagemaker.pipeline; import lombok.extern.slf4j.Slf4j; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; import software.amazon.awssdk.awscore.exception.AwsErrorDetails; import software.amazon.awssdk.awscore.exception.AwsServiceException; import software.amazon.awssdk.services.sagemaker.SageMakerClient; import software.amazon.awssdk.services.sagemaker.model.DescribePipelineRequest; import software.amazon.awssdk.services.sagemaker.model.DescribePipelineResponse; import software.amazon.awssdk.services.sagemaker.model.ResourceNotFoundException; import software.amazon.awssdk.services.sagemaker.model.SageMakerException; import software.amazon.cloudformation.exceptions.CfnNotFoundException; import software.amazon.cloudformation.exceptions.CfnServiceInternalErrorException; import software.amazon.cloudformation.proxy.AmazonWebServicesClientProxy; import software.amazon.cloudformation.proxy.HandlerErrorCode; import software.amazon.cloudformation.proxy.OperationStatus; import software.amazon.cloudformation.proxy.ProgressEvent; import software.amazon.cloudformation.proxy.ProxyClient; import software.amazon.cloudformation.proxy.ResourceHandlerRequest; import java.time.Duration; import java.time.Instant; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; @Slf4j @ExtendWith(MockitoExtension.class) public class ReadHandlerTest extends AbstractTestBase { private final ResourceModel requestModel = getResourceModel(); @Mock private AmazonWebServicesClientProxy proxy; @Mock private ProxyClient<SageMakerClient> proxyClient; @Mock SageMakerClient sdkClient; @BeforeEach public void setup() { proxy = new AmazonWebServicesClientProxy(logger, MOCK_CREDENTIALS, () -> Duration.ofSeconds(600).toMillis()); sdkClient = mock(SageMakerClient.class); proxyClient = MOCK_PROXY(proxy, sdkClient); } @Test public void testReadHandler_SimpleSuccess() { final DescribePipelineResponse describePipelineResponse = DescribePipelineResponse.builder() .pipelineArn(TEST_PIPELINE_ARN) .pipelineName(TEST_PIPELINE_NAME) .pipelineDefinition(TEST_PIPELINE_DEFINITION) .pipelineDescription(TEST_PIPELINE_DESCRIPTION) .roleArn(TEST_ROLE_ARN) .pipelineDisplayName(TEST_PIPELINE_DISPLAY_NAME) .creationTime(Instant.now()) .build(); when(proxyClient.client().describePipeline(any(DescribePipelineRequest.class))) .thenReturn(describePipelineResponse); final ResourceHandlerRequest<ResourceModel> request = ResourceHandlerRequest.<ResourceModel>builder() .desiredResourceState(requestModel) .build(); final ProgressEvent<ResourceModel, CallbackContext> response = invokeHandleRequest(request); ResourceModel expectedModelFromResponse = ResourceModel.builder() .pipelineName(TEST_PIPELINE_NAME) .pipelineDefinition(PipelineDefinition.builder() .pipelineDefinitionBody(TEST_PIPELINE_DEFINITION).build()) .pipelineDescription(TEST_PIPELINE_DESCRIPTION) .roleArn(TEST_ROLE_ARN) .pipelineDisplayName(TEST_PIPELINE_DISPLAY_NAME) .build(); assertThat(response).isNotNull(); assertThat(response.getStatus()).isEqualTo(OperationStatus.SUCCESS); assertThat(response.getCallbackDelaySeconds()).isEqualTo(0); assertThat(response.getResourceModel()).isEqualTo(expectedModelFromResponse); assertThat(response.getMessage()).isNull(); assertThat(response.getErrorCode()).isNull(); } @Test public void testReadHandler_ServiceInternalException() { final AwsServiceException serviceInternalException = SageMakerException.builder() .awsErrorDetails(AwsErrorDetails.builder() .errorMessage(TEST_ERROR_MESSAGE) .errorCode("InternalError") .build()) .statusCode(500) .build(); final ResourceHandlerRequest<ResourceModel> request = ResourceHandlerRequest.<ResourceModel>builder() .desiredResourceState(getResourceModel()) .build(); when(proxyClient.client().describePipeline(any(DescribePipelineRequest.class))) .thenThrow(serviceInternalException); Exception exception = assertThrows(CfnServiceInternalErrorException.class, () -> invokeHandleRequest(request)); assertThat(exception.getMessage()).isEqualTo(String.format(HandlerErrorCode.ServiceInternalError.getMessage(), serviceInternalException.awsErrorDetails().errorMessage())); } @Test public void testReadHandler_ResourceNotFoundException() { when(proxyClient.client().describePipeline(any(DescribePipelineRequest.class))) .thenThrow(ResourceNotFoundException.class); final ResourceHandlerRequest<ResourceModel> request = ResourceHandlerRequest.<ResourceModel>builder() .desiredResourceState(getResourceModel()) .build(); Exception exception = assertThrows(CfnNotFoundException.class, () -> invokeHandleRequest(request)); assertThat(exception.getMessage()).isEqualTo(String.format(HandlerErrorCode.NotFound.getMessage(), ResourceModel.TYPE_NAME, TEST_PIPELINE_NAME)); } private ProgressEvent<ResourceModel, CallbackContext> invokeHandleRequest(ResourceHandlerRequest<ResourceModel> request) { final software.amazon.sagemaker.pipeline.ReadHandler handler = new ReadHandler(); return handler.handleRequest(proxy, request, new CallbackContext(), proxyClient, logger); } }