mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-01-17 12:48:24 +01:00
crfl --> cr, arttnruppertest
This commit is contained in:
parent
0b500354ca
commit
8cbdb33f04
@ -1,6 +1,8 @@
|
|||||||
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.URI;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
|
||||||
import com.rarchives.ripme.ripper.rippers.ArtstnRipper;
|
import com.rarchives.ripme.ripper.rippers.ArtstnRipper;
|
||||||
@ -12,15 +14,15 @@ import org.junit.jupiter.api.Test;
|
|||||||
public class ArtstnRipperTest extends RippersTest {
|
public class ArtstnRipperTest extends RippersTest {
|
||||||
@Test
|
@Test
|
||||||
@Tag("flaky")
|
@Tag("flaky")
|
||||||
public void testSingleProject() throws IOException {
|
public void testSingleProject() throws IOException, URISyntaxException {
|
||||||
URL url = new URL("https://artstn.co/p/JlE15Z");
|
URL url = new URI("https://artstn.co/p/JlE15Z").toURL();
|
||||||
testRipper(new ArtstnRipper(url));
|
testRipper(new ArtstnRipper(url));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Disabled("Failed with cloudflare protection")
|
@Disabled("Failed with cloudflare protection")
|
||||||
public void testUserPortfolio() throws IOException {
|
public void testUserPortfolio() throws IOException, URISyntaxException {
|
||||||
URL url = new URL("https://artstn.co/m/rv37");
|
URL url = new URI("https://artstn.co/m/rv37").toURL();
|
||||||
testRipper(new ArtstnRipper(url));
|
testRipper(new ArtstnRipper(url));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user