Skip to content
Snippets Groups Projects
Commit c56c133d authored by srosse's avatar srosse
Browse files

OO-2526: fix unit tests

parent 83426725
No related branches found
No related tags found
No related merge requests found
...@@ -223,7 +223,7 @@ public class FileDocumentFactory { ...@@ -223,7 +223,7 @@ public class FileDocumentFactory {
if(leaf instanceof LocalImpl) { if(leaf instanceof LocalImpl) {
String path = ((LocalImpl)leaf).getBasefile().getAbsolutePath(); String path = ((LocalImpl)leaf).getBasefile().getAbsolutePath();
if (searchModule.getFileBlackList().contains(path)) { if (!isFileSupported(path)) {
return false; return false;
} }
} }
...@@ -247,6 +247,10 @@ public class FileDocumentFactory { ...@@ -247,6 +247,10 @@ public class FileDocumentFactory {
return true; return true;
} }
public boolean isFileSupported(String path) {
return !searchModule.getFileBlackList().contains(path);
}
public int getExcludedFileSizeCount( ) { public int getExcludedFileSizeCount( ) {
return excludedFileSizeCount; return excludedFileSizeCount;
} }
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
package org.olat.search.service.document.file; package org.olat.search.service.document.file;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail; import static org.junit.Assert.fail;
import java.io.File; import java.io.File;
...@@ -36,10 +35,13 @@ import java.net.URISyntaxException; ...@@ -36,10 +35,13 @@ import java.net.URISyntaxException;
import java.net.URL; import java.net.URL;
import org.apache.lucene.document.Document; import org.apache.lucene.document.Document;
import org.junit.Assert;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.olat.core.commons.modules.bc.vfs.OlatNamedContainerImpl; import org.olat.core.commons.modules.bc.vfs.OlatNamedContainerImpl;
import org.olat.core.commons.modules.bc.vfs.OlatRootFolderImpl; import org.olat.core.commons.modules.bc.vfs.OlatRootFolderImpl;
import org.olat.core.logging.OLog;
import org.olat.core.logging.Tracing;
import org.olat.core.util.FileUtils; import org.olat.core.util.FileUtils;
import org.olat.core.util.resource.OresHelper; import org.olat.core.util.resource.OresHelper;
import org.olat.core.util.vfs.LocalFileImpl; import org.olat.core.util.vfs.LocalFileImpl;
...@@ -54,6 +56,8 @@ import org.springframework.beans.factory.annotation.Autowired; ...@@ -54,6 +56,8 @@ import org.springframework.beans.factory.annotation.Autowired;
* @author Christian Guretzki * @author Christian Guretzki
*/ */
public class FileDocumentFactoryTest extends OlatTestCase { public class FileDocumentFactoryTest extends OlatTestCase {
private static final OLog log = Tracing.createLoggerFor(FileDocumentFactoryTest.class);
// variables for test fixture // variables for test fixture
...@@ -70,28 +74,41 @@ public class FileDocumentFactoryTest extends OlatTestCase { ...@@ -70,28 +74,41 @@ public class FileDocumentFactoryTest extends OlatTestCase {
rootPath = "/search_junit_test_folder"; rootPath = "/search_junit_test_folder";
} }
@Test public void testIsFileSupported() { @Test
assertTrue("html must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.html")))); public void testIsFileSupported() {
assertTrue("htm must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.htm")))); Assert.assertTrue("html must be supported", fileDocumentFactory.isFileSupported("test.html"));
assertTrue("HTML must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.HTML")))); Assert.assertTrue("htm must be supported", fileDocumentFactory.isFileSupported("test.htm"));
assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.HTM")))); Assert.assertTrue("HTML must be supported", fileDocumentFactory.isFileSupported("test.HTML"));
assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.xhtml")))); Assert.assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported("test.HTM"));
assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.XHTML")))); Assert.assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported("test.xhtml"));
Assert.assertTrue("HTM must be supported", fileDocumentFactory.isFileSupported("test.XHTML"));
Assert.assertTrue("pdf must be supported", fileDocumentFactory.isFileSupported("test.pdf"));
Assert.assertTrue("PDF must be supported", fileDocumentFactory.isFileSupported("test.PDF"));
Assert.assertTrue("DOC must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test2.DOC")));
Assert.assertTrue("doc must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test.doc")));
assertTrue("pdf must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.pdf")))); Assert.assertTrue("TXT must be supported", fileDocumentFactory.isFileSupported("test.TXT"));
assertTrue("PDF must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.PDF")))); Assert.assertTrue("txt must be supported", fileDocumentFactory.isFileSupported("test.txt"));
Assert.assertTrue("txt must be supported", fileDocumentFactory.isFileSupported("test.readme"));
Assert.assertTrue("txt must be supported", fileDocumentFactory.isFileSupported("test.README"));
Assert.assertTrue("txt must be supported", fileDocumentFactory.isFileSupported("test.csv"));
Assert.assertTrue("txt must be supported", fileDocumentFactory.isFileSupported("test.CSV"));
Assert.assertTrue("XML must be supported", fileDocumentFactory.isFileSupported("test.XML"));
Assert.assertTrue("xml must be supported", fileDocumentFactory.isFileSupported("test.xml"));
//this is excluded
Assert.assertFalse("xml must be supported", fileDocumentFactory.isFileSupported("imsmanifest.xml"));
}
@Test
public void testIsFileSupported_realfile() throws IOException, DocumentException, DocumentAccessException, URISyntaxException {
assertTrue("DOC must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test2.DOC"))); Assert.assertTrue("html must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test.html")));
assertTrue("doc must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test.doc"))); Assert.assertTrue("html must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test.doc")));
Assert.assertTrue("html must be supported", fileDocumentFactory.isFileSupported(getVFSFile("test2.DOC")));
assertTrue("TXT must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.TXT"))));
assertTrue("txt must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.txt"))));
assertTrue("txt must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.readme"))));
assertTrue("txt must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.README"))));
assertTrue("txt must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.csv"))));
assertTrue("txt must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.CSV"))));
assertTrue("XML must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.XML"))));
assertTrue("xml must be supported", fileDocumentFactory.isFileSupported(new LocalFileImpl(new File("test.xml"))));
} }
private VFSLeaf getVFSFile(String filename) { private VFSLeaf getVFSFile(String filename) {
...@@ -100,7 +117,7 @@ public class FileDocumentFactoryTest extends OlatTestCase { ...@@ -100,7 +117,7 @@ public class FileDocumentFactoryTest extends OlatTestCase {
File file = new File(url.toURI()); File file = new File(url.toURI());
return new LocalFileImpl(file); return new LocalFileImpl(file);
} catch (URISyntaxException e) { } catch (URISyntaxException e) {
e.printStackTrace(); log.error("", e);
return null; return null;
} }
} }
......
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