mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-01-17 04:38:18 +01:00
zizkiripper either broken or flaky
This commit is contained in:
parent
92b4d55c57
commit
7dc742dfcc
@ -5,20 +5,27 @@ import java.net.URL;
|
|||||||
|
|
||||||
import com.rarchives.ripme.ripper.rippers.ZizkiRipper;
|
import com.rarchives.ripme.ripper.rippers.ZizkiRipper;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.Tag;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
public class ZizkiRipperTest extends RippersTest {
|
public class ZizkiRipperTest extends RippersTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Tag("flaky")
|
||||||
public void testRip() throws IOException {
|
public void testRip() throws IOException {
|
||||||
ZizkiRipper ripper = new ZizkiRipper(new URL("http://zizki.com/dee-chorde/we-got-spirit"));
|
ZizkiRipper ripper = new ZizkiRipper(new URL("http://zizki.com/dee-chorde/we-got-spirit"));
|
||||||
testRipper(ripper);
|
testRipper(ripper);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
public void testGetGID() throws IOException {
|
public void testGetGID() throws IOException {
|
||||||
URL url = new URL("http://zizki.com/dee-chorde/we-got-spirit");
|
URL url = new URL("http://zizki.com/dee-chorde/we-got-spirit");
|
||||||
ZizkiRipper ripper = new ZizkiRipper(url);
|
ZizkiRipper ripper = new ZizkiRipper(url);
|
||||||
Assertions.assertEquals("dee-chorde", ripper.getGID(url));
|
Assertions.assertEquals("dee-chorde", ripper.getGID(url));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@Tag("flaky")
|
||||||
public void testAlbumTitle() throws IOException {
|
public void testAlbumTitle() throws IOException {
|
||||||
URL url = new URL("http://zizki.com/dee-chorde/we-got-spirit");
|
URL url = new URL("http://zizki.com/dee-chorde/we-got-spirit");
|
||||||
ZizkiRipper ripper = new ZizkiRipper(url);
|
ZizkiRipper ripper = new ZizkiRipper(url);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user