-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathoperations_test.go
82 lines (72 loc) · 1.86 KB
/
operations_test.go
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
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package webrtc
import (
"sync"
"testing"
"github.com/stretchr/testify/assert"
)
func TestOperations_Enqueue(t *testing.T) {
updateNegotiationNeededFlagOnEmptyChain := &atomicBool{}
onNegotiationNeededCalledCount := 0
var onNegotiationNeededCalledCountMu sync.Mutex
ops := newOperations(updateNegotiationNeededFlagOnEmptyChain, func() {
onNegotiationNeededCalledCountMu.Lock()
onNegotiationNeededCalledCount++
onNegotiationNeededCalledCountMu.Unlock()
})
defer ops.GracefulClose()
for resultSet := 0; resultSet < 100; resultSet++ {
results := make([]int, 16)
resultSetCopy := resultSet
for i := range results {
func(j int) {
ops.Enqueue(func() {
results[j] = j * j
if resultSetCopy > 50 {
updateNegotiationNeededFlagOnEmptyChain.set(true)
}
})
}(i)
}
ops.Done()
expected := []int{0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225}
assert.Equal(t, len(expected), len(results))
assert.Equal(t, expected, results)
}
onNegotiationNeededCalledCountMu.Lock()
defer onNegotiationNeededCalledCountMu.Unlock()
assert.NotEqual(t, onNegotiationNeededCalledCount, 0)
}
func TestOperations_Done(*testing.T) {
ops := newOperations(&atomicBool{}, func() {
})
defer ops.GracefulClose()
ops.Done()
}
func TestOperations_GracefulClose(t *testing.T) {
ops := newOperations(&atomicBool{}, func() {
})
counter := 0
var counterMu sync.Mutex
incFunc := func() {
counterMu.Lock()
counter++
counterMu.Unlock()
}
const times = 25
for i := 0; i < times; i++ {
ops.Enqueue(incFunc)
}
ops.Done()
counterMu.Lock()
counterCur := counter
counterMu.Unlock()
assert.Equal(t, counterCur, times)
ops.GracefulClose()
for i := 0; i < times; i++ {
ops.Enqueue(incFunc)
}
ops.Done()
assert.Equal(t, counterCur, times)
}