[media.cc.de] Disable unreliable tests for now

This commit is contained in:
TobiGr 2021-03-25 19:44:44 +01:00
parent bbee15474d
commit b029779217
2 changed files with 4 additions and 10 deletions

View File

@ -9,8 +9,6 @@ import org.schabi.newpipe.extractor.kiosk.KioskExtractor;
import java.util.List;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.schabi.newpipe.extractor.ServiceList.MediaCCC;
public class MediaCCCLiveStreamListExtractorTest {
@ -23,15 +21,10 @@ public class MediaCCCLiveStreamListExtractorTest {
extractor.fetchPage();
}
@Test
public void getConferencesListTest() throws Exception {
final List<InfoItem> a = extractor.getInitialPage().getItems();
for (int i = 0; i < a.size(); i++) {
final InfoItem b = a.get(i);
assertNotNull(a.get(i).getName());
assertTrue(a.get(i).getName().length() >= 1);
}
final List<InfoItem> items = extractor.getInitialPage().getItems();
// just test if there is an exception thrown
}
}

View File

@ -32,7 +32,8 @@ public class MediaCCCRecentListExtractorTest {
for (final StreamInfoItem item: items) {
assertFalse(isNullOrEmpty(item.getName()));
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()));
}
}