mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-13 09:24:25 +02:00
disable not working tests
This commit is contained in:
@@ -5,10 +5,12 @@ import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.EightmusesRipper;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class EightmusesRipperTest extends RippersTest {
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testEightmusesAlbum() throws IOException {
|
||||
// A simple image album
|
||||
EightmusesRipper ripper = new EightmusesRipper(new URL("https://www.8muses.com/comix/album/Affect3D-Comics/TheDude3DX/Lust-Unleashed-The-Urge-To-Explore"));
|
||||
|
@@ -4,10 +4,12 @@ import java.io.IOException;
|
||||
import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.GirlsOfDesireRipper;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class GirlsOfDesireRipperTest extends RippersTest {
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testGirlsofdesireAlbum() throws IOException {
|
||||
GirlsOfDesireRipper ripper = new GirlsOfDesireRipper(new URL("http://www.girlsofdesire.org/galleries/krillia/"));
|
||||
testRipper(ripper);
|
||||
|
@@ -9,7 +9,6 @@ public class ListalRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Test for list type url.
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
public void testPictures() throws IOException {
|
||||
@@ -20,7 +19,6 @@ public class ListalRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Test for list type url.
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
public void testRipListType() throws IOException {
|
||||
@@ -31,7 +29,6 @@ public class ListalRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Test for folder type url.
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
public void testRipFolderType() throws IOException {
|
||||
|
@@ -4,10 +4,12 @@ import java.io.IOException;
|
||||
import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.PorncomixinfoRipper;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PorncomixinfoRipperTest extends RippersTest {
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testRip() throws IOException {
|
||||
PorncomixinfoRipper ripper = new PorncomixinfoRipper(new URL("https://porncomixinfo.net/chapter/alx-come-to-naught-down-in-flames-up-in-smoke-tracy-scops/alx-come-to-naught-down-in-flames-up-in-smoke-tracy-scops/"));
|
||||
testRipper(ripper);
|
||||
|
@@ -12,7 +12,6 @@ public class RedgifsRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Rips correctly formatted URL directly from Redgifs
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
@Disabled("test or ripper broken")
|
||||
@@ -23,7 +22,6 @@ public class RedgifsRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Rips gifdeliverynetwork URL's by redirecting them to proper redgifs url
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
@@ -34,7 +32,6 @@ public class RedgifsRipperTest extends RippersTest {
|
||||
|
||||
/**
|
||||
* Rips a Redifs profile
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
@@ -60,6 +57,7 @@ public class RedgifsRipperTest extends RippersTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testRedditRedgifs() throws IOException {
|
||||
RedditRipper ripper = new RedditRipper(new URL("https://www.reddit.com/r/nsfwhardcore/comments/ouz5bw/me_cumming_on_his_face/"));
|
||||
testRipper(ripper);
|
||||
|
@@ -6,6 +6,7 @@ import java.net.URL;
|
||||
import com.rarchives.ripme.ripper.rippers.VkRipper;
|
||||
import org.json.JSONObject;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class VkRipperTest extends RippersTest {
|
||||
@@ -18,17 +19,20 @@ public class VkRipperTest extends RippersTest {
|
||||
// EXAMPLE: https://vk.com/album45506334_00?rev=1 (a single album - wall pictures)
|
||||
// EXAMPLE: https://vk.com/album45506334_101886701 (a single album - custom)
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testVkAlbumHttpRip() throws IOException {
|
||||
VkRipper ripper = new VkRipper(new URL("https://vk.com/album45506334_0"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testVkPhotosRip() throws IOException {
|
||||
VkRipper ripper = new VkRipper(new URL("https://vk.com/photos45506334"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testFindJSONObjectContainingPhotoID() throws IOException {
|
||||
VkRipper ripper = new VkRipper(new URL("http://vk.com/album45506334_0"));
|
||||
String json =
|
||||
|
@@ -17,6 +17,7 @@ public class VscoRipperTest extends RippersTest {
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testSingleImageRip() throws IOException {
|
||||
VscoRipper ripper = new VscoRipper(new URL("https://vsco.co/jonathangodoy/media/5d1aec76bb669a128035e98a"));
|
||||
testRipper(ripper);
|
||||
|
@@ -6,10 +6,12 @@ import java.net.URL;
|
||||
import com.rarchives.ripme.ripper.rippers.WebtoonsRipper;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class WebtoonsRipperTest extends RippersTest {
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testWebtoonsAlbum() throws IOException {
|
||||
WebtoonsRipper ripper = new WebtoonsRipper(new URL("https://www.webtoons.com/en/super-hero/unordinary/episode-103/viewer?title_no=679&episode_no=109"));
|
||||
testRipper(ripper);
|
||||
|
Reference in New Issue
Block a user