1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-17 11:20:56 +02:00

Tag one more flaky test

This commit is contained in:
MetaPrime
2025-04-15 09:24:56 -07:00
parent c686e1e0b0
commit 37c28817df

View File

@@ -4,34 +4,42 @@ import java.io.IOException;
import java.net.URI; import java.net.URI;
import java.net.URISyntaxException; import java.net.URISyntaxException;
import com.rarchives.ripme.ripper.rippers.XvideosRipper; import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import com.rarchives.ripme.ripper.rippers.XvideosRipper;
public class XvideosRipperTest extends RippersTest { public class XvideosRipperTest extends RippersTest {
@Test @Test
public void testXvideosVideo1() throws IOException, URISyntaxException { public void testXvideosVideo1() throws IOException, URISyntaxException {
// This format is obsolete // This format is obsolete
// XvideosRipper ripper = new XvideosRipper(new URI("https://www.xvideos.com/video23515878/dee_s_pool_toys").toURL()); // XvideosRipper ripper = new XvideosRipper(new
// URI("https://www.xvideos.com/video23515878/dee_s_pool_toys").toURL());
// The website now redirects that video to this page // The website now redirects that video to this page
XvideosRipper ripper = new XvideosRipper(new URI("https://www.xvideos.com/video.hppdiepcbfe/dee_s_pool_toys").toURL()); XvideosRipper ripper = new XvideosRipper(
new URI("https://www.xvideos.com/video.hppdiepcbfe/dee_s_pool_toys").toURL());
testRipper(ripper); testRipper(ripper);
} }
@Test @Test
public void testXvideosVideo2() throws IOException, URISyntaxException { public void testXvideosVideo2() throws IOException, URISyntaxException {
XvideosRipper ripper = new XvideosRipper(new URI("https://www.xvideos.com/video.ufkmptkc4ae/big_tit_step_sis_made_me_cum_inside_her").toURL()); XvideosRipper ripper = new XvideosRipper(
new URI("https://www.xvideos.com/video.ufkmptkc4ae/big_tit_step_sis_made_me_cum_inside_her").toURL());
testRipper(ripper); testRipper(ripper);
} }
@Test @Test
public void testXvideosAmateursAlbum() throws IOException, URISyntaxException { public void testXvideosAmateursAlbum() throws IOException, URISyntaxException {
XvideosRipper ripper = new XvideosRipper(new URI("https://www.xvideos.com/amateurs/nikibeee/photos/2476083/lanikki").toURL()); XvideosRipper ripper = new XvideosRipper(
new URI("https://www.xvideos.com/amateurs/nikibeee/photos/2476083/lanikki").toURL());
testRipper(ripper); testRipper(ripper);
} }
@Test @Test
@Tag("flaky")
public void testXvideosProfilesAlbum() throws IOException, URISyntaxException { public void testXvideosProfilesAlbum() throws IOException, URISyntaxException {
XvideosRipper ripper = new XvideosRipper(new URI("https://www.xvideos.com/profiles/dmthate/photos/8259625/sexy").toURL()); XvideosRipper ripper = new XvideosRipper(
new URI("https://www.xvideos.com/profiles/dmthate/photos/8259625/sexy").toURL());
testRipper(ripper); testRipper(ripper);
} }
} }