X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fio%2FRegexFilenameFilterTest.java;fp=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fio%2FRegexFilenameFilterTest.java;h=65a826f9bfb9df73f3400e0cd1884021bf1f2912;hb=5d6133ee706ff0647f29f9d6d36f4f12035699f9;hp=0000000000000000000000000000000000000000;hpb=0cda9fb95b493c70bea3d4be96d7a50e965c4bf7;p=utils diff --git a/support/general/src/test/java/org/wamblee/io/RegexFilenameFilterTest.java b/support/general/src/test/java/org/wamblee/io/RegexFilenameFilterTest.java new file mode 100644 index 00000000..65a826f9 --- /dev/null +++ b/support/general/src/test/java/org/wamblee/io/RegexFilenameFilterTest.java @@ -0,0 +1,48 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wamblee.io; + +import java.io.File; +import java.io.FileFilter; + +import junit.framework.TestCase; + +public class RegexFilenameFilterTest extends TestCase { + + public void testMatching() { + FileFilter filter1 = new RegexFilenameFilter(".*\\.txt"); + FileFilter filter2 = new RegexFilenameFilter("^a.*\\.txt$"); + + File file1 = new File("x.txt").getAbsoluteFile(); + File file2 = new File("a.txtx").getAbsoluteFile(); + File file3 = new File("aatxt").getAbsoluteFile(); + File file4 = new File("batxt").getAbsoluteFile(); + File file5 = new File("adibladibla.txt").getAbsoluteFile(); + + assertTrue(filter1.accept(file1)); + assertTrue(filter1.accept(file2)); + assertFalse(filter1.accept(file3)); + assertFalse(filter1.accept(file4)); + assertTrue(filter1.accept(file5)); + + assertFalse(filter2.accept(file1)); + assertFalse(filter2.accept(file2)); + assertFalse(filter2.accept(file3)); + assertFalse(filter2.accept(file4)); + assertTrue(filter2.accept(file5)); + + } +}