diff --git a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/ImgurRipperTest.java b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/ImgurRipperTest.java index 5f78a1b3..52ba08ff 100644 --- a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/ImgurRipperTest.java +++ b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/ImgurRipperTest.java @@ -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); } + */ }