DataPacketBufferTest.kt
2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* Copyright 2025 LiveKit, Inc.
*
* 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 io.livekit.android.room.webrtc
import io.livekit.android.test.BaseTest
import io.livekit.android.webrtc.DataPacketBuffer
import io.livekit.android.webrtc.DataPacketItem
import org.junit.Assert.assertEquals
import org.junit.Assert.assertNotNull
import org.junit.Before
import org.junit.Test
import java.nio.ByteBuffer
class DataPacketBufferTest : BaseTest() {
lateinit var buffer: DataPacketBuffer
@Before
fun setup() {
buffer = DataPacketBuffer(5)
}
fun fillWithTestValues() {
for (i in 1..5) {
val bytes = ByteArray(i)
buffer.queue(DataPacketItem(ByteBuffer.wrap(bytes), i))
}
}
@Test
fun queue() {
fillWithTestValues()
assertEquals(15, buffer.byteSize())
assertEquals(5, buffer.size())
}
@Test
fun dequeue() {
fillWithTestValues()
val list = mutableListOf<DataPacketItem>()
for (i in 1..5) {
val item = buffer.dequeue()
assertNotNull(item)
list.add(item!!)
}
list.forEachIndexed { index, item ->
assertEquals(index + 1, item.sequence)
assertEquals(index + 1, item.data.capacity())
}
}
@Test
fun clear() {
fillWithTestValues()
buffer.clear()
assertEquals(0, buffer.byteSize())
assertEquals(0, buffer.size())
}
@Test
fun getAll() {
fillWithTestValues()
val list = buffer.getAll()
assertEquals(5, list.size)
list.forEachIndexed { index, item ->
assertEquals(index + 1, item.sequence)
assertEquals(index + 1, item.data.capacity())
}
}
@Test
fun trim() {
fillWithTestValues()
buffer.trim(9)
// extra capacity is set to 5, so only the 1st packet is dropped.
assertEquals(14, buffer.byteSize())
assertEquals(4, buffer.size())
}
@Test
fun popToSequence() {
fillWithTestValues()
buffer.popToSequence(3)
assertEquals(9, buffer.byteSize())
assertEquals(2, buffer.size())
}
}