anujmodi2021 commented on code in PR #7364: URL: https://github.com/apache/hadoop/pull/7364#discussion_r1968975576
########## hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/ITestAzureBlobFileSystemRename.java: ########## @@ -1641,4 +1653,180 @@ public void testRenameSrcDirDeleteEmitDeletionCountInClientRequestId() Mockito.any(TracingContext.class)); fs.rename(new Path(dirPathStr), new Path("/dst/")); } + + /** + * Test to verify the idempotency of the `rename` operation in Azure Blob File System when retrying + * after a failure. The test simulates a "path not found" error (HTTP 404) on the first attempt, + * checks that the operation correctly retries using the appropriate transaction ID, + * and ensures that the source file is renamed to the destination path once successful. + * + * @throws Exception if an error occurs during the file system operations or mocking + */ + @Test + public void renamePathRetryIdempotency() throws Exception { Review Comment: Fix this for all new tests added. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org