Skip to content
Snippets Groups Projects
Commit 69ac28fe authored by cramakri's avatar cramakri
Browse files

LMS-1465 Propogated an exception and made test independent of order of return values.

SVN: 15329
parent 67c6635e
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ public class DssServiceRpcV1 extends AbstractDssServiceRpc implements IDssServic
* @param isRecursive If true, directories will be recursively appended to the list
*/
private void appendFileInfosForFile(File requestedFile, String hierarchyRoot,
ArrayList<FileInfoDss> list, boolean isRecursive)
ArrayList<FileInfoDss> list, boolean isRecursive) throws IOException
{
FileInfoDssBuilder factory = new FileInfoDssBuilder(hierarchyRoot);
factory.appendFileInfosForFile(requestedFile, list, isRecursive);
......
......@@ -50,7 +50,7 @@ public class FileInfoDssBuilder
* @param isRecursive If true, directories will be recursively appended to the list
*/
public void appendFileInfosForFile(File requestedFile, ArrayList<FileInfoDss> list,
boolean isRecursive)
boolean isRecursive) throws IOException
{
// at the top level, we should list the contents of directories, but only recurse if the
// search is recursive
......@@ -58,7 +58,7 @@ public class FileInfoDssBuilder
}
private void appendFileInfosForFile(File requestedFile, ArrayList<FileInfoDss> list,
int maxDepth)
int maxDepth) throws IOException
{
FileInfoDss fileInfo = fileInfoForFile(requestedFile);
list.add(fileInfo);
......@@ -76,7 +76,7 @@ public class FileInfoDssBuilder
}
}
private FileInfoDss fileInfoForFile(File file)
private FileInfoDss fileInfoForFile(File file) throws IOException
{
FileInfoDss fileInfo = new FileInfoDss();
......@@ -96,17 +96,12 @@ public class FileInfoDssBuilder
/**
* Convert the path for file to a path relative to the root of the data set
*/
private String pathRelativeToRoot(File file)
private String pathRelativeToRoot(File file) throws IOException
{
String path;
try
{
path = file.getCanonicalPath();
path = path.substring(hierarchyRoot.length());
return (path.length() > 0) ? path : "/";
} catch (IOException ex)
{
return "UNKNOWN";
}
path = file.getCanonicalPath();
path = path.substring(hierarchyRoot.length());
return (path.length() > 0) ? path : "/";
}
}
......@@ -167,13 +167,20 @@ public class DssServiceRpcV1Test extends AbstractFileSystemTestCase
++i;
}
assertEquals(2, dirCount);
FileInfoDss fileInfo = fileInfos[fileIndices[0]];
assertEquals("/foo.txt", fileInfo.getPath());
assertEquals(100, fileInfo.getFileSize());
fileInfo = fileInfos[fileIndices[1]];
assertEquals("/stuff/bar.txt", fileInfo.getPath());
assertEquals(110, fileInfo.getFileSize());
for (i = 0; i < 2; ++i)
{
FileInfoDss fileInfo = fileInfos[fileIndices[i]];
if ("/foo.txt".equals(fileInfo.getPath()))
{
assertEquals(100, fileInfo.getFileSize());
} else if ("/stuff/bar.txt".equals(fileInfo.getPath()))
{
assertEquals(110, fileInfo.getFileSize());
} else
{
fail("Received unexpected file.");
}
}
context.assertIsSatisfied();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment