Bandcamp playlist extractor: support playlists with just one stream

This commit is contained in:
Fynn Godau
2019-12-22 14:12:24 +01:00
parent 13e4908b83
commit db02850d4f
2 changed files with 15 additions and 3 deletions

View File

@@ -60,4 +60,16 @@ public class BandcampPlaylistExtractorTest {
PlaylistExtractor extractor = bandcamp.getPlaylistExtractor("https://billwurtz.bandcamp.com/album/high-enough");
extractor.fetchPage();
}
/**
* Test playlist with just one track
*/
@Test
public void testSingleStreamPlaylist() throws ExtractionException, IOException {
PlaylistExtractor extractor = bandcamp.getPlaylistExtractor("https://zachjohnson1.bandcamp.com/album/endless");
extractor.fetchPage();
assertEquals(1, extractor.getStreamCount());
}
}