diff options
author | Daniel Bowman <daniel@danielbowman.co.uk> | 2018-10-20 18:38:26 +0100 |
---|---|---|
committer | Daniel Bowman <daniel@danielbowman.co.uk> | 2018-10-20 18:38:26 +0100 |
commit | 361f73ffa001fb6477683eee7f4c23932a234f74 (patch) | |
tree | 46fbe98524c56b45d184c38372082af6ccab1684 /app/src/androidTest | |
parent | 19895fc4b760793c739dd056d1de1b20df92d820 (diff) | |
download | dsub-361f73ffa001fb6477683eee7f4c23932a234f74.tar.gz dsub-361f73ffa001fb6477683eee7f4c23932a234f74.tar.bz2 dsub-361f73ffa001fb6477683eee7f4c23932a234f74.zip |
Fix a crash on getRecentDownloads if playlist is empty
Diffstat (limited to 'app/src/androidTest')
-rw-r--r-- | app/src/androidTest/java/github/daneren2005/dsub/service/DownloadServiceTest.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/androidTest/java/github/daneren2005/dsub/service/DownloadServiceTest.java b/app/src/androidTest/java/github/daneren2005/dsub/service/DownloadServiceTest.java index 44b77b84..37e91642 100644 --- a/app/src/androidTest/java/github/daneren2005/dsub/service/DownloadServiceTest.java +++ b/app/src/androidTest/java/github/daneren2005/dsub/service/DownloadServiceTest.java @@ -49,6 +49,20 @@ public class DownloadServiceTest extends assertEquals(0, position); } + public void testGetRecentDownloadsWithoutPlaylist() { + int output_length = downloadService.getRecentDownloads().size(); + assertEquals(0, output_length); + } + + public void testGetRecentDownloadsWithPlaylist() { + downloadService.getDownloads().clear(); + downloadService.download(this.createMusicSongs(2), false, false, false, + false, 0, 0); + + int output_length = downloadService.getRecentDownloads().size(); + assertEquals(1, output_length); + } + public void testGetCurrentPlayingIndexWithoutPlayList() { int currentPlayingIndex = activity.getDownloadService() .getCurrentPlayingIndex(); |