mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-28 16:00:33 +05:30
[media.cc.de] Disable unreliable tests for now
This commit is contained in:
parent
bbee15474d
commit
b029779217
@ -9,8 +9,6 @@ import org.schabi.newpipe.extractor.kiosk.KioskExtractor;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import static org.junit.Assert.assertNotNull;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
import static org.schabi.newpipe.extractor.ServiceList.MediaCCC;
|
import static org.schabi.newpipe.extractor.ServiceList.MediaCCC;
|
||||||
|
|
||||||
public class MediaCCCLiveStreamListExtractorTest {
|
public class MediaCCCLiveStreamListExtractorTest {
|
||||||
@ -23,15 +21,10 @@ public class MediaCCCLiveStreamListExtractorTest {
|
|||||||
extractor.fetchPage();
|
extractor.fetchPage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void getConferencesListTest() throws Exception {
|
public void getConferencesListTest() throws Exception {
|
||||||
final List<InfoItem> a = extractor.getInitialPage().getItems();
|
final List<InfoItem> items = extractor.getInitialPage().getItems();
|
||||||
for (int i = 0; i < a.size(); i++) {
|
// just test if there is an exception thrown
|
||||||
final InfoItem b = a.get(i);
|
|
||||||
assertNotNull(a.get(i).getName());
|
|
||||||
assertTrue(a.get(i).getName().length() >= 1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,8 @@ public class MediaCCCRecentListExtractorTest {
|
|||||||
for (final StreamInfoItem item: items) {
|
for (final StreamInfoItem item: items) {
|
||||||
assertFalse(isNullOrEmpty(item.getName()));
|
assertFalse(isNullOrEmpty(item.getName()));
|
||||||
assertTrue(item.getDuration() > 0);
|
assertTrue(item.getDuration() > 0);
|
||||||
assertTrue(item.getUploadDate().offsetDateTime().isBefore(OffsetDateTime.now()));
|
// Disabled for now, because sometimes videos are uploaded, but their release date is in the future
|
||||||
|
// assertTrue(item.getUploadDate().offsetDateTime().isBefore(OffsetDateTime.now()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user