Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MF-171: Add PlayLog test 5 #27

Open
wants to merge 3 commits into
base: jantonio/playlog_test_4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ internal class ExoPlayerPlaybackEngine(
} else {
Action.Type.PLAYBACK_STOP
}
currentPlaybackSession?.actions?.add(
currentPlaybackSession?.tryAddAction(
Action(
trueTimeWrapper.currentTimeMillis,
positionInSeconds,
Expand Down Expand Up @@ -594,9 +594,15 @@ internal class ExoPlayerPlaybackEngine(
}.toDouble() / MS_IN_SECOND
startStall(Stall.Reason.SEEK, stallPositionSeconds, invokedAtMillis)
}
currentPlaybackSession?.actions?.apply {
add(Action(invokedAtMillis, oldPositionSeconds, Action.Type.PLAYBACK_STOP))
add(Action(invokedAtMillis, newPositionSeconds, Action.Type.PLAYBACK_START))
currentPlaybackSession?.apply {
tryAddAction(Action(invokedAtMillis, oldPositionSeconds, Action.Type.PLAYBACK_STOP))
tryAddAction(
Action(
invokedAtMillis,
newPositionSeconds,
Action.Type.PLAYBACK_START,
),
)
}
}
}
Expand Down Expand Up @@ -674,7 +680,7 @@ internal class ExoPlayerPlaybackEngine(
} else {
eventTime.currentPlaybackPositionMs
}.toDouble() / MS_IN_SECOND
currentPlaybackSession?.actions?.add(
currentPlaybackSession?.tryAddAction(
Action(
trueTimeWrapper.currentTimeMillis,
positionInSeconds,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,25 @@ internal sealed class PlaybackSession {
abstract val actualQuality: ProductQuality
abstract val sourceType: String?
abstract val sourceId: String?
abstract val actions: MutableList<Action>
val actions: List<Action> = mutableListOf()

var startTimestamp = 0L
var startAssetPosition by
Delegates.vetoable(START_ASSET_POSITION_UNASSIGNED) { _, oldValue, newValue ->
oldValue == START_ASSET_POSITION_UNASSIGNED && newValue >= 0
}

fun tryAddAction(action: Action) {
if (actions.lastOrNull()?.actionType == action.actionType) {
/**
* PlayLog-wise, we can't start while started or stop while stopped. However,
* ExoPlayer-wise, it can happen for example when a discontinuity occurs while paused.
*/
return
}
(actions as MutableList<Action>).add(action)
}

@Suppress("LongParameterList")
class Audio(
override val playbackSessionId: UUID,
Expand All @@ -35,10 +46,7 @@ internal sealed class PlaybackSession {
override val actualQuality: AudioQuality,
override val sourceType: String?,
override val sourceId: String?,
) : PlaybackSession() {

override val actions = mutableListOf<Action>()
}
) : PlaybackSession()

@Suppress("LongParameterList")
class Video(
Expand All @@ -49,10 +57,7 @@ internal sealed class PlaybackSession {
override val actualQuality: VideoQuality,
override val sourceType: String?,
override val sourceId: String?,
) : PlaybackSession() {

override val actions = mutableListOf<Action>()
}
) : PlaybackSession()

class Broadcast(
override val playbackSessionId: UUID,
Expand All @@ -61,10 +66,7 @@ internal sealed class PlaybackSession {
override val actualQuality: AudioQuality,
override val sourceType: String?,
override val sourceId: String?,
) : PlaybackSession() {

override val actions = mutableListOf<Action>()
}
) : PlaybackSession()

@Suppress("LongParameterList")
class UC(
Expand All @@ -76,7 +78,6 @@ internal sealed class PlaybackSession {
) : PlaybackSession() {

override val actualQuality = AudioQuality.LOW
override val actions = mutableListOf<Action>()
}

companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -899,10 +899,7 @@ internal class ExoPlayerPlaybackEngineTest {
} else {
currentPlaybackPositionMs
}.toDouble() / 1_000
val actions = mock<MutableList<Action>>()
val currentPlaybackSession = mock<PlaybackSession.Audio> {
on { it.actions } doReturn actions
}
val currentPlaybackSession = mock<PlaybackSession.Audio>()
playbackEngine.reflectionCurrentPlaybackSession = currentPlaybackSession
val currentTimeMills = -1L
whenever(trueTimeWrapper.currentTimeMillis) doReturn currentTimeMills
Expand All @@ -925,9 +922,8 @@ internal class ExoPlayerPlaybackEngineTest {
}
verify(initialExtendedExoPlayer).currentPositionSinceEpochMs
}
verify(currentPlaybackSession).actions
verify(trueTimeWrapper).currentTimeMillis
verify(actions).add(
verify(currentPlaybackSession).tryAddAction(
Action(
currentTimeMills,
positionSeconds,
Expand All @@ -939,7 +935,6 @@ internal class ExoPlayerPlaybackEngineTest {
mediaSource,
eventTime,
currentPlaybackSession,
actions,
initialExtendedExoPlayer,
)
}
Expand Down Expand Up @@ -1719,10 +1714,7 @@ internal class ExoPlayerPlaybackEngineTest {
whenever(extendedExoPlayer.shouldStartPlaybackAfterUserAction()) doReturn false
val currentTimeMills = -80L
whenever(trueTimeWrapper.currentTimeMillis) doReturn currentTimeMills
val actions = mock<MutableList<Action>>()
val currentPlaybackSession = mock<PlaybackSession.Audio> {
on { it.actions } doReturn actions
}
val currentPlaybackSession = mock<PlaybackSession.Audio>()
playbackEngine.reflectionCurrentPlaybackSession = currentPlaybackSession

playbackEngine.onPositionDiscontinuity(
Expand All @@ -1735,16 +1727,15 @@ internal class ExoPlayerPlaybackEngineTest {
verify(extendedExoPlayer).updatePosition(newPositionMs)
verify(extendedExoPlayer).shouldStartPlaybackAfterUserAction()
verify(trueTimeWrapper).currentTimeMillis
verify(currentPlaybackSession).actions
inOrder(actions).apply {
verify(actions).add(
inOrder(currentPlaybackSession).apply {
verify(currentPlaybackSession).tryAddAction(
Action(
currentTimeMills,
oldPositionMs.toDouble() / 1_000,
Action.Type.PLAYBACK_STOP,
),
)
verify(actions).add(
verify(currentPlaybackSession).tryAddAction(
Action(
currentTimeMills,
newPositionMs.toDouble() / 1_000,
Expand All @@ -1763,7 +1754,6 @@ internal class ExoPlayerPlaybackEngineTest {
oldPosition,
newPosition,
extendedExoPlayer,
actions,
currentPlaybackSession,
)
}
Expand Down Expand Up @@ -1803,10 +1793,7 @@ internal class ExoPlayerPlaybackEngineTest {
whenever(extendedExoPlayer.shouldStartPlaybackAfterUserAction()) doReturn true
val currentTimeMills = -80L
whenever(trueTimeWrapper.currentTimeMillis) doReturn currentTimeMills
val actions = mock<MutableList<Action>>()
val currentPlaybackSession = mock<PlaybackSession.Audio> {
on { it.actions } doReturn actions
}
val currentPlaybackSession = mock<PlaybackSession.Audio>()
playbackEngine.reflectionCurrentPlaybackSession = currentPlaybackSession

playbackEngine.onPositionDiscontinuity(
Expand All @@ -1819,16 +1806,15 @@ internal class ExoPlayerPlaybackEngineTest {
verify(extendedExoPlayer).updatePosition(newPositionMs)
verify(extendedExoPlayer).shouldStartPlaybackAfterUserAction()
verify(trueTimeWrapper).currentTimeMillis
verify(currentPlaybackSession).actions
inOrder(actions).apply {
verify(actions).add(
inOrder(currentPlaybackSession).apply {
verify(currentPlaybackSession).tryAddAction(
Action(
currentTimeMills,
oldPositionMs.toDouble() / 1_000,
Action.Type.PLAYBACK_STOP,
),
)
verify(actions).add(
verify(currentPlaybackSession).tryAddAction(
Action(
currentTimeMills,
newPositionMs.toDouble() / 1_000,
Expand All @@ -1842,7 +1828,6 @@ internal class ExoPlayerPlaybackEngineTest {
oldPosition,
newPosition,
extendedExoPlayer,
actions,
currentPlaybackSession,
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,116 @@ internal class SingleMediaProductPlayLogTest {
)
}

@Test
fun loadAndPlayThenSeekBack() = runTest {
val gson = Gson()

player.playbackEngine.load(mediaProduct)
player.playbackEngine.play()
withContext(Dispatchers.Default.limitedParallelism(1)) {
withTimeout(4.seconds) {
player.playbackEngine.events.filter { it is Event.MediaProductTransition }.first()
}
delay(3.seconds)
while (player.playbackEngine.assetPosition < 3) {
delay(10.milliseconds)
}
player.playbackEngine.seek(2000F)
withTimeout(8.seconds) {
player.playbackEngine.events.filter { it is MediaProductEnded }.first()
}
}

eventReporterCoroutineScope.advanceUntilIdle()
verify(eventSender).sendEvent(
eq("playback_session"),
eq(ConsentCategory.NECESSARY),
argThat {
with(gson.fromJson(this, JsonObject::class.java)["payload"].asJsonObject) {
assertThat(get("startAssetPosition").asDouble).isAssetPositionEqualTo(0.0)
assertThat(get("endAssetPosition").asDouble)
.isAssetPositionEqualTo(MEDIA_PRODUCT_DURATION_SECONDS)
assertThat(get("actualProductId").asString).isEqualTo(mediaProduct.productId)
assertThat(get("sourceType")?.asString).isEqualTo(mediaProduct.sourceType)
assertThat(get("sourceId")?.asString).isEqualTo(mediaProduct.sourceId)
with(get("actions").asJsonArray) {
val stopAction =
gson.fromJson(this[0], PlaybackSession.Payload.Action::class.java)
assertThat(stopAction.actionType)
.isEqualTo(PlaybackSession.Payload.Action.Type.PLAYBACK_STOP)
assertThat(stopAction.assetPositionSeconds).isAssetPositionEqualTo(3.0)
val startAction =
gson.fromJson(this[1], PlaybackSession.Payload.Action::class.java)
assertThat(startAction.actionType)
.isEqualTo(PlaybackSession.Payload.Action.Type.PLAYBACK_START)
assertThat(startAction.assetPositionSeconds).isAssetPositionEqualTo(2.0)
val perfectResumeTimestamp = stopAction.timestamp
assertThat(startAction.timestamp)
.isBetween(perfectResumeTimestamp - 500, perfectResumeTimestamp + 500)
}
}
true
},
eq(emptyMap()),
)
}

@Test
fun loadAndPlayThenSeekForwardWhilePaused() = runTest {
val gson = Gson()

player.playbackEngine.load(mediaProduct)
player.playbackEngine.play()
withContext(Dispatchers.Default.limitedParallelism(1)) {
withTimeout(4.seconds) {
player.playbackEngine.events.filter { it is Event.MediaProductTransition }.first()
}
delay(2.seconds)
while (player.playbackEngine.assetPosition < 2) {
delay(10.milliseconds)
}
player.playbackEngine.pause()
player.playbackEngine.seek(3000F)
player.playbackEngine.play()
withTimeout(8.seconds) {
player.playbackEngine.events.filter { it is MediaProductEnded }.first()
}
}

eventReporterCoroutineScope.advanceUntilIdle()
verify(eventSender).sendEvent(
eq("playback_session"),
eq(ConsentCategory.NECESSARY),
argThat {
with(gson.fromJson(this, JsonObject::class.java)["payload"].asJsonObject) {
assertThat(get("startAssetPosition").asDouble).isAssetPositionEqualTo(0.0)
assertThat(get("endAssetPosition").asDouble)
.isAssetPositionEqualTo(MEDIA_PRODUCT_DURATION_SECONDS)
assertThat(get("actualProductId").asString).isEqualTo(mediaProduct.productId)
assertThat(get("sourceType")?.asString).isEqualTo(mediaProduct.sourceType)
assertThat(get("sourceId")?.asString).isEqualTo(mediaProduct.sourceId)
with(get("actions").asJsonArray) {
val stopAction =
gson.fromJson(this[0], PlaybackSession.Payload.Action::class.java)
assertThat(stopAction.actionType)
.isEqualTo(PlaybackSession.Payload.Action.Type.PLAYBACK_STOP)
assertThat(stopAction.assetPositionSeconds).isAssetPositionEqualTo(2.0)
val startAction =
gson.fromJson(this[1], PlaybackSession.Payload.Action::class.java)
assertThat(startAction.actionType)
.isEqualTo(PlaybackSession.Payload.Action.Type.PLAYBACK_START)
assertThat(startAction.assetPositionSeconds).isAssetPositionEqualTo(3.0)
val perfectResumeTimestamp = stopAction.timestamp
assertThat(startAction.timestamp)
.isBetween(perfectResumeTimestamp - 500, perfectResumeTimestamp + 500)
}
}
true
},
eq(emptyMap()),
)
}

private fun Assert<Double>.isAssetPositionEqualTo(targetPosition: Double) = run {
isCloseTo(targetPosition, 0.5)
}
Expand Down