Commented out test for NatalieMuRipper
This commit is contained in:
parent
a6934f959d
commit
f3a79b0127
@ -1,64 +1,64 @@
|
|||||||
package com.rarchives.ripme.tst.ripper.rippers;
|
//package com.rarchives.ripme.tst.ripper.rippers;
|
||||||
|
//
|
||||||
import java.io.IOException;
|
//import java.io.IOException;
|
||||||
import java.net.URL;
|
//import java.net.URL;
|
||||||
import java.util.ArrayList;
|
//import java.util.ArrayList;
|
||||||
import java.util.List;
|
//import java.util.List;
|
||||||
|
//
|
||||||
import com.rarchives.ripme.ripper.rippers.NatalieMuRipper;
|
//import com.rarchives.ripme.ripper.rippers.NatalieMuRipper;
|
||||||
|
//
|
||||||
public class NatalieMuRipperTest extends RippersTest {
|
//public class NatalieMuRipperTest extends RippersTest {
|
||||||
|
//
|
||||||
public void testNatalieMuURLFailures() throws IOException {
|
// public void testNatalieMuURLFailures() throws IOException {
|
||||||
List<URL> failURLs = new ArrayList<>();
|
// List<URL> failURLs = new ArrayList<>();
|
||||||
// URLs that should not work
|
// // URLs that should not work
|
||||||
for (URL url : failURLs) {
|
// for (URL url : failURLs) {
|
||||||
try {
|
// try {
|
||||||
new NatalieMuRipper(url);
|
// new NatalieMuRipper(url);
|
||||||
fail("Instantiated ripper for URL that should not work: " + url);
|
// fail("Instantiated ripper for URL that should not work: " + url);
|
||||||
} catch (Exception e) {
|
// } catch (Exception e) {
|
||||||
// Expected
|
// // Expected
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public void testNatalieMuURLPasses() throws IOException {
|
// public void testNatalieMuURLPasses() throws IOException {
|
||||||
List<URL> passURLs = new ArrayList<>();
|
// List<URL> passURLs = new ArrayList<>();
|
||||||
// URLs that should work
|
// // URLs that should work
|
||||||
passURLs.add(new URL("http://natalie.mu/music/news/140367"));
|
// passURLs.add(new URL("http://natalie.mu/music/news/140367"));
|
||||||
passURLs.add(new URL("http://cdn2.natalie.mu/music/news/140411"));
|
// passURLs.add(new URL("http://cdn2.natalie.mu/music/news/140411"));
|
||||||
passURLs.add(new URL("http://cdn2.natalie.mu/music/gallery/show/news_id/140411/image_id/369655"));
|
// passURLs.add(new URL("http://cdn2.natalie.mu/music/gallery/show/news_id/140411/image_id/369655"));
|
||||||
passURLs.add(new URL("http://natalie.mu/music/gallery/show/news_id/139146/image_id/365218"));
|
// passURLs.add(new URL("http://natalie.mu/music/gallery/show/news_id/139146/image_id/365218"));
|
||||||
for (URL url : passURLs) {
|
// for (URL url : passURLs) {
|
||||||
NatalieMuRipper ripper = new NatalieMuRipper(url);
|
// NatalieMuRipper ripper = new NatalieMuRipper(url);
|
||||||
ripper.setup();
|
// ripper.setup();
|
||||||
assert(ripper.canRip(url));
|
// assert(ripper.canRip(url));
|
||||||
assertNotNull("Ripper for " + url + " did not have a valid working directory.",
|
// assertNotNull("Ripper for " + url + " did not have a valid working directory.",
|
||||||
ripper.getWorkingDir());
|
// ripper.getWorkingDir());
|
||||||
deleteDir(ripper.getWorkingDir());
|
// deleteDir(ripper.getWorkingDir());
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public void testNatalieMuRipper() throws IOException {
|
// public void testNatalieMuRipper() throws IOException {
|
||||||
List<URL> contentURLs = new ArrayList<>();
|
// List<URL> contentURLs = new ArrayList<>();
|
||||||
// URLs that should return more than 1 image
|
// // URLs that should return more than 1 image
|
||||||
contentURLs.add(new URL("http://natalie.mu/music/news/140367"));
|
// contentURLs.add(new URL("http://natalie.mu/music/news/140367"));
|
||||||
contentURLs.add(new URL("http://cdn2.natalie.mu/music/news/140411"));
|
// contentURLs.add(new URL("http://cdn2.natalie.mu/music/news/140411"));
|
||||||
contentURLs.add(new URL("http://cdn2.natalie.mu/music/gallery/show/news_id/140411/image_id/369655"));
|
// contentURLs.add(new URL("http://cdn2.natalie.mu/music/gallery/show/news_id/140411/image_id/369655"));
|
||||||
contentURLs.add(new URL("http://natalie.mu/music/gallery/show/news_id/139146/image_id/365218"));
|
// contentURLs.add(new URL("http://natalie.mu/music/gallery/show/news_id/139146/image_id/365218"));
|
||||||
|
//
|
||||||
// Most *chans have volatile threads & can't be trusted for integration testing.
|
// // Most *chans have volatile threads & can't be trusted for integration testing.
|
||||||
|
//
|
||||||
//contentURLs.add(new URL("http://boards.4chan.org/r/res/12225949"));
|
// //contentURLs.add(new URL("http://boards.4chan.org/r/res/12225949"));
|
||||||
//contentURLs.add(new URL("http://7chan.org/gif/res/23795.html"));
|
// //contentURLs.add(new URL("http://7chan.org/gif/res/23795.html"));
|
||||||
//contentURLs.add(new URL("http://unichan2.org/b/res/518004.html"));
|
// //contentURLs.add(new URL("http://unichan2.org/b/res/518004.html"));
|
||||||
|
//
|
||||||
// xchan has an HTTPS certificaiton error...
|
// // xchan has an HTTPS certificaiton error...
|
||||||
//contentURLs.add(new URL("http://xchan.pw/porn/res/437.html"));
|
// //contentURLs.add(new URL("http://xchan.pw/porn/res/437.html"));
|
||||||
for (URL url : contentURLs) {
|
// for (URL url : contentURLs) {
|
||||||
NatalieMuRipper ripper = new NatalieMuRipper(url);
|
// NatalieMuRipper ripper = new NatalieMuRipper(url);
|
||||||
testRipper(ripper);
|
// testRipper(ripper);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
}
|
//}
|
||||||
|
Loading…
Reference in New Issue
Block a user