1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-08 23:06:54 +02:00

crfl --> cr, arttnruppertest

This commit is contained in:
soloturn
2023-06-12 19:42:52 +02:00
parent 0b500354ca
commit 8cbdb33f04

View File

@@ -1,26 +1,28 @@
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.URI;
import java.net.URISyntaxException;
import com.rarchives.ripme.ripper.rippers.ArtstnRipper; import java.net.URL;
import org.junit.jupiter.api.Disabled; import com.rarchives.ripme.ripper.rippers.ArtstnRipper;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
public class ArtstnRipperTest extends RippersTest { import org.junit.jupiter.api.Test;
@Test
@Tag("flaky") public class ArtstnRipperTest extends RippersTest {
public void testSingleProject() throws IOException { @Test
URL url = new URL("https://artstn.co/p/JlE15Z"); @Tag("flaky")
testRipper(new ArtstnRipper(url)); public void testSingleProject() throws IOException, URISyntaxException {
} URL url = new URI("https://artstn.co/p/JlE15Z").toURL();
testRipper(new ArtstnRipper(url));
@Test }
@Disabled("Failed with cloudflare protection")
public void testUserPortfolio() throws IOException { @Test
URL url = new URL("https://artstn.co/m/rv37"); @Disabled("Failed with cloudflare protection")
testRipper(new ArtstnRipper(url)); public void testUserPortfolio() throws IOException, URISyntaxException {
} URL url = new URI("https://artstn.co/m/rv37").toURL();
} testRipper(new ArtstnRipper(url));
}
}