summaryrefslogtreecommitdiff
path: root/test/java
diff options
context:
space:
mode:
authorluccioman <luccioman@users.noreply.github.com>2017-07-03 14:53:36 +0200
committerluccioman <luccioman@users.noreply.github.com>2017-07-03 14:53:36 +0200
commit2a87b08cea67f8f2ae46e318c1c3945e8520ec53 (patch)
tree502d81fe3fc6040280643075c57157bc510f749a /test/java
parent1b3c169a9c3b1bd28c1510b5974b7da7d3c395fb (diff)
Removed temporary html parser test code
Diffstat (limited to 'test/java')
-rw-r--r--test/java/net/yacy/document/parser/htmlParserTest.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/java/net/yacy/document/parser/htmlParserTest.java b/test/java/net/yacy/document/parser/htmlParserTest.java
index 20ba4de77..432dfd0e5 100644
--- a/test/java/net/yacy/document/parser/htmlParserTest.java
+++ b/test/java/net/yacy/document/parser/htmlParserTest.java
@@ -1,9 +1,7 @@
package net.yacy.document.parser;
-import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
-import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.nio.charset.Charset;
@@ -13,12 +11,8 @@ import java.util.Locale;
import junit.framework.TestCase;
import net.yacy.cora.document.id.AnchorURL;
-import net.yacy.cora.document.id.DigestURL;
-import net.yacy.cora.protocol.HeaderFramework;
-import net.yacy.cora.util.ConcurrentLog;
import net.yacy.document.Document;
import net.yacy.document.Parser;
-import net.yacy.document.Parser.Failure;
import net.yacy.document.VocabularyScraper;
import net.yacy.document.parser.html.ContentScraper;
import net.yacy.document.parser.html.ImageEntry;
@@ -219,21 +213,4 @@ public class htmlParserTest extends TestCase {
System.out.println("ScraperScriptTagTest: [" + textSource + "] = [" + txt + "]");
assertEquals(txt, textSource);
}
-
- public static void main(String args[]) throws FileNotFoundException, IOException, Failure, InterruptedException {
- try (BufferedInputStream sourceStream = new BufferedInputStream(new FileInputStream(new File("/home/luc/dev/documents/endless_loop_htmlparser/test.html")));) {
- Document[] docs = new htmlParser().parse(
- new DigestURL("http://www.prawo.vulcan.edu.pl/przegdok.asp?qdatprz=12-09-2016&qplikid=2"),
- "text/html", HeaderFramework.getCharacterEncoding("text/html"), new VocabularyScraper(), 0,
- sourceStream);
- if(docs == null || docs.length == 0) {
- System.out.println("No result");
- return;
- }
- System.out.println("text : " + docs[0].getTextString());
- System.out.println("anchors.size : " + docs[0].getAnchors().size());
- } finally {
- ConcurrentLog.shutdown();
- }
- }
}