add tests for subchannel stuff in playlists

This commit is contained in:
bopol 2020-05-09 10:15:35 +02:00
parent 1a6e92ebf6
commit 7cae95bf09
1 changed files with 16 additions and 0 deletions

View File

@ -52,5 +52,21 @@ public class PeertubePlaylistExtractorTest {
public void testGetStreamCount() throws ParsingException {
assertEquals(35, extractor.getStreamCount());
}
@Test
public void testGetSubChannelUrl() throws ParsingException {
assertEquals("https://skeptikon.fr/video-channels/metadechoc_channel", extractor.getSubChannelUrl());
}
@Test
public void testGetSubChannelName() throws ParsingException {
assertEquals("SHOCKING !", extractor.getSubChannelName());
}
@Test
public void testGetSubChannelAvatarUrl() throws ParsingException {
assertEquals("https://framatube.org/lazy-static/avatars/f1dcd0e8-e651-42ed-ae81-bb3bd4aff2bc.png",
extractor.getSubChannelAvatarUrl());
}
}
}