-
Notifications
You must be signed in to change notification settings - Fork 3
/
byte_test.go
78 lines (66 loc) · 1.11 KB
/
byte_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
package concurrent
import (
"sync"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestByte(t *testing.T) {
s := NewByte()
s.Set('f')
assert.Equal(t, byte('f'), s.Get())
s.Set('4')
assert.Equal(t, byte('4'), s.Get())
s.Set(4)
assert.Equal(t, byte(4), s.Get())
s.Set('\n')
assert.Equal(t, byte('\n'), s.Get())
s.Set('g')
assert.Equal(t, byte('g'), s.Get())
}
func TestByteConcurrent(t *testing.T) {
s := NewByte()
for i := 0; i < 100; i++ {
go func() {
for {
s.Get()
}
}()
}
for i := 0; i < 10; i++ {
go func(i byte) {
for {
s.Set(i)
}
}(byte(i))
}
time.Sleep(5 * time.Second)
}
func BenchmarkByte_Get(b *testing.B) {
s := NewByte()
wg := &sync.WaitGroup{}
wg.Add(10)
for i := 0; i < 10; i++ {
go func(wg *sync.WaitGroup) {
for i := 0; i < b.N/10; i++ {
s.Get()
}
wg.Done()
}(wg)
}
wg.Wait()
}
func BenchmarkByte_Set(b *testing.B) {
s := NewByte()
wg := &sync.WaitGroup{}
wg.Add(10)
for i := 0; i < 10; i++ {
go func(wg *sync.WaitGroup) {
for i := 0; i < b.N/10; i++ {
s.Set(byte(i))
}
wg.Done()
}(wg)
}
wg.Wait()
}