HADOOP-18403. Fix FileSystem leak in ITestS3AAWSCredentialsProvider (#4737)
Contributed By: Viraj Jasani
This commit is contained in:
parent
b7d4dc61bf
commit
7f030250b4
@ -162,12 +162,15 @@ public void testAnonymousProvider() throws Exception {
|
||||
conf.set(AWS_CREDENTIALS_PROVIDER,
|
||||
AnonymousAWSCredentialsProvider.class.getName());
|
||||
Path testFile = getCSVTestPath(conf);
|
||||
FileSystem fs = FileSystem.newInstance(testFile.toUri(), conf);
|
||||
assertNotNull(fs);
|
||||
assertTrue(fs instanceof S3AFileSystem);
|
||||
FileStatus stat = fs.getFileStatus(testFile);
|
||||
assertNotNull(stat);
|
||||
assertEquals(testFile, stat.getPath());
|
||||
try (FileSystem fs = FileSystem.newInstance(testFile.toUri(), conf)) {
|
||||
assertNotNull("S3AFileSystem instance must not be null", fs);
|
||||
assertTrue("FileSystem must be the instance of S3AFileSystem", fs instanceof S3AFileSystem);
|
||||
FileStatus stat = fs.getFileStatus(testFile);
|
||||
assertNotNull("FileStatus with qualified path must not be null", stat);
|
||||
assertEquals(
|
||||
"The qualified path returned by getFileStatus should be same as the original file",
|
||||
testFile, stat.getPath());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user