1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 07:14:38 +02:00

Marked hqp tests as flaky.

This commit is contained in:
Tushar
2019-01-20 17:45:11 +05:30
parent 7a1d54ed2a
commit 47017d4de6

View File

@@ -43,22 +43,27 @@ public class HqpornerRipperTest extends RippersTest {
} }
public void testMyDaddyVideoHost() throws IOException { public void testMyDaddyVideoHost() throws IOException {
URL myDaddyUrl = new URL("https://hqporner.com/hdporn/84636-pool_lesson_with_a_cheating_husband.html"); if (Utils.getConfigBoolean("test.run_flaky_tests", false)) {
HqpornerRipper myDaddyRipper = new HqpornerRipper(myDaddyUrl); URL myDaddyUrl = new URL("https://hqporner.com/hdporn/84636-pool_lesson_with_a_cheating_husband.html");
testRipper(myDaddyRipper); HqpornerRipper myDaddyRipper = new HqpornerRipper(myDaddyUrl);
testRipper(myDaddyRipper);
}
} }
public void testFlyFlvVideoHost() throws IOException { public void testFlyFlvVideoHost() throws IOException {
URL flyFlvUrl = new URL( if (Utils.getConfigBoolean("test.run_flaky_tests", false)) {
"https://hqporner.com/hdporn/69862-bangbros_-_amy_reid_taking_off_a_tight_sexy_swimsuit.html"); URL flyFlvUrl = new URL(
HqpornerRipper flyFlvRipper = new HqpornerRipper(flyFlvUrl); "https://hqporner.com/hdporn/69862-bangbros_-_amy_reid_taking_off_a_tight_sexy_swimsuit.html");
testRipper(flyFlvRipper); HqpornerRipper flyFlvRipper = new HqpornerRipper(flyFlvUrl);
testRipper(flyFlvRipper);
}
} }
public void testUnknownVideoHost() throws IOException { public void testUnknownVideoHost() throws IOException {
URL unknownHostUrl = new URL("https://hqporner.com/hdporn/79528-Kayden_Kross_-_Serious_Masturbation.html"); // howq.cc if (Utils.getConfigBoolean("test.run_flaky_tests", false)) {
HqpornerRipper unknownHostRipper = new HqpornerRipper(unknownHostUrl); URL unknownHostUrl = new URL("https://hqporner.com/hdporn/79528-Kayden_Kross_-_Serious_Masturbation.html"); // howq.cc
HqpornerRipper unknownHostRipper = new HqpornerRipper(unknownHostUrl);
testRipper(unknownHostRipper); testRipper(unknownHostRipper);
}
} }
} }