use of org.finra.herd.model.dto.CompleteUploadSingleParamsDto in project herd by FINRAOS.
the class UploadDownloadHelperServiceImplTest method testPrepareForFileMove.
@Test
public void testPrepareForFileMove() {
// Create an object key.
String objectKey = UUID_VALUE;
// Create a complete upload single parameters DTO.
CompleteUploadSingleParamsDto completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto();
// Create a business object data status entity.
BusinessObjectDataStatusEntity businessObjectDataStatusEntity = new BusinessObjectDataStatusEntity();
businessObjectDataStatusEntity.setCode(BusinessObjectDataStatusEntity.UPLOADING);
// Create a source storage entity.
StorageEntity sourceStorageEntity = new StorageEntity();
// Create a source business object data key.
BusinessObjectDataKey sourceBusinessObjectDataKey = new BusinessObjectDataKey();
sourceBusinessObjectDataKey.setBusinessObjectFormatUsage(FORMAT_USAGE_CODE);
// Create a source business object data entity.
BusinessObjectDataEntity sourceBusinessObjectDataEntity = new BusinessObjectDataEntity();
sourceBusinessObjectDataEntity.setId(ID);
sourceBusinessObjectDataEntity.setPartitionValue(objectKey);
sourceBusinessObjectDataEntity.setStatus(businessObjectDataStatusEntity);
// Create a list of source storage files.
List<StorageFileEntity> sourceStorageFileEntities = new ArrayList<>();
// Create a source storage unit.
StorageUnitEntity sourceStorageUnitEntity = new StorageUnitEntity();
sourceStorageUnitEntity.setBusinessObjectData(sourceBusinessObjectDataEntity);
sourceStorageUnitEntity.setStorage(sourceStorageEntity);
sourceStorageUnitEntity.setStorageFiles(sourceStorageFileEntities);
// Create a source storage file entity.
StorageFileEntity sourceStorageFileEntity = new StorageFileEntity();
sourceStorageFileEntities.add(sourceStorageFileEntity);
sourceStorageFileEntity.setStorageUnit(sourceStorageUnitEntity);
sourceStorageFileEntity.setPath(S3_KEY);
sourceStorageFileEntity.setFileSizeBytes(FILE_SIZE);
// Create a target storage entity.
StorageEntity targetStorageEntity = new StorageEntity();
// Create a target business object data key.
BusinessObjectDataKey targetBusinessObjectDataKey = new BusinessObjectDataKey();
targetBusinessObjectDataKey.setBusinessObjectFormatUsage(FORMAT_USAGE_CODE_2);
// Create a list of source storage files.
List<StorageFileEntity> targetStorageFileEntities = new ArrayList<>();
// Create a target storage unit.
StorageUnitEntity targetStorageUnitEntity = new StorageUnitEntity();
targetStorageUnitEntity.setStorage(targetStorageEntity);
targetStorageUnitEntity.setStorageFiles(targetStorageFileEntities);
// Create a source storage file entity.
StorageFileEntity targetStorageFileEntity = new StorageFileEntity();
targetStorageFileEntities.add(targetStorageFileEntity);
targetStorageFileEntity.setPath(S3_KEY_2);
// Create a target business object data entity.
BusinessObjectDataEntity targetBusinessObjectDataEntity = new BusinessObjectDataEntity();
targetBusinessObjectDataEntity.setId(ID_2);
targetBusinessObjectDataEntity.setStatus(businessObjectDataStatusEntity);
targetBusinessObjectDataEntity.setStorageUnits(Collections.singletonList(targetStorageUnitEntity));
// Create an AWS parameters DTO.
AwsParamsDto awsParamsDto = new AwsParamsDto(NO_AWS_ACCESS_KEY, NO_AWS_SECRET_KEY, NO_SESSION_TOKEN, HTTP_PROXY_HOST, HTTP_PROXY_PORT);
// Mock the external calls.
when(storageFileDaoHelper.getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey)).thenReturn(sourceStorageFileEntity);
when(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity)).thenReturn(sourceBusinessObjectDataKey);
when(businessObjectDataDao.getBusinessObjectDataEntitiesByPartitionValue(objectKey)).thenReturn(Arrays.asList(sourceBusinessObjectDataEntity, targetBusinessObjectDataEntity));
when(businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity)).thenReturn(targetBusinessObjectDataKey);
when(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE)).thenReturn(sourceStorageEntity);
when(storageHelper.getStorageBucketName(sourceStorageEntity)).thenReturn(S3_BUCKET_NAME);
when(storageUnitDaoHelper.getStorageUnitEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, sourceBusinessObjectDataEntity)).thenReturn(sourceStorageUnitEntity);
when(awsHelper.getAwsParamsDto()).thenReturn(awsParamsDto);
when(storageHelper.getStorageBucketName(targetStorageEntity)).thenReturn(S3_BUCKET_NAME_2);
when(storageHelper.getStorageKmsKeyId(targetStorageEntity)).thenReturn(AWS_KMS_KEY_ID);
// Call the method under test.
uploadDownloadHelperService.prepareForFileMoveImpl(objectKey, completeUploadSingleParamsDto);
// Verify the external calls.
verify(storageFileDaoHelper).getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey);
verify(storageFileDaoHelper).getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey);
verify(businessObjectDataHelper).getBusinessObjectDataKey(sourceBusinessObjectDataEntity);
verify(businessObjectDataDao).getBusinessObjectDataEntitiesByPartitionValue(objectKey);
verify(businessObjectDataHelper).getBusinessObjectDataKey(targetBusinessObjectDataEntity);
verify(storageDaoHelper).getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE);
verify(storageHelper).getStorageBucketName(sourceStorageEntity);
verify(storageUnitDaoHelper).getStorageUnitEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, sourceBusinessObjectDataEntity);
verify(awsHelper, times(2)).getAwsParamsDto();
verify(s3Dao).validateS3File(any(S3FileTransferRequestParamsDto.class), eq(FILE_SIZE));
verify(storageHelper).getStorageBucketName(targetStorageEntity);
verify(storageHelper).getStorageKmsKeyId(targetStorageEntity);
verify(s3Dao).s3FileExists(any(S3FileTransferRequestParamsDto.class));
verify(businessObjectDataDaoHelper).updateBusinessObjectDataStatus(sourceBusinessObjectDataEntity, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
verify(businessObjectDataDaoHelper).updateBusinessObjectDataStatus(targetBusinessObjectDataEntity, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
verify(notificationEventService).processBusinessObjectDataNotificationEventAsync(NotificationEventTypeEntity.EventTypesBdata.BUS_OBJCT_DATA_STTS_CHG, sourceBusinessObjectDataKey, BusinessObjectDataStatusEntity.RE_ENCRYPTING, BusinessObjectDataStatusEntity.UPLOADING);
verify(notificationEventService).processBusinessObjectDataNotificationEventAsync(NotificationEventTypeEntity.EventTypesBdata.BUS_OBJCT_DATA_STTS_CHG, targetBusinessObjectDataKey, BusinessObjectDataStatusEntity.RE_ENCRYPTING, BusinessObjectDataStatusEntity.UPLOADING);
verifyNoMoreInteractionsHelper();
// Validate the results.
assertEquals(new CompleteUploadSingleParamsDto(sourceBusinessObjectDataKey, S3_BUCKET_NAME, S3_KEY, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, targetBusinessObjectDataKey, S3_BUCKET_NAME_2, S3_KEY_2, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, AWS_KMS_KEY_ID, awsParamsDto), completeUploadSingleParamsDto);
}
use of org.finra.herd.model.dto.CompleteUploadSingleParamsDto in project herd by FINRAOS.
the class UploadDownloadHelperServiceImplTest method testPrepareForFileMoveImplOptimisticLockException.
@Test
public void testPrepareForFileMoveImplOptimisticLockException() {
// Create an object key.
String objectKey = UUID_VALUE;
// Create a complete upload single parameters DTO.
CompleteUploadSingleParamsDto completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto();
// Create a business object data status entity.
BusinessObjectDataStatusEntity businessObjectDataStatusEntity = new BusinessObjectDataStatusEntity();
businessObjectDataStatusEntity.setCode(BusinessObjectDataStatusEntity.UPLOADING);
// Create a source storage entity.
StorageEntity sourceStorageEntity = new StorageEntity();
// Create a source business object data key.
BusinessObjectDataKey sourceBusinessObjectDataKey = new BusinessObjectDataKey();
sourceBusinessObjectDataKey.setBusinessObjectFormatUsage(FORMAT_USAGE_CODE);
// Create a source business object data entity.
BusinessObjectDataEntity sourceBusinessObjectDataEntity = new BusinessObjectDataEntity();
sourceBusinessObjectDataEntity.setId(ID);
sourceBusinessObjectDataEntity.setPartitionValue(objectKey);
sourceBusinessObjectDataEntity.setStatus(businessObjectDataStatusEntity);
// Create a list of source storage files.
List<StorageFileEntity> sourceStorageFileEntities = new ArrayList<>();
// Create a source storage unit.
StorageUnitEntity sourceStorageUnitEntity = new StorageUnitEntity();
sourceStorageUnitEntity.setBusinessObjectData(sourceBusinessObjectDataEntity);
sourceStorageUnitEntity.setStorage(sourceStorageEntity);
sourceStorageUnitEntity.setStorageFiles(sourceStorageFileEntities);
// Create a source storage file entity.
StorageFileEntity sourceStorageFileEntity = new StorageFileEntity();
sourceStorageFileEntities.add(sourceStorageFileEntity);
sourceStorageFileEntity.setStorageUnit(sourceStorageUnitEntity);
sourceStorageFileEntity.setPath(S3_KEY);
sourceStorageFileEntity.setFileSizeBytes(FILE_SIZE);
// Create a target storage entity.
StorageEntity targetStorageEntity = new StorageEntity();
// Create a target business object data key.
BusinessObjectDataKey targetBusinessObjectDataKey = new BusinessObjectDataKey();
targetBusinessObjectDataKey.setBusinessObjectFormatUsage(FORMAT_USAGE_CODE_2);
// Create a list of source storage files.
List<StorageFileEntity> targetStorageFileEntities = new ArrayList<>();
// Create a target storage unit.
StorageUnitEntity targetStorageUnitEntity = new StorageUnitEntity();
targetStorageUnitEntity.setStorage(targetStorageEntity);
targetStorageUnitEntity.setStorageFiles(targetStorageFileEntities);
// Create a source storage file entity.
StorageFileEntity targetStorageFileEntity = new StorageFileEntity();
targetStorageFileEntities.add(targetStorageFileEntity);
targetStorageFileEntity.setPath(S3_KEY_2);
// Create a target business object data entity.
BusinessObjectDataEntity targetBusinessObjectDataEntity = new BusinessObjectDataEntity();
targetBusinessObjectDataEntity.setId(ID_2);
targetBusinessObjectDataEntity.setStatus(businessObjectDataStatusEntity);
targetBusinessObjectDataEntity.setStorageUnits(Collections.singletonList(targetStorageUnitEntity));
// Create an AWS parameters DTO.
AwsParamsDto awsParamsDto = new AwsParamsDto(NO_AWS_ACCESS_KEY, NO_AWS_SECRET_KEY, NO_SESSION_TOKEN, HTTP_PROXY_HOST, HTTP_PROXY_PORT);
// Mock the external calls.
when(storageFileDaoHelper.getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey)).thenReturn(sourceStorageFileEntity);
when(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity)).thenReturn(sourceBusinessObjectDataKey);
when(businessObjectDataDao.getBusinessObjectDataEntitiesByPartitionValue(objectKey)).thenReturn(Arrays.asList(sourceBusinessObjectDataEntity, targetBusinessObjectDataEntity));
when(businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity)).thenReturn(targetBusinessObjectDataKey);
when(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE)).thenReturn(sourceStorageEntity);
when(storageHelper.getStorageBucketName(sourceStorageEntity)).thenReturn(S3_BUCKET_NAME);
when(storageUnitDaoHelper.getStorageUnitEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, sourceBusinessObjectDataEntity)).thenReturn(sourceStorageUnitEntity);
when(awsHelper.getAwsParamsDto()).thenReturn(awsParamsDto);
when(storageHelper.getStorageBucketName(targetStorageEntity)).thenReturn(S3_BUCKET_NAME_2);
when(storageHelper.getStorageKmsKeyId(targetStorageEntity)).thenReturn(AWS_KMS_KEY_ID);
doThrow(new OptimisticLockException(ERROR_MESSAGE)).when(businessObjectDataDaoHelper).updateBusinessObjectDataStatus(sourceBusinessObjectDataEntity, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
when(jsonHelper.objectToJson(sourceBusinessObjectDataKey)).thenReturn(BUSINESS_OBJECT_DATA_KEY_AS_STRING);
when(jsonHelper.objectToJson(targetBusinessObjectDataKey)).thenReturn(BUSINESS_OBJECT_DATA_KEY_AS_STRING_2);
// Try to call the method under test.
try {
uploadDownloadHelperService.prepareForFileMoveImpl(objectKey, completeUploadSingleParamsDto);
} catch (OptimisticLockException e) {
assertEquals(String.format("Ignoring S3 notification due to an optimistic lock exception caused by duplicate S3 event notifications. " + "sourceBusinessObjectDataKey=%s targetBusinessObjectDataKey=%s", BUSINESS_OBJECT_DATA_KEY_AS_STRING, BUSINESS_OBJECT_DATA_KEY_AS_STRING_2), e.getMessage());
}
// Verify the external calls.
verify(storageFileDaoHelper).getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey);
verify(storageFileDaoHelper).getStorageFileEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, objectKey);
verify(businessObjectDataHelper).getBusinessObjectDataKey(sourceBusinessObjectDataEntity);
verify(businessObjectDataDao).getBusinessObjectDataEntitiesByPartitionValue(objectKey);
verify(businessObjectDataHelper).getBusinessObjectDataKey(targetBusinessObjectDataEntity);
verify(storageDaoHelper).getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE);
verify(storageHelper).getStorageBucketName(sourceStorageEntity);
verify(storageUnitDaoHelper).getStorageUnitEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE, sourceBusinessObjectDataEntity);
verify(awsHelper, times(2)).getAwsParamsDto();
verify(s3Dao).validateS3File(any(S3FileTransferRequestParamsDto.class), eq(FILE_SIZE));
verify(storageHelper).getStorageBucketName(targetStorageEntity);
verify(storageHelper).getStorageKmsKeyId(targetStorageEntity);
verify(s3Dao).s3FileExists(any(S3FileTransferRequestParamsDto.class));
verify(businessObjectDataDaoHelper).updateBusinessObjectDataStatus(sourceBusinessObjectDataEntity, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
verify(jsonHelper).objectToJson(sourceBusinessObjectDataKey);
verify(jsonHelper).objectToJson(targetBusinessObjectDataKey);
verifyNoMoreInteractionsHelper();
// Validate the results.
assertEquals(new CompleteUploadSingleParamsDto(sourceBusinessObjectDataKey, S3_BUCKET_NAME, S3_KEY, BusinessObjectDataStatusEntity.UPLOADING, NO_BDATA_STATUS, targetBusinessObjectDataKey, S3_BUCKET_NAME_2, S3_KEY_2, BusinessObjectDataStatusEntity.UPLOADING, NO_BDATA_STATUS, AWS_KMS_KEY_ID, awsParamsDto), completeUploadSingleParamsDto);
}
use of org.finra.herd.model.dto.CompleteUploadSingleParamsDto in project herd by FINRAOS.
the class UploadDownloadHelperServiceTest method testUploadDownloadHelperServiceMethodsNewTransactionPropagation.
/**
* This method is to get coverage for the upload download helper service methods that have explicit annotations for transaction propagation.
*/
@Test
public void testUploadDownloadHelperServiceMethodsNewTransactionPropagation() throws Exception {
executeWithoutLogging(UploadDownloadHelperServiceImpl.class, () -> {
CompleteUploadSingleParamsDto completeUploadSingleParamsDto;
// Try to perform a prepare file move operation with a non-existing S3 key (file path).
completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto();
uploadDownloadHelperServiceImpl.prepareForFileMove("KEY_DOES_NOT_EXIST", completeUploadSingleParamsDto);
// Validate the updated complete upload single parameters DTO.
assertNull(completeUploadSingleParamsDto.getSourceBusinessObjectDataKey());
assertNull(completeUploadSingleParamsDto.getSourceNewStatus());
assertNull(completeUploadSingleParamsDto.getSourceOldStatus());
assertNull(completeUploadSingleParamsDto.getTargetBusinessObjectDataKey());
assertNull(completeUploadSingleParamsDto.getTargetNewStatus());
assertNull(completeUploadSingleParamsDto.getTargetOldStatus());
// Try to perform an S3 file move. The S3 copy operation will fail since we are passing a special mocked file name.
completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto(new BusinessObjectDataKey(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, INITIAL_FORMAT_VERSION, PARTITION_VALUE, NO_SUBPARTITION_VALUES, INITIAL_DATA_VERSION), EMPTY_S3_BUCKET_NAME, MockS3OperationsImpl.MOCK_S3_FILE_NAME_SERVICE_EXCEPTION, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, new BusinessObjectDataKey(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE_2, FORMAT_FILE_TYPE_CODE, INITIAL_FORMAT_VERSION, PARTITION_VALUE, NO_SUBPARTITION_VALUES, INITIAL_DATA_VERSION), EMPTY_S3_BUCKET_NAME, MockS3OperationsImpl.MOCK_S3_FILE_NAME_SERVICE_EXCEPTION, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, MockS3OperationsImpl.MOCK_KMS_ID, emrHelper.getAwsParamsDto());
uploadDownloadHelperServiceImpl.performFileMove(completeUploadSingleParamsDto);
// Validate the updated complete upload single parameters DTO.
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getSourceNewStatus());
assertEquals(BusinessObjectDataStatusEntity.UPLOADING, completeUploadSingleParamsDto.getSourceOldStatus());
assertEquals(BusinessObjectDataStatusEntity.INVALID, completeUploadSingleParamsDto.getTargetNewStatus());
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getTargetOldStatus());
// Try to execute the file move post steps by passing a non-initialized complete upload single parameters DTO.
uploadDownloadHelperServiceImpl.executeFileMoveAfterSteps(new CompleteUploadSingleParamsDto());
// Try to delete the source file from S3
uploadDownloadHelperServiceImpl.deleteSourceFileFromS3(new CompleteUploadSingleParamsDto());
// Try to update the business object data status for a non-existing business object data.
try {
uploadDownloadHelperServiceImpl.updateBusinessObjectDataStatus(new BusinessObjectDataKey(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, FORMAT_VERSION, PARTITION_VALUE, NO_SUBPARTITION_VALUES, DATA_VERSION), null);
fail("Should throw an ObjectNotFoundException.");
} catch (ObjectNotFoundException e) {
assertEquals(businessObjectDataServiceTestHelper.getExpectedBusinessObjectDataNotFoundErrorMessage(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, FORMAT_VERSION, PARTITION_VALUE, NO_SUBPARTITION_VALUES, DATA_VERSION, null), e.getMessage());
}
});
}
use of org.finra.herd.model.dto.CompleteUploadSingleParamsDto in project herd by FINRAOS.
the class UploadDownloadHelperServiceTest method testExecuteFileMoveAfterStepsNewTargetStatusNotValid.
@Test
public void testExecuteFileMoveAfterStepsNewTargetStatusNotValid() {
// Create and persists entities required for testing.
BusinessObjectDataEntity sourceBusinessObjectDataEntity = businessObjectDataDaoTestHelper.createBusinessObjectDataEntity(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, INITIAL_FORMAT_VERSION, PARTITION_VALUE, INITIAL_DATA_VERSION, LATEST_VERSION_FLAG_SET, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
StorageUnitEntity sourceStorageUnitEntity = storageUnitDaoTestHelper.createStorageUnitEntity(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE), sourceBusinessObjectDataEntity, StorageUnitStatusEntity.ENABLED, NO_STORAGE_DIRECTORY_PATH);
storageFileDaoTestHelper.createStorageFileEntity(sourceStorageUnitEntity, TARGET_S3_KEY, FILE_SIZE_1_KB, NO_ROW_COUNT);
BusinessObjectDataEntity targetBusinessObjectDataEntity = businessObjectDataDaoTestHelper.createBusinessObjectDataEntity(NAMESPACE_2, BDEF_NAME_2, FORMAT_USAGE_CODE_2, FORMAT_FILE_TYPE_CODE_2, INITIAL_FORMAT_VERSION, PARTITION_VALUE, INITIAL_DATA_VERSION, LATEST_VERSION_FLAG_SET, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
StorageUnitEntity targetStorageUnitEntity = storageUnitDaoTestHelper.createStorageUnitEntity(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_EXTERNAL_STORAGE), targetBusinessObjectDataEntity, StorageUnitStatusEntity.ENABLED, NO_STORAGE_DIRECTORY_PATH);
storageFileDaoTestHelper.createStorageFileEntity(targetStorageUnitEntity, TARGET_S3_KEY, FILE_SIZE_1_KB, NO_ROW_COUNT);
// Put a 1 KB file in the source S3 bucket.
PutObjectRequest putObjectRequest = new PutObjectRequest(storageDaoTestHelper.getS3LoadingDockBucketName(), TARGET_S3_KEY, new ByteArrayInputStream(new byte[(int) FILE_SIZE_1_KB]), null);
s3Operations.putObject(putObjectRequest, null);
// Initialize parameters required to perform the file move post steps with new target status not being set to "VALID".
CompleteUploadSingleParamsDto completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity), storageDaoTestHelper.getS3LoadingDockBucketName(), TARGET_S3_KEY, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity), storageDaoTestHelper.getS3ExternalBucketName(), TARGET_S3_KEY, BusinessObjectDataStatusEntity.RE_ENCRYPTING, BusinessObjectDataStatusEntity.INVALID, MockS3OperationsImpl.MOCK_KMS_ID, emrHelper.getAwsParamsDto());
// Try to execute the file move post steps when new target business object data status is not set to "VALID".
uploadDownloadHelperService.executeFileMoveAfterSteps(completeUploadSingleParamsDto);
// Refresh the data entities.
sourceBusinessObjectDataEntity = businessObjectDataDaoHelper.getBusinessObjectDataEntity(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity));
targetBusinessObjectDataEntity = businessObjectDataDaoHelper.getBusinessObjectDataEntity(businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity));
// Validate the source and target business object data statuses.
assertEquals(BusinessObjectDataStatusEntity.DELETED, sourceBusinessObjectDataEntity.getStatus().getCode());
assertEquals(BusinessObjectDataStatusEntity.INVALID, targetBusinessObjectDataEntity.getStatus().getCode());
// Validate the updated DTO parameters.
assertEquals(BusinessObjectDataStatusEntity.DELETED, completeUploadSingleParamsDto.getSourceNewStatus());
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getSourceOldStatus());
assertEquals(BusinessObjectDataStatusEntity.INVALID, completeUploadSingleParamsDto.getTargetNewStatus());
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getTargetOldStatus());
}
use of org.finra.herd.model.dto.CompleteUploadSingleParamsDto in project herd by FINRAOS.
the class UploadDownloadHelperServiceTest method testExecuteFileMoveAfterSteps.
@Test
public void testExecuteFileMoveAfterSteps() {
// Create and persists entities required for testing.
BusinessObjectDataEntity sourceBusinessObjectDataEntity = businessObjectDataDaoTestHelper.createBusinessObjectDataEntity(NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, INITIAL_FORMAT_VERSION, PARTITION_VALUE, INITIAL_DATA_VERSION, LATEST_VERSION_FLAG_SET, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
StorageUnitEntity sourceStorageUnitEntity = storageUnitDaoTestHelper.createStorageUnitEntity(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_LOADING_DOCK_STORAGE), sourceBusinessObjectDataEntity, StorageUnitStatusEntity.ENABLED, NO_STORAGE_DIRECTORY_PATH);
storageFileDaoTestHelper.createStorageFileEntity(sourceStorageUnitEntity, TARGET_S3_KEY, FILE_SIZE_1_KB, NO_ROW_COUNT);
BusinessObjectDataEntity targetBusinessObjectDataEntity = businessObjectDataDaoTestHelper.createBusinessObjectDataEntity(NAMESPACE_2, BDEF_NAME_2, FORMAT_USAGE_CODE_2, FORMAT_FILE_TYPE_CODE_2, INITIAL_FORMAT_VERSION, PARTITION_VALUE, INITIAL_DATA_VERSION, LATEST_VERSION_FLAG_SET, BusinessObjectDataStatusEntity.RE_ENCRYPTING);
StorageUnitEntity targetStorageUnitEntity = storageUnitDaoTestHelper.createStorageUnitEntity(storageDaoHelper.getStorageEntity(StorageEntity.MANAGED_EXTERNAL_STORAGE), targetBusinessObjectDataEntity, StorageUnitStatusEntity.ENABLED, NO_STORAGE_DIRECTORY_PATH);
storageFileDaoTestHelper.createStorageFileEntity(targetStorageUnitEntity, TARGET_S3_KEY, FILE_SIZE_1_KB, NO_ROW_COUNT);
// Put a 1 KB file in S3.
PutObjectRequest putObjectRequest = new PutObjectRequest(storageDaoTestHelper.getS3LoadingDockBucketName(), TARGET_S3_KEY, new ByteArrayInputStream(new byte[(int) FILE_SIZE_1_KB]), null);
s3Operations.putObject(putObjectRequest, null);
// Initialize parameters required to perform the file move post steps.
CompleteUploadSingleParamsDto completeUploadSingleParamsDto = new CompleteUploadSingleParamsDto(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity), storageDaoTestHelper.getS3LoadingDockBucketName(), TARGET_S3_KEY, BusinessObjectDataStatusEntity.UPLOADING, BusinessObjectDataStatusEntity.RE_ENCRYPTING, businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity), storageDaoTestHelper.getS3ExternalBucketName(), TARGET_S3_KEY, BusinessObjectDataStatusEntity.RE_ENCRYPTING, BusinessObjectDataStatusEntity.VALID, MockS3OperationsImpl.MOCK_KMS_ID, emrHelper.getAwsParamsDto());
// Execute the file move post steps.
uploadDownloadHelperService.executeFileMoveAfterSteps(completeUploadSingleParamsDto);
// Refresh the data entities.
sourceBusinessObjectDataEntity = businessObjectDataDaoHelper.getBusinessObjectDataEntity(businessObjectDataHelper.getBusinessObjectDataKey(sourceBusinessObjectDataEntity));
targetBusinessObjectDataEntity = businessObjectDataDaoHelper.getBusinessObjectDataEntity(businessObjectDataHelper.getBusinessObjectDataKey(targetBusinessObjectDataEntity));
// Validate the source and target business object data statuses.
assertEquals(BusinessObjectDataStatusEntity.DELETED, sourceBusinessObjectDataEntity.getStatus().getCode());
assertEquals(BusinessObjectDataStatusEntity.VALID, targetBusinessObjectDataEntity.getStatus().getCode());
// Validate the updated DTO parameters.
assertEquals(BusinessObjectDataStatusEntity.DELETED, completeUploadSingleParamsDto.getSourceNewStatus());
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getSourceOldStatus());
assertEquals(BusinessObjectDataStatusEntity.VALID, completeUploadSingleParamsDto.getTargetNewStatus());
assertEquals(BusinessObjectDataStatusEntity.RE_ENCRYPTING, completeUploadSingleParamsDto.getTargetOldStatus());
}
Aggregations