Added ArtStationRipper unit test
This commit is contained in:
parent
c549010c6a
commit
d3dde5eebe
@ -0,0 +1,32 @@
|
||||
package com.rarchives.ripme.tst.ripper.rippers;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.ArtStationRipper;
|
||||
|
||||
public class ArtStationRipperTest extends RippersTest {
|
||||
|
||||
public void testArtStationProjects() throws IOException {
|
||||
List<URL> contentURLs = new ArrayList<>();
|
||||
contentURLs.add(new URL("https://www.artstation.com/artwork/the-dwarf-mortar"));
|
||||
contentURLs.add(new URL("https://www.artstation.com/artwork/K36GR"));
|
||||
contentURLs.add(new URL("http://artstation.com/artwork/5JJQw"));
|
||||
for (URL url : contentURLs) {
|
||||
ArtStationRipper ripper = new ArtStationRipper(url);
|
||||
testRipper(ripper);
|
||||
}
|
||||
}
|
||||
|
||||
public void testArtStationUserProfiles() throws IOException {
|
||||
List<URL> contentURLs = new ArrayList<>();
|
||||
contentURLs.add(new URL("https://www.artstation.com/heitoramatsu"));
|
||||
contentURLs.add(new URL("http://artstation.com/givemeapiggy"));
|
||||
for (URL url : contentURLs) {
|
||||
ArtStationRipper ripper = new ArtStationRipper(url);
|
||||
testRipper(ripper);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user