blob: 4b9f3a69b7b1830fc2a055763e4360c8ad163dbf [file] [log] [blame]
/*
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.wm.flicker
import com.android.server.wm.traces.common.CrossPlatform
import com.android.server.wm.traces.common.ITrace
import com.android.server.wm.traces.common.ITraceEntry
import com.android.server.wm.traces.common.Timestamp
import com.google.common.truth.Truth
import org.junit.Test
/** To run this test: `atest FlickerLibTest:ITraceTest` */
class ITraceTest {
@Test
fun getEntryExactlyAtTest() {
val entry1 = SimpleTraceEntry(CrossPlatform.timestamp.from(1, 1, 1))
val entry2 = SimpleTraceEntry(CrossPlatform.timestamp.from(5, 5, 5))
val entry3 = SimpleTraceEntry(CrossPlatform.timestamp.from(25, 25, 25))
val trace = SimpleTrace(arrayOf(entry1, entry2, entry3))
Truth.assertThat(trace.getEntryExactlyAt(CrossPlatform.timestamp.from(1, 1, 1)))
.isEqualTo(entry1)
Truth.assertThat(trace.getEntryExactlyAt(CrossPlatform.timestamp.from(5, 5, 5)))
.isEqualTo(entry2)
Truth.assertThat(trace.getEntryExactlyAt(CrossPlatform.timestamp.from(25, 25, 25)))
.isEqualTo(entry3)
Truth.assertThat(
assertThrows<Throwable> {
trace.getEntryExactlyAt(CrossPlatform.timestamp.from(6, 6, 6))
}
)
.hasMessageThat()
.contains("does not exist")
}
@Test
fun getEntryAtTest() {
val entry1 = SimpleTraceEntry(CrossPlatform.timestamp.from(2, 2, 2))
val entry2 = SimpleTraceEntry(CrossPlatform.timestamp.from(5, 5, 5))
val entry3 = SimpleTraceEntry(CrossPlatform.timestamp.from(25, 25, 25))
val trace = SimpleTrace(arrayOf(entry1, entry2, entry3))
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(2, 2, 2))).isEqualTo(entry1)
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(5, 5, 5))).isEqualTo(entry2)
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(25, 25, 25)))
.isEqualTo(entry3)
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(4, 4, 4))).isEqualTo(entry1)
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(6, 6, 6))).isEqualTo(entry2)
Truth.assertThat(trace.getEntryAt(CrossPlatform.timestamp.from(100, 100, 100)))
.isEqualTo(entry3)
Truth.assertThat(
assertThrows<Throwable> { trace.getEntryAt(CrossPlatform.timestamp.from(1, 1, 1)) }
)
.hasMessageThat()
.contains("No entry at or before timestamp")
}
class SimpleTraceEntry(override val timestamp: Timestamp) : ITraceEntry
class SimpleTrace(override val entries: Array<ITraceEntry>) : ITrace<ITraceEntry> {
override fun slice(
startTimestamp: Timestamp,
endTimestamp: Timestamp
): ITrace<ITraceEntry> {
TODO("Not yet implemented")
}
}
}