#374: Fix ImgurRipperTest.

This commit is contained in:
metaprime 2016-12-19 21:11:53 -08:00
parent 8db9c2eb78
commit 01491801d4

View File

@ -45,7 +45,8 @@ public class ImgurRipperTest extends RippersTest {
contentURLs.add(new URL("http://imgur.com/a/WxG6f/layout/horizontal#0"));
contentURLs.add(new URL("http://imgur.com/a/WxG6f/layout/grid#0"));
contentURLs.add(new URL("http://imgur.com/gallery/FmP2o")); // Gallery URL
contentURLs.add(new URL("http://imgur.com/758qD43,C6iVJex,bP7flAu,J3l85Ri,1U7fhu5,MbuAUCM,JF4vOXQ"));
// Imgur seems not to support URLs with lists of images anymore.
//contentURLs.add(new URL("http://imgur.com/758qD43,C6iVJex,bP7flAu,J3l85Ri,1U7fhu5,MbuAUCM,JF4vOXQ"));
// Sometimes hangs up
//contentURLs.add(new URL("http://imgur.com/r/nsfw_oc/top/all"));
//contentURLs.add(new URL("http://imgur.com/a/bXQpH")); // Album with titles/descriptions
@ -66,8 +67,14 @@ public class ImgurRipperTest extends RippersTest {
assertTrue("Failed to find 100 files from " + album.url.toExternalForm() + ", only got " + album.images.size(), album.images.size() >= 100);
}
/*
// Imgur seems to be really flaky with this huge album, or the album was removed or something.
// Navigating to this link results in an "over capacity" warning on the page.
// I wonder if our testing automation is what is putting this album over capacity?
// See issue #376.
public void testImgurAlbumWithMoreThan1000Pictures() throws IOException {
ImgurAlbum album = ImgurRipper.getImgurAlbum(new URL("http://imgur.com/a/vsuh5"));
assertTrue("Failed to find 1000 files from " + album.url.toExternalForm() + ", only got " + album.images.size(), album.images.size() >= 1000);
}
*/
}