-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instrumented tests for LocalPlaylistManager.createPlaylist
- Loading branch information
1 parent
74ad488
commit 284b674
Showing
2 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
app/src/androidTest/java/org/schabi/newpipe/local/playlist/LocalPlaylistManagerTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package org.schabi.newpipe.local.playlist | ||
|
||
import androidx.room.Room | ||
import androidx.test.core.app.ApplicationProvider | ||
import org.junit.After | ||
import org.junit.Before | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import org.junit.rules.Timeout | ||
import org.schabi.newpipe.database.AppDatabase | ||
import org.schabi.newpipe.database.stream.model.StreamEntity | ||
import org.schabi.newpipe.extractor.stream.StreamType | ||
import org.schabi.newpipe.testUtil.TrampolineSchedulerRule | ||
import java.util.concurrent.TimeUnit | ||
|
||
class LocalPlaylistManagerTest { | ||
|
||
private lateinit var manager: LocalPlaylistManager | ||
private lateinit var database: AppDatabase | ||
|
||
@get:Rule | ||
val trampolineScheduler = TrampolineSchedulerRule() | ||
|
||
@get:Rule | ||
val timeout = Timeout(10, TimeUnit.SECONDS) | ||
|
||
@Before | ||
fun setup() { | ||
database = Room.inMemoryDatabaseBuilder( | ||
ApplicationProvider.getApplicationContext(), | ||
AppDatabase::class.java | ||
) | ||
.allowMainThreadQueries() | ||
.build() | ||
|
||
manager = LocalPlaylistManager(database) | ||
} | ||
|
||
@After | ||
fun cleanUp() { | ||
database.close() | ||
} | ||
|
||
@Test | ||
fun createPlaylist() { | ||
val stream = StreamEntity( | ||
serviceId = 1, url = "https://newpipe.net/", title = "title", | ||
streamType = StreamType.VIDEO_STREAM, duration = 1, uploader = "uploader" | ||
) | ||
|
||
val result = manager.createPlaylist("name", listOf(stream)) | ||
|
||
// This should not behave like this. | ||
// Currently list of all stream ids is returned instead of playlist id | ||
result.test().await().assertValue(listOf(1L)) | ||
} | ||
|
||
@Test | ||
fun createPlaylist_emptyPlaylistMustReturnEmpty() { | ||
val result = manager.createPlaylist("name", emptyList()) | ||
|
||
// This should not behave like this. | ||
// It should throw an error because currently the result is null | ||
result.test().await().assertComplete() | ||
manager.playlists.test().awaitCount(1).assertValue(emptyList()) | ||
} | ||
|
||
@Test() | ||
fun createPlaylist_nonExistentStreamsAreUpserted() { | ||
val stream = StreamEntity( | ||
serviceId = 1, url = "https://newpipe.net/", title = "title", | ||
streamType = StreamType.VIDEO_STREAM, duration = 1, uploader = "uploader" | ||
) | ||
database.streamDAO().insert(stream) | ||
val upserted = StreamEntity( | ||
serviceId = 1, url = "https://newpipe.net/2", title = "title2", | ||
streamType = StreamType.VIDEO_STREAM, duration = 1, uploader = "uploader" | ||
) | ||
|
||
val result = manager.createPlaylist("name", listOf(stream, upserted)) | ||
|
||
result.test().await().assertComplete() | ||
database.streamDAO().all.test().awaitCount(1).assertValue(listOf(stream, upserted)) | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
app/src/androidTest/java/org/schabi/newpipe/testUtil/TrampolineSchedulerRule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package org.schabi.newpipe.testUtil | ||
|
||
import io.reactivex.rxjava3.android.plugins.RxAndroidPlugins | ||
import io.reactivex.rxjava3.plugins.RxJavaPlugins | ||
import io.reactivex.rxjava3.schedulers.Schedulers | ||
import org.junit.rules.TestRule | ||
import org.junit.runner.Description | ||
import org.junit.runners.model.Statement | ||
|
||
/** | ||
* Always run on [Schedulers.trampoline] | ||
*/ | ||
class TrampolineSchedulerRule : TestRule { | ||
|
||
private val scheduler = Schedulers.trampoline() | ||
|
||
override fun apply(base: Statement, description: Description): Statement = | ||
object : Statement() { | ||
override fun evaluate() { | ||
try { | ||
RxJavaPlugins.setComputationSchedulerHandler { scheduler } | ||
RxJavaPlugins.setIoSchedulerHandler { scheduler } | ||
RxJavaPlugins.setNewThreadSchedulerHandler { scheduler } | ||
RxJavaPlugins.setSingleSchedulerHandler { scheduler } | ||
RxAndroidPlugins.setInitMainThreadSchedulerHandler { scheduler } | ||
|
||
base.evaluate() | ||
} finally { | ||
RxJavaPlugins.reset() | ||
RxAndroidPlugins.reset() | ||
} | ||
} | ||
} | ||
} |