Skip to content
Snippets Groups Projects
Commit 09b3ce81 authored by ribeaudc's avatar ribeaudc
Browse files

fix:

- FileUtilities did not work as expected

SVN: 1733
parent a4b4789a
No related branches found
No related tags found
No related merge requests found
...@@ -422,25 +422,29 @@ public final class FileUtilities ...@@ -422,25 +422,29 @@ public final class FileUtilities
/** A <i>Java</i> pattern matching one or more digits. */ /** A <i>Java</i> pattern matching one or more digits. */
private final static Pattern ONE_OR_MORE_DIGITS = Pattern.compile("(\\d+)"); private final static Pattern ONE_OR_MORE_DIGITS = Pattern.compile("(\\d+)");
public final static File createNextNumberedFile(File path, String defaultFileName) public final static File createNextNumberedFile(File path, Pattern regex)
{ {
return createNextNumberedFile(path, null, defaultFileName); return createNextNumberedFile(path, regex, null);
} }
/** /**
* Creates the next numbered file. * Creates the next numbered file if given <var>path</var> does already exist.
* <p> * <p>
* If the new suggested file already exists, then this method is called recursively. * If the new suggested file already exists, then this method is called recursively.
* </p> * </p>
* *
* @param defaultFileName the default name for the new file if the digit pattern could not be found (probably the * @param defaultFileName the default name for the new file if the digit pattern could not be found in its name. If
* starting file). * empty then "1" will be appended to its name.
* @param regex pattern to find out the counter. If <code>null</code> then <code>"(\\d+)"</code> will be taken. * @param regex pattern to find out the counter. If <code>null</code> then {@link #ONE_OR_MORE_DIGITS} will be
* The given <var>regex</var> must contain <code>(\\d+)</code> or <code>([0-9]+)</code>. * taken. The given <var>regex</var> must contain <code>(\\d+)</code> or <code>([0-9]+)</code>.
*/ */
public final static File createNextNumberedFile(File path, Pattern regex, String defaultFileName) public final static File createNextNumberedFile(File path, Pattern regex, String defaultFileName)
{ {
assert path != null; assert path != null;
if (path.exists() == false)
{
return path;
}
final Pattern pattern; final Pattern pattern;
if (regex == null) if (regex == null)
{ {
...@@ -456,11 +460,15 @@ public final class FileUtilities ...@@ -456,11 +460,15 @@ public final class FileUtilities
boolean found = matcher.find(); boolean found = matcher.find();
if (found == false) if (found == false)
{ {
final String fileName;
if (StringUtils.isEmpty(defaultFileName) == false) if (StringUtils.isEmpty(defaultFileName) == false)
{ {
return new File(path.getParent(), defaultFileName); fileName = defaultFileName;
} else
{
fileName = pathName + "1";
} }
return path; return createNextNumberedFile(new File(path.getParent(), fileName), pattern, defaultFileName);
} }
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
int nextStart = 0; int nextStart = 0;
......
...@@ -32,8 +32,9 @@ import java.util.Arrays; ...@@ -32,8 +32,9 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils; import org.apache.commons.io.IOUtils;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeSuite; import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test; import org.testng.annotations.Test;
...@@ -57,6 +58,12 @@ public class FileUtilitiesTest ...@@ -57,6 +58,12 @@ public class FileUtilitiesTest
assert workingDirectory.isDirectory(); assert workingDirectory.isDirectory();
} }
@BeforeMethod
public void beforeMethod() throws IOException
{
FileUtils.cleanDirectory(workingDirectory);
}
@Test @Test
public void testLoadToStringFile() throws Exception public void testLoadToStringFile() throws Exception
{ {
...@@ -129,18 +136,28 @@ public class FileUtilitiesTest ...@@ -129,18 +136,28 @@ public class FileUtilitiesTest
} }
@Test @Test
public final void testCreateNextNumberedFile() public final void testCreateNextNumberedFile() throws IOException
{ {
File file = new File(workingDirectory, "abc_[12]"); File file = new File(workingDirectory, "abc_[12]");
// File does not exist
assert file.exists() == false; assert file.exists() == false;
Pattern pattern = Pattern.compile("_\\[(\\d+)\\]"); Pattern pattern = Pattern.compile("_\\[(\\d+)\\]");
File newFile = FileUtilities.createNextNumberedFile(file, pattern, null); File newFile = FileUtilities.createNextNumberedFile(file, pattern, null);
assertEquals(FilenameUtils.getName(new File(workingDirectory, "abc_[13]").getPath()), FilenameUtils assertEquals(new File(workingDirectory, "abc_[12]"), newFile);
.getName(newFile.getPath())); FileUtils.touch(file);
assert file.exists();
// File exists
newFile = FileUtilities.createNextNumberedFile(file, pattern, null);
assertEquals(new File(workingDirectory, "abc_[13]"), newFile);
// File not containing a number in it
file = new File(workingDirectory, "abc"); file = new File(workingDirectory, "abc");
assert file.exists() == false;
newFile = FileUtilities.createNextNumberedFile(file, pattern, null);
assertEquals(new File(workingDirectory, "abc"), newFile);
FileUtils.touch(file);
assert file.exists();
newFile = FileUtilities.createNextNumberedFile(file, pattern, null); newFile = FileUtilities.createNextNumberedFile(file, pattern, null);
assertEquals(FilenameUtils.getName(new File(workingDirectory, "abc").getPath()), FilenameUtils.getName(newFile assertEquals(new File(workingDirectory, "abc1"), newFile);
.getPath()));
try try
{ {
FileUtilities.createNextNumberedFile(null, pattern, null); FileUtilities.createNextNumberedFile(null, pattern, null);
...@@ -149,25 +166,41 @@ public class FileUtilitiesTest ...@@ -149,25 +166,41 @@ public class FileUtilitiesTest
{ {
// Nothing to do here // Nothing to do here
} }
String defaultFileName = "abc_[1]";
try try
{ {
FileUtilities.createNextNumberedFile(file, Pattern.compile("dummyPattern"), "abc_[1]"); FileUtilities.createNextNumberedFile(file, Pattern.compile("dummyPattern"), defaultFileName);
fail("Must contain either '(\\d+)' or ([0-9]+)."); fail("Must contain either '(\\d+)' or ([0-9]+).");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here // Nothing to do here
} }
newFile = FileUtilities.createNextNumberedFile(file, pattern, "abc_[1]"); // File already exists but default one does not
assertEquals(FilenameUtils.getName(new File(workingDirectory, "abc_[1]").getPath()), FilenameUtils assertEquals(file.getName(), "abc");
.getName(newFile.getPath())); assert file.exists();
newFile = FileUtilities.createNextNumberedFile(file, pattern, defaultFileName);
File defaultFile = new File(workingDirectory, defaultFileName);
assertEquals(defaultFile, newFile);
// File already exists and default one also
FileUtils.touch(defaultFile);
assert defaultFile.exists();
newFile = FileUtilities.createNextNumberedFile(file, pattern, defaultFileName);
assertEquals(new File(workingDirectory, "abc_[2]"), newFile);
// With no pattern (using the default one)
file = new File(workingDirectory, "a0bc1"); file = new File(workingDirectory, "a0bc1");
FileUtils.touch(file);
assert file.exists();
newFile = FileUtilities.createNextNumberedFile(file, null); newFile = FileUtilities.createNextNumberedFile(file, null);
assertEquals(FilenameUtils.getName(new File(workingDirectory, "a1bc2").getPath()), FilenameUtils assertEquals(new File(workingDirectory, "a1bc2"), newFile);
.getName(newFile.getPath())); // More examples
file = new File(workingDirectory, "12abc_[12]"); file = new File(workingDirectory, "12abc_[12]");
newFile = FileUtilities.createNextNumberedFile(file, pattern, "12abc_[1]"); newFile = FileUtilities.createNextNumberedFile(file, pattern, "12abc_[1]");
assertEquals(FilenameUtils.getName(new File(workingDirectory, "12abc_[13]").getPath()), FilenameUtils assertEquals(new File(workingDirectory, "12abc_[12]"), newFile);
.getName(newFile.getPath())); FileUtils.touch(file);
newFile = FileUtilities.createNextNumberedFile(file, pattern, "12abc_[1]");
assertEquals(new File(workingDirectory, "12abc_[13]"), newFile);
newFile = FileUtilities.createNextNumberedFile(file, Pattern.compile("xxx(\\d+)xxx"), "12abc_[1]");
assertEquals(new File(workingDirectory, "12abc_[1]"), newFile);
} }
@Test @Test
......
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