summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
Diffstat (limited to 'test/net')
-rw-r--r--test/net/yacy/cora/document/id/DigestURLTest.java2
-rw-r--r--test/net/yacy/document/parser/htmlParserTest.java8
2 files changed, 7 insertions, 3 deletions
diff --git a/test/net/yacy/cora/document/id/DigestURLTest.java b/test/net/yacy/cora/document/id/DigestURLTest.java
index 059650bac..227fe9858 100644
--- a/test/net/yacy/cora/document/id/DigestURLTest.java
+++ b/test/net/yacy/cora/document/id/DigestURLTest.java
@@ -10,7 +10,7 @@ public class DigestURLTest extends TestCase {
public void testIdentPort() throws MalformedURLException {
String[][] testStrings = new String[][]{
new String[]{"http://www.yacy.net:", "http://www.yacy.net/"},
- new String[]{"http://www.yacy.net:-1", "http://www.yacy.net/"},
+ new String[]{"http://www.yacy.net:80", "http://www.yacy.net/"},
new String[]{"http://www.yacy.net:/", "http://www.yacy.net/"},
new String[]{"http://www.yacy.net: /", "http://www.yacy.net/"}
};
diff --git a/test/net/yacy/document/parser/htmlParserTest.java b/test/net/yacy/document/parser/htmlParserTest.java
index 9c0fafd93..beece1948 100644
--- a/test/net/yacy/document/parser/htmlParserTest.java
+++ b/test/net/yacy/document/parser/htmlParserTest.java
@@ -13,6 +13,7 @@ import net.yacy.cora.document.id.AnchorURL;
import net.yacy.document.Document;
import net.yacy.document.Parser;
import net.yacy.document.parser.html.ContentScraper;
+import net.yacy.document.parser.html.ImageEntry;
import static net.yacy.document.parser.htmlParser.parseToScraper;
import org.junit.Test;
@@ -94,10 +95,11 @@ public class htmlParserTest extends TestCase {
// expectation to deliver pure text as it is possibly indexed in outboundlinks_anchortext_txt/inboundlinks_anchortext_txt
final AnchorURL url = new AnchorURL("http://localhost/");
final String mimetype = "text/html";
- final String testhtml = "<html><bod>"
+ final String testhtml = "<html><body>"
+ "<a href='x1.html'><span>testtext</span></a>" // "testtext"
+ "<a href=\"http://localhost/x2.html\"> <i id=\"home-icon\" class=\"img-sprite\"></i>Start</a>" // "Start"
+ "<a href='x1.html'><span class='button'><img src='pic.gif'/></span></a>" // "" + image
+ + "<figure><img width=\"550px\" title=\"image as exemple\" alt=\"image as exemple\" src=\"./img/my_image.png\"></figrue>" // + img width 550 (+html5 figure)
+ "</body></html>";
ContentScraper scraper = parseToScraper(url, mimetype, testhtml, 10);
@@ -113,6 +115,8 @@ public class htmlParserTest extends TestCase {
assertEquals("", linktxt);
int cnt = scraper.getImages().size();
- assertEquals(1,cnt);
+ assertEquals(2,cnt);
+ ImageEntry img = scraper.getImages().get(1);
+ assertEquals(550,img.width());
}
}