Gfycat Tests & Fix for bad reddit submissions

Added and restructured Gfycat tests.

 - Rips from reddit go in Reddit Test Suite
 - Direct rips from Gfycat go in the Gfycat Test Suite
Task #361 - Some gfycat doesn't work
This commit is contained in:
Kevin Jiang 2018-01-05 17:11:24 -05:00
parent 8960b8a565
commit d0b93ea100

View File

@ -8,25 +8,19 @@ import java.net.URL;
public class GfycatRipperTest extends RippersTest {
/**
* REDDIT TEST
* Tests a good GfycatURL (no "/gifs/detail")
* Rips correctly formatted URL directly from Gfycat
* @throws IOException
*/
public void testRedditGfyGoodURL() throws IOException {
GfycatRipper ripper = new GfycatRipper(new URL("https://www.reddit.com/r/bottesting/comments/7msozf/good_link/"));
public void GfycatGoodURL() throws IOException{
GfycatRipper ripper = new GfycatRipper(new URL("https://gfycat.com/TemptingExcellentIchthyosaurs"));
testRipper(ripper);
}
/**
* REDDIT TEST
* Tests a Bad URL with the "/gifs/detail" inside.
* Rips badly formatted URL directly from Gfycat
* @throws IOException
*/
public void testRedditGfyBadURL() throws IOException {
GfycatRipper ripper = new GfycatRipper(new URL("https://www.reddit.com/r/bottesting/comments/7msmhi/bad_link/"));
public void GfycatBadURL() throws IOException {
GfycatRipper ripper = new GfycatRipper(new URL("https://gfycat.com/gifs/detail/limitedtestyamericancrow"));
testRipper(ripper);
}
}
}