forked from tehsphinx/concurrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
string_test.go
62 lines (53 loc) · 842 Bytes
/
string_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
package concurrent
import (
"strconv"
"sync"
"testing"
"time"
)
func TestString(t *testing.T) {
s := NewString()
for i := 0; i < 100; i++ {
go func() {
for {
s.Get()
}
}()
}
for i := 0; i < 10; i++ {
go func(i string) {
for {
s.Set("string" + i)
}
}(strconv.Itoa(i))
}
time.Sleep(5 * time.Second)
}
func BenchmarkString_Get(b *testing.B) {
s := NewString()
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 BenchmarkString_Set(b *testing.B) {
s := NewString()
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("somestring")
}
wg.Done()
}(wg)
}
wg.Wait()
}